]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/i915/i915_drv.h
drm/i915: Make GEM object create and create from data take dev_priv
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / i915_drv.h
1 /* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
3 /*
4 *
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
28 */
29
30 #ifndef _I915_DRV_H_
31 #define _I915_DRV_H_
32
33 #include <uapi/drm/i915_drm.h>
34 #include <uapi/drm/drm_fourcc.h>
35
36 #include <linux/io-mapping.h>
37 #include <linux/i2c.h>
38 #include <linux/i2c-algo-bit.h>
39 #include <linux/backlight.h>
40 #include <linux/hashtable.h>
41 #include <linux/intel-iommu.h>
42 #include <linux/kref.h>
43 #include <linux/pm_qos.h>
44 #include <linux/reservation.h>
45 #include <linux/shmem_fs.h>
46
47 #include <drm/drmP.h>
48 #include <drm/intel-gtt.h>
49 #include <drm/drm_legacy.h> /* for struct drm_dma_handle */
50 #include <drm/drm_gem.h>
51 #include <drm/drm_auth.h>
52
53 #include "i915_params.h"
54 #include "i915_reg.h"
55
56 #include "intel_bios.h"
57 #include "intel_dpll_mgr.h"
58 #include "intel_uc.h"
59 #include "intel_lrc.h"
60 #include "intel_ringbuffer.h"
61
62 #include "i915_gem.h"
63 #include "i915_gem_fence_reg.h"
64 #include "i915_gem_object.h"
65 #include "i915_gem_gtt.h"
66 #include "i915_gem_render_state.h"
67 #include "i915_gem_request.h"
68 #include "i915_gem_timeline.h"
69
70 #include "i915_vma.h"
71
72 #include "intel_gvt.h"
73
74 /* General customization:
75 */
76
77 #define DRIVER_NAME "i915"
78 #define DRIVER_DESC "Intel Graphics"
79 #define DRIVER_DATE "20161121"
80 #define DRIVER_TIMESTAMP 1479717903
81
82 #undef WARN_ON
83 /* Many gcc seem to no see through this and fall over :( */
84 #if 0
85 #define WARN_ON(x) ({ \
86 bool __i915_warn_cond = (x); \
87 if (__builtin_constant_p(__i915_warn_cond)) \
88 BUILD_BUG_ON(__i915_warn_cond); \
89 WARN(__i915_warn_cond, "WARN_ON(" #x ")"); })
90 #else
91 #define WARN_ON(x) WARN((x), "%s", "WARN_ON(" __stringify(x) ")")
92 #endif
93
94 #undef WARN_ON_ONCE
95 #define WARN_ON_ONCE(x) WARN_ONCE((x), "%s", "WARN_ON_ONCE(" __stringify(x) ")")
96
97 #define MISSING_CASE(x) WARN(1, "Missing switch case (%lu) in %s\n", \
98 (long) (x), __func__);
99
100 /* Use I915_STATE_WARN(x) and I915_STATE_WARN_ON() (rather than WARN() and
101 * WARN_ON()) for hw state sanity checks to check for unexpected conditions
102 * which may not necessarily be a user visible problem. This will either
103 * WARN() or DRM_ERROR() depending on the verbose_checks moduleparam, to
104 * enable distros and users to tailor their preferred amount of i915 abrt
105 * spam.
106 */
107 #define I915_STATE_WARN(condition, format...) ({ \
108 int __ret_warn_on = !!(condition); \
109 if (unlikely(__ret_warn_on)) \
110 if (!WARN(i915.verbose_state_checks, format)) \
111 DRM_ERROR(format); \
112 unlikely(__ret_warn_on); \
113 })
114
115 #define I915_STATE_WARN_ON(x) \
116 I915_STATE_WARN((x), "%s", "WARN_ON(" __stringify(x) ")")
117
118 bool __i915_inject_load_failure(const char *func, int line);
119 #define i915_inject_load_failure() \
120 __i915_inject_load_failure(__func__, __LINE__)
121
122 static inline const char *yesno(bool v)
123 {
124 return v ? "yes" : "no";
125 }
126
127 static inline const char *onoff(bool v)
128 {
129 return v ? "on" : "off";
130 }
131
132 static inline const char *enableddisabled(bool v)
133 {
134 return v ? "enabled" : "disabled";
135 }
136
137 enum pipe {
138 INVALID_PIPE = -1,
139 PIPE_A = 0,
140 PIPE_B,
141 PIPE_C,
142 _PIPE_EDP,
143 I915_MAX_PIPES = _PIPE_EDP
144 };
145 #define pipe_name(p) ((p) + 'A')
146
147 enum transcoder {
148 TRANSCODER_A = 0,
149 TRANSCODER_B,
150 TRANSCODER_C,
151 TRANSCODER_EDP,
152 TRANSCODER_DSI_A,
153 TRANSCODER_DSI_C,
154 I915_MAX_TRANSCODERS
155 };
156
157 static inline const char *transcoder_name(enum transcoder transcoder)
158 {
159 switch (transcoder) {
160 case TRANSCODER_A:
161 return "A";
162 case TRANSCODER_B:
163 return "B";
164 case TRANSCODER_C:
165 return "C";
166 case TRANSCODER_EDP:
167 return "EDP";
168 case TRANSCODER_DSI_A:
169 return "DSI A";
170 case TRANSCODER_DSI_C:
171 return "DSI C";
172 default:
173 return "<invalid>";
174 }
175 }
176
177 static inline bool transcoder_is_dsi(enum transcoder transcoder)
178 {
179 return transcoder == TRANSCODER_DSI_A || transcoder == TRANSCODER_DSI_C;
180 }
181
182 /*
183 * Global legacy plane identifier. Valid only for primary/sprite
184 * planes on pre-g4x, and only for primary planes on g4x+.
185 */
186 enum plane {
187 PLANE_A,
188 PLANE_B,
189 PLANE_C,
190 };
191 #define plane_name(p) ((p) + 'A')
192
193 #define sprite_name(p, s) ((p) * INTEL_INFO(dev_priv)->num_sprites[(p)] + (s) + 'A')
194
195 /*
196 * Per-pipe plane identifier.
197 * I915_MAX_PLANES in the enum below is the maximum (across all platforms)
198 * number of planes per CRTC. Not all platforms really have this many planes,
199 * which means some arrays of size I915_MAX_PLANES may have unused entries
200 * between the topmost sprite plane and the cursor plane.
201 *
202 * This is expected to be passed to various register macros
203 * (eg. PLANE_CTL(), PS_PLANE_SEL(), etc.) so adjust with care.
204 */
205 enum plane_id {
206 PLANE_PRIMARY,
207 PLANE_SPRITE0,
208 PLANE_SPRITE1,
209 PLANE_CURSOR,
210 I915_MAX_PLANES,
211 };
212
213 #define for_each_plane_id_on_crtc(__crtc, __p) \
214 for ((__p) = PLANE_PRIMARY; (__p) < I915_MAX_PLANES; (__p)++) \
215 for_each_if ((__crtc)->plane_ids_mask & BIT(__p))
216
217 enum port {
218 PORT_NONE = -1,
219 PORT_A = 0,
220 PORT_B,
221 PORT_C,
222 PORT_D,
223 PORT_E,
224 I915_MAX_PORTS
225 };
226 #define port_name(p) ((p) + 'A')
227
228 #define I915_NUM_PHYS_VLV 2
229
230 enum dpio_channel {
231 DPIO_CH0,
232 DPIO_CH1
233 };
234
235 enum dpio_phy {
236 DPIO_PHY0,
237 DPIO_PHY1
238 };
239
240 enum intel_display_power_domain {
241 POWER_DOMAIN_PIPE_A,
242 POWER_DOMAIN_PIPE_B,
243 POWER_DOMAIN_PIPE_C,
244 POWER_DOMAIN_PIPE_A_PANEL_FITTER,
245 POWER_DOMAIN_PIPE_B_PANEL_FITTER,
246 POWER_DOMAIN_PIPE_C_PANEL_FITTER,
247 POWER_DOMAIN_TRANSCODER_A,
248 POWER_DOMAIN_TRANSCODER_B,
249 POWER_DOMAIN_TRANSCODER_C,
250 POWER_DOMAIN_TRANSCODER_EDP,
251 POWER_DOMAIN_TRANSCODER_DSI_A,
252 POWER_DOMAIN_TRANSCODER_DSI_C,
253 POWER_DOMAIN_PORT_DDI_A_LANES,
254 POWER_DOMAIN_PORT_DDI_B_LANES,
255 POWER_DOMAIN_PORT_DDI_C_LANES,
256 POWER_DOMAIN_PORT_DDI_D_LANES,
257 POWER_DOMAIN_PORT_DDI_E_LANES,
258 POWER_DOMAIN_PORT_DSI,
259 POWER_DOMAIN_PORT_CRT,
260 POWER_DOMAIN_PORT_OTHER,
261 POWER_DOMAIN_VGA,
262 POWER_DOMAIN_AUDIO,
263 POWER_DOMAIN_PLLS,
264 POWER_DOMAIN_AUX_A,
265 POWER_DOMAIN_AUX_B,
266 POWER_DOMAIN_AUX_C,
267 POWER_DOMAIN_AUX_D,
268 POWER_DOMAIN_GMBUS,
269 POWER_DOMAIN_MODESET,
270 POWER_DOMAIN_INIT,
271
272 POWER_DOMAIN_NUM,
273 };
274
275 #define POWER_DOMAIN_PIPE(pipe) ((pipe) + POWER_DOMAIN_PIPE_A)
276 #define POWER_DOMAIN_PIPE_PANEL_FITTER(pipe) \
277 ((pipe) + POWER_DOMAIN_PIPE_A_PANEL_FITTER)
278 #define POWER_DOMAIN_TRANSCODER(tran) \
279 ((tran) == TRANSCODER_EDP ? POWER_DOMAIN_TRANSCODER_EDP : \
280 (tran) + POWER_DOMAIN_TRANSCODER_A)
281
282 enum hpd_pin {
283 HPD_NONE = 0,
284 HPD_TV = HPD_NONE, /* TV is known to be unreliable */
285 HPD_CRT,
286 HPD_SDVO_B,
287 HPD_SDVO_C,
288 HPD_PORT_A,
289 HPD_PORT_B,
290 HPD_PORT_C,
291 HPD_PORT_D,
292 HPD_PORT_E,
293 HPD_NUM_PINS
294 };
295
296 #define for_each_hpd_pin(__pin) \
297 for ((__pin) = (HPD_NONE + 1); (__pin) < HPD_NUM_PINS; (__pin)++)
298
299 struct i915_hotplug {
300 struct work_struct hotplug_work;
301
302 struct {
303 unsigned long last_jiffies;
304 int count;
305 enum {
306 HPD_ENABLED = 0,
307 HPD_DISABLED = 1,
308 HPD_MARK_DISABLED = 2
309 } state;
310 } stats[HPD_NUM_PINS];
311 u32 event_bits;
312 struct delayed_work reenable_work;
313
314 struct intel_digital_port *irq_port[I915_MAX_PORTS];
315 u32 long_port_mask;
316 u32 short_port_mask;
317 struct work_struct dig_port_work;
318
319 struct work_struct poll_init_work;
320 bool poll_enabled;
321
322 /*
323 * if we get a HPD irq from DP and a HPD irq from non-DP
324 * the non-DP HPD could block the workqueue on a mode config
325 * mutex getting, that userspace may have taken. However
326 * userspace is waiting on the DP workqueue to run which is
327 * blocked behind the non-DP one.
328 */
329 struct workqueue_struct *dp_wq;
330 };
331
332 #define I915_GEM_GPU_DOMAINS \
333 (I915_GEM_DOMAIN_RENDER | \
334 I915_GEM_DOMAIN_SAMPLER | \
335 I915_GEM_DOMAIN_COMMAND | \
336 I915_GEM_DOMAIN_INSTRUCTION | \
337 I915_GEM_DOMAIN_VERTEX)
338
339 #define for_each_pipe(__dev_priv, __p) \
340 for ((__p) = 0; (__p) < INTEL_INFO(__dev_priv)->num_pipes; (__p)++)
341 #define for_each_pipe_masked(__dev_priv, __p, __mask) \
342 for ((__p) = 0; (__p) < INTEL_INFO(__dev_priv)->num_pipes; (__p)++) \
343 for_each_if ((__mask) & (1 << (__p)))
344 #define for_each_universal_plane(__dev_priv, __pipe, __p) \
345 for ((__p) = 0; \
346 (__p) < INTEL_INFO(__dev_priv)->num_sprites[(__pipe)] + 1; \
347 (__p)++)
348 #define for_each_sprite(__dev_priv, __p, __s) \
349 for ((__s) = 0; \
350 (__s) < INTEL_INFO(__dev_priv)->num_sprites[(__p)]; \
351 (__s)++)
352
353 #define for_each_port_masked(__port, __ports_mask) \
354 for ((__port) = PORT_A; (__port) < I915_MAX_PORTS; (__port)++) \
355 for_each_if ((__ports_mask) & (1 << (__port)))
356
357 #define for_each_crtc(dev, crtc) \
358 list_for_each_entry(crtc, &(dev)->mode_config.crtc_list, head)
359
360 #define for_each_intel_plane(dev, intel_plane) \
361 list_for_each_entry(intel_plane, \
362 &(dev)->mode_config.plane_list, \
363 base.head)
364
365 #define for_each_intel_plane_mask(dev, intel_plane, plane_mask) \
366 list_for_each_entry(intel_plane, \
367 &(dev)->mode_config.plane_list, \
368 base.head) \
369 for_each_if ((plane_mask) & \
370 (1 << drm_plane_index(&intel_plane->base)))
371
372 #define for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) \
373 list_for_each_entry(intel_plane, \
374 &(dev)->mode_config.plane_list, \
375 base.head) \
376 for_each_if ((intel_plane)->pipe == (intel_crtc)->pipe)
377
378 #define for_each_intel_crtc(dev, intel_crtc) \
379 list_for_each_entry(intel_crtc, \
380 &(dev)->mode_config.crtc_list, \
381 base.head)
382
383 #define for_each_intel_crtc_mask(dev, intel_crtc, crtc_mask) \
384 list_for_each_entry(intel_crtc, \
385 &(dev)->mode_config.crtc_list, \
386 base.head) \
387 for_each_if ((crtc_mask) & (1 << drm_crtc_index(&intel_crtc->base)))
388
389 #define for_each_intel_encoder(dev, intel_encoder) \
390 list_for_each_entry(intel_encoder, \
391 &(dev)->mode_config.encoder_list, \
392 base.head)
393
394 #define for_each_intel_connector(dev, intel_connector) \
395 list_for_each_entry(intel_connector, \
396 &(dev)->mode_config.connector_list, \
397 base.head)
398
399 #define for_each_encoder_on_crtc(dev, __crtc, intel_encoder) \
400 list_for_each_entry((intel_encoder), &(dev)->mode_config.encoder_list, base.head) \
401 for_each_if ((intel_encoder)->base.crtc == (__crtc))
402
403 #define for_each_connector_on_encoder(dev, __encoder, intel_connector) \
404 list_for_each_entry((intel_connector), &(dev)->mode_config.connector_list, base.head) \
405 for_each_if ((intel_connector)->base.encoder == (__encoder))
406
407 #define for_each_power_domain(domain, mask) \
408 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
409 for_each_if ((1 << (domain)) & (mask))
410
411 struct drm_i915_private;
412 struct i915_mm_struct;
413 struct i915_mmu_object;
414
415 struct drm_i915_file_private {
416 struct drm_i915_private *dev_priv;
417 struct drm_file *file;
418
419 struct {
420 spinlock_t lock;
421 struct list_head request_list;
422 /* 20ms is a fairly arbitrary limit (greater than the average frame time)
423 * chosen to prevent the CPU getting more than a frame ahead of the GPU
424 * (when using lax throttling for the frontbuffer). We also use it to
425 * offer free GPU waitboosts for severely congested workloads.
426 */
427 #define DRM_I915_THROTTLE_JIFFIES msecs_to_jiffies(20)
428 } mm;
429 struct idr context_idr;
430
431 struct intel_rps_client {
432 struct list_head link;
433 unsigned boosts;
434 } rps;
435
436 unsigned int bsd_engine;
437
438 /* Client can have a maximum of 3 contexts banned before
439 * it is denied of creating new contexts. As one context
440 * ban needs 4 consecutive hangs, and more if there is
441 * progress in between, this is a last resort stop gap measure
442 * to limit the badly behaving clients access to gpu.
443 */
444 #define I915_MAX_CLIENT_CONTEXT_BANS 3
445 int context_bans;
446 };
447
448 /* Used by dp and fdi links */
449 struct intel_link_m_n {
450 uint32_t tu;
451 uint32_t gmch_m;
452 uint32_t gmch_n;
453 uint32_t link_m;
454 uint32_t link_n;
455 };
456
457 void intel_link_compute_m_n(int bpp, int nlanes,
458 int pixel_clock, int link_clock,
459 struct intel_link_m_n *m_n);
460
461 /* Interface history:
462 *
463 * 1.1: Original.
464 * 1.2: Add Power Management
465 * 1.3: Add vblank support
466 * 1.4: Fix cmdbuffer path, add heap destroy
467 * 1.5: Add vblank pipe configuration
468 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
469 * - Support vertical blank on secondary display pipe
470 */
471 #define DRIVER_MAJOR 1
472 #define DRIVER_MINOR 6
473 #define DRIVER_PATCHLEVEL 0
474
475 struct opregion_header;
476 struct opregion_acpi;
477 struct opregion_swsci;
478 struct opregion_asle;
479
480 struct intel_opregion {
481 struct opregion_header *header;
482 struct opregion_acpi *acpi;
483 struct opregion_swsci *swsci;
484 u32 swsci_gbda_sub_functions;
485 u32 swsci_sbcb_sub_functions;
486 struct opregion_asle *asle;
487 void *rvda;
488 const void *vbt;
489 u32 vbt_size;
490 u32 *lid_state;
491 struct work_struct asle_work;
492 };
493 #define OPREGION_SIZE (8*1024)
494
495 struct intel_overlay;
496 struct intel_overlay_error_state;
497
498 struct sdvo_device_mapping {
499 u8 initialized;
500 u8 dvo_port;
501 u8 slave_addr;
502 u8 dvo_wiring;
503 u8 i2c_pin;
504 u8 ddc_pin;
505 };
506
507 struct intel_connector;
508 struct intel_encoder;
509 struct intel_atomic_state;
510 struct intel_crtc_state;
511 struct intel_initial_plane_config;
512 struct intel_crtc;
513 struct intel_limit;
514 struct dpll;
515
516 struct drm_i915_display_funcs {
517 int (*get_display_clock_speed)(struct drm_i915_private *dev_priv);
518 int (*get_fifo_size)(struct drm_i915_private *dev_priv, int plane);
519 int (*compute_pipe_wm)(struct intel_crtc_state *cstate);
520 int (*compute_intermediate_wm)(struct drm_device *dev,
521 struct intel_crtc *intel_crtc,
522 struct intel_crtc_state *newstate);
523 void (*initial_watermarks)(struct intel_atomic_state *state,
524 struct intel_crtc_state *cstate);
525 void (*atomic_update_watermarks)(struct intel_atomic_state *state,
526 struct intel_crtc_state *cstate);
527 void (*optimize_watermarks)(struct intel_atomic_state *state,
528 struct intel_crtc_state *cstate);
529 int (*compute_global_watermarks)(struct drm_atomic_state *state);
530 void (*update_wm)(struct intel_crtc *crtc);
531 int (*modeset_calc_cdclk)(struct drm_atomic_state *state);
532 void (*modeset_commit_cdclk)(struct drm_atomic_state *state);
533 /* Returns the active state of the crtc, and if the crtc is active,
534 * fills out the pipe-config with the hw state. */
535 bool (*get_pipe_config)(struct intel_crtc *,
536 struct intel_crtc_state *);
537 void (*get_initial_plane_config)(struct intel_crtc *,
538 struct intel_initial_plane_config *);
539 int (*crtc_compute_clock)(struct intel_crtc *crtc,
540 struct intel_crtc_state *crtc_state);
541 void (*crtc_enable)(struct intel_crtc_state *pipe_config,
542 struct drm_atomic_state *old_state);
543 void (*crtc_disable)(struct intel_crtc_state *old_crtc_state,
544 struct drm_atomic_state *old_state);
545 void (*update_crtcs)(struct drm_atomic_state *state,
546 unsigned int *crtc_vblank_mask);
547 void (*audio_codec_enable)(struct drm_connector *connector,
548 struct intel_encoder *encoder,
549 const struct drm_display_mode *adjusted_mode);
550 void (*audio_codec_disable)(struct intel_encoder *encoder);
551 void (*fdi_link_train)(struct drm_crtc *crtc);
552 void (*init_clock_gating)(struct drm_i915_private *dev_priv);
553 int (*queue_flip)(struct drm_device *dev, struct drm_crtc *crtc,
554 struct drm_framebuffer *fb,
555 struct drm_i915_gem_object *obj,
556 struct drm_i915_gem_request *req,
557 uint32_t flags);
558 void (*hpd_irq_setup)(struct drm_i915_private *dev_priv);
559 /* clock updates for mode set */
560 /* cursor updates */
561 /* render clock increase/decrease */
562 /* display clock increase/decrease */
563 /* pll clock increase/decrease */
564
565 void (*load_csc_matrix)(struct drm_crtc_state *crtc_state);
566 void (*load_luts)(struct drm_crtc_state *crtc_state);
567 };
568
569 enum forcewake_domain_id {
570 FW_DOMAIN_ID_RENDER = 0,
571 FW_DOMAIN_ID_BLITTER,
572 FW_DOMAIN_ID_MEDIA,
573
574 FW_DOMAIN_ID_COUNT
575 };
576
577 enum forcewake_domains {
578 FORCEWAKE_RENDER = (1 << FW_DOMAIN_ID_RENDER),
579 FORCEWAKE_BLITTER = (1 << FW_DOMAIN_ID_BLITTER),
580 FORCEWAKE_MEDIA = (1 << FW_DOMAIN_ID_MEDIA),
581 FORCEWAKE_ALL = (FORCEWAKE_RENDER |
582 FORCEWAKE_BLITTER |
583 FORCEWAKE_MEDIA)
584 };
585
586 #define FW_REG_READ (1)
587 #define FW_REG_WRITE (2)
588
589 enum decoupled_power_domain {
590 GEN9_DECOUPLED_PD_BLITTER = 0,
591 GEN9_DECOUPLED_PD_RENDER,
592 GEN9_DECOUPLED_PD_MEDIA,
593 GEN9_DECOUPLED_PD_ALL
594 };
595
596 enum decoupled_ops {
597 GEN9_DECOUPLED_OP_WRITE = 0,
598 GEN9_DECOUPLED_OP_READ
599 };
600
601 enum forcewake_domains
602 intel_uncore_forcewake_for_reg(struct drm_i915_private *dev_priv,
603 i915_reg_t reg, unsigned int op);
604
605 struct intel_uncore_funcs {
606 void (*force_wake_get)(struct drm_i915_private *dev_priv,
607 enum forcewake_domains domains);
608 void (*force_wake_put)(struct drm_i915_private *dev_priv,
609 enum forcewake_domains domains);
610
611 uint8_t (*mmio_readb)(struct drm_i915_private *dev_priv, i915_reg_t r, bool trace);
612 uint16_t (*mmio_readw)(struct drm_i915_private *dev_priv, i915_reg_t r, bool trace);
613 uint32_t (*mmio_readl)(struct drm_i915_private *dev_priv, i915_reg_t r, bool trace);
614 uint64_t (*mmio_readq)(struct drm_i915_private *dev_priv, i915_reg_t r, bool trace);
615
616 void (*mmio_writeb)(struct drm_i915_private *dev_priv, i915_reg_t r,
617 uint8_t val, bool trace);
618 void (*mmio_writew)(struct drm_i915_private *dev_priv, i915_reg_t r,
619 uint16_t val, bool trace);
620 void (*mmio_writel)(struct drm_i915_private *dev_priv, i915_reg_t r,
621 uint32_t val, bool trace);
622 };
623
624 struct intel_forcewake_range {
625 u32 start;
626 u32 end;
627
628 enum forcewake_domains domains;
629 };
630
631 struct intel_uncore {
632 spinlock_t lock; /** lock is also taken in irq contexts. */
633
634 const struct intel_forcewake_range *fw_domains_table;
635 unsigned int fw_domains_table_entries;
636
637 struct intel_uncore_funcs funcs;
638
639 unsigned fifo_count;
640
641 enum forcewake_domains fw_domains;
642 enum forcewake_domains fw_domains_active;
643
644 struct intel_uncore_forcewake_domain {
645 struct drm_i915_private *i915;
646 enum forcewake_domain_id id;
647 enum forcewake_domains mask;
648 unsigned wake_count;
649 struct hrtimer timer;
650 i915_reg_t reg_set;
651 u32 val_set;
652 u32 val_clear;
653 i915_reg_t reg_ack;
654 i915_reg_t reg_post;
655 u32 val_reset;
656 } fw_domain[FW_DOMAIN_ID_COUNT];
657
658 int unclaimed_mmio_check;
659 };
660
661 /* Iterate over initialised fw domains */
662 #define for_each_fw_domain_masked(domain__, mask__, dev_priv__) \
663 for ((domain__) = &(dev_priv__)->uncore.fw_domain[0]; \
664 (domain__) < &(dev_priv__)->uncore.fw_domain[FW_DOMAIN_ID_COUNT]; \
665 (domain__)++) \
666 for_each_if ((mask__) & (domain__)->mask)
667
668 #define for_each_fw_domain(domain__, dev_priv__) \
669 for_each_fw_domain_masked(domain__, FORCEWAKE_ALL, dev_priv__)
670
671 #define CSR_VERSION(major, minor) ((major) << 16 | (minor))
672 #define CSR_VERSION_MAJOR(version) ((version) >> 16)
673 #define CSR_VERSION_MINOR(version) ((version) & 0xffff)
674
675 struct intel_csr {
676 struct work_struct work;
677 const char *fw_path;
678 uint32_t *dmc_payload;
679 uint32_t dmc_fw_size;
680 uint32_t version;
681 uint32_t mmio_count;
682 i915_reg_t mmioaddr[8];
683 uint32_t mmiodata[8];
684 uint32_t dc_state;
685 uint32_t allowed_dc_mask;
686 };
687
688 #define DEV_INFO_FOR_EACH_FLAG(func) \
689 /* Keep is_* in chronological order */ \
690 func(is_mobile); \
691 func(is_i85x); \
692 func(is_i915g); \
693 func(is_i945gm); \
694 func(is_g33); \
695 func(is_g4x); \
696 func(is_pineview); \
697 func(is_broadwater); \
698 func(is_crestline); \
699 func(is_ivybridge); \
700 func(is_valleyview); \
701 func(is_cherryview); \
702 func(is_haswell); \
703 func(is_broadwell); \
704 func(is_skylake); \
705 func(is_broxton); \
706 func(is_geminilake); \
707 func(is_kabylake); \
708 func(is_lp); \
709 func(is_alpha_support); \
710 /* Keep has_* in alphabetical order */ \
711 func(has_64bit_reloc); \
712 func(has_csr); \
713 func(has_ddi); \
714 func(has_dp_mst); \
715 func(has_fbc); \
716 func(has_fpga_dbg); \
717 func(has_gmbus_irq); \
718 func(has_gmch_display); \
719 func(has_guc); \
720 func(has_hotplug); \
721 func(has_hw_contexts); \
722 func(has_l3_dpf); \
723 func(has_llc); \
724 func(has_logical_ring_contexts); \
725 func(has_overlay); \
726 func(has_pipe_cxsr); \
727 func(has_pooled_eu); \
728 func(has_psr); \
729 func(has_rc6); \
730 func(has_rc6p); \
731 func(has_resource_streamer); \
732 func(has_runtime_pm); \
733 func(has_snoop); \
734 func(cursor_needs_physical); \
735 func(hws_needs_physical); \
736 func(overlay_needs_physical); \
737 func(supports_tv); \
738 func(has_decoupled_mmio)
739
740 struct sseu_dev_info {
741 u8 slice_mask;
742 u8 subslice_mask;
743 u8 eu_total;
744 u8 eu_per_subslice;
745 u8 min_eu_in_pool;
746 /* For each slice, which subslice(s) has(have) 7 EUs (bitfield)? */
747 u8 subslice_7eu[3];
748 u8 has_slice_pg:1;
749 u8 has_subslice_pg:1;
750 u8 has_eu_pg:1;
751 };
752
753 static inline unsigned int sseu_subslice_total(const struct sseu_dev_info *sseu)
754 {
755 return hweight8(sseu->slice_mask) * hweight8(sseu->subslice_mask);
756 }
757
758 struct intel_device_info {
759 u32 display_mmio_offset;
760 u16 device_id;
761 u8 num_pipes;
762 u8 num_sprites[I915_MAX_PIPES];
763 u8 gen;
764 u16 gen_mask;
765 u8 ring_mask; /* Rings supported by the HW */
766 u8 num_rings;
767 #define DEFINE_FLAG(name) u8 name:1
768 DEV_INFO_FOR_EACH_FLAG(DEFINE_FLAG);
769 #undef DEFINE_FLAG
770 u16 ddb_size; /* in blocks */
771 /* Register offsets for the various display pipes and transcoders */
772 int pipe_offsets[I915_MAX_TRANSCODERS];
773 int trans_offsets[I915_MAX_TRANSCODERS];
774 int palette_offsets[I915_MAX_PIPES];
775 int cursor_offsets[I915_MAX_PIPES];
776
777 /* Slice/subslice/EU info */
778 struct sseu_dev_info sseu;
779
780 struct color_luts {
781 u16 degamma_lut_size;
782 u16 gamma_lut_size;
783 } color;
784 };
785
786 struct intel_display_error_state;
787
788 struct drm_i915_error_state {
789 struct kref ref;
790 struct timeval time;
791 struct timeval boottime;
792 struct timeval uptime;
793
794 struct drm_i915_private *i915;
795
796 char error_msg[128];
797 bool simulated;
798 int iommu;
799 u32 reset_count;
800 u32 suspend_count;
801 struct intel_device_info device_info;
802
803 /* Generic register state */
804 u32 eir;
805 u32 pgtbl_er;
806 u32 ier;
807 u32 gtier[4];
808 u32 ccid;
809 u32 derrmr;
810 u32 forcewake;
811 u32 error; /* gen6+ */
812 u32 err_int; /* gen7 */
813 u32 fault_data0; /* gen8, gen9 */
814 u32 fault_data1; /* gen8, gen9 */
815 u32 done_reg;
816 u32 gac_eco;
817 u32 gam_ecochk;
818 u32 gab_ctl;
819 u32 gfx_mode;
820
821 u64 fence[I915_MAX_NUM_FENCES];
822 struct intel_overlay_error_state *overlay;
823 struct intel_display_error_state *display;
824 struct drm_i915_error_object *semaphore;
825 struct drm_i915_error_object *guc_log;
826
827 struct drm_i915_error_engine {
828 int engine_id;
829 /* Software tracked state */
830 bool waiting;
831 int num_waiters;
832 unsigned long hangcheck_timestamp;
833 bool hangcheck_stalled;
834 enum intel_engine_hangcheck_action hangcheck_action;
835 struct i915_address_space *vm;
836 int num_requests;
837
838 /* position of active request inside the ring */
839 u32 rq_head, rq_post, rq_tail;
840
841 /* our own tracking of ring head and tail */
842 u32 cpu_ring_head;
843 u32 cpu_ring_tail;
844
845 u32 last_seqno;
846
847 /* Register state */
848 u32 start;
849 u32 tail;
850 u32 head;
851 u32 ctl;
852 u32 mode;
853 u32 hws;
854 u32 ipeir;
855 u32 ipehr;
856 u32 bbstate;
857 u32 instpm;
858 u32 instps;
859 u32 seqno;
860 u64 bbaddr;
861 u64 acthd;
862 u32 fault_reg;
863 u64 faddr;
864 u32 rc_psmi; /* sleep state */
865 u32 semaphore_mboxes[I915_NUM_ENGINES - 1];
866 struct intel_instdone instdone;
867
868 struct drm_i915_error_object {
869 u64 gtt_offset;
870 u64 gtt_size;
871 int page_count;
872 int unused;
873 u32 *pages[0];
874 } *ringbuffer, *batchbuffer, *wa_batchbuffer, *ctx, *hws_page;
875
876 struct drm_i915_error_object *wa_ctx;
877
878 struct drm_i915_error_request {
879 long jiffies;
880 pid_t pid;
881 u32 context;
882 int ban_score;
883 u32 seqno;
884 u32 head;
885 u32 tail;
886 } *requests, execlist[2];
887
888 struct drm_i915_error_waiter {
889 char comm[TASK_COMM_LEN];
890 pid_t pid;
891 u32 seqno;
892 } *waiters;
893
894 struct {
895 u32 gfx_mode;
896 union {
897 u64 pdp[4];
898 u32 pp_dir_base;
899 };
900 } vm_info;
901
902 pid_t pid;
903 char comm[TASK_COMM_LEN];
904 int context_bans;
905 } engine[I915_NUM_ENGINES];
906
907 struct drm_i915_error_buffer {
908 u32 size;
909 u32 name;
910 u32 rseqno[I915_NUM_ENGINES], wseqno;
911 u64 gtt_offset;
912 u32 read_domains;
913 u32 write_domain;
914 s32 fence_reg:I915_MAX_NUM_FENCE_BITS;
915 u32 tiling:2;
916 u32 dirty:1;
917 u32 purgeable:1;
918 u32 userptr:1;
919 s32 engine:4;
920 u32 cache_level:3;
921 } *active_bo[I915_NUM_ENGINES], *pinned_bo;
922 u32 active_bo_count[I915_NUM_ENGINES], pinned_bo_count;
923 struct i915_address_space *active_vm[I915_NUM_ENGINES];
924 };
925
926 enum i915_cache_level {
927 I915_CACHE_NONE = 0,
928 I915_CACHE_LLC, /* also used for snoopable memory on non-LLC */
929 I915_CACHE_L3_LLC, /* gen7+, L3 sits between the domain specifc
930 caches, eg sampler/render caches, and the
931 large Last-Level-Cache. LLC is coherent with
932 the CPU, but L3 is only visible to the GPU. */
933 I915_CACHE_WT, /* hsw:gt3e WriteThrough for scanouts */
934 };
935
936 #define DEFAULT_CONTEXT_HANDLE 0
937
938 /**
939 * struct i915_gem_context - as the name implies, represents a context.
940 * @ref: reference count.
941 * @user_handle: userspace tracking identity for this context.
942 * @remap_slice: l3 row remapping information.
943 * @flags: context specific flags:
944 * CONTEXT_NO_ZEROMAP: do not allow mapping things to page 0.
945 * @file_priv: filp associated with this context (NULL for global default
946 * context).
947 * @hang_stats: information about the role of this context in possible GPU
948 * hangs.
949 * @ppgtt: virtual memory space used by this context.
950 * @legacy_hw_ctx: render context backing object and whether it is correctly
951 * initialized (legacy ring submission mechanism only).
952 * @link: link in the global list of contexts.
953 *
954 * Contexts are memory images used by the hardware to store copies of their
955 * internal state.
956 */
957 struct i915_gem_context {
958 struct kref ref;
959 struct drm_i915_private *i915;
960 struct drm_i915_file_private *file_priv;
961 struct i915_hw_ppgtt *ppgtt;
962 struct pid *pid;
963 const char *name;
964
965 unsigned long flags;
966 #define CONTEXT_NO_ZEROMAP BIT(0)
967 #define CONTEXT_NO_ERROR_CAPTURE BIT(1)
968
969 /* Unique identifier for this context, used by the hw for tracking */
970 unsigned int hw_id;
971 u32 user_handle;
972 int priority; /* greater priorities are serviced first */
973
974 u32 ggtt_alignment;
975
976 struct intel_context {
977 struct i915_vma *state;
978 struct intel_ring *ring;
979 uint32_t *lrc_reg_state;
980 u64 lrc_desc;
981 int pin_count;
982 bool initialised;
983 } engine[I915_NUM_ENGINES];
984 u32 ring_size;
985 u32 desc_template;
986 struct atomic_notifier_head status_notifier;
987 bool execlists_force_single_submission;
988
989 struct list_head link;
990
991 u8 remap_slice;
992 bool closed:1;
993 bool bannable:1;
994 bool banned:1;
995
996 unsigned int guilty_count; /* guilty of a hang */
997 unsigned int active_count; /* active during hang */
998
999 #define CONTEXT_SCORE_GUILTY 10
1000 #define CONTEXT_SCORE_BAN_THRESHOLD 40
1001 /* Accumulated score of hangs caused by this context */
1002 int ban_score;
1003 };
1004
1005 enum fb_op_origin {
1006 ORIGIN_GTT,
1007 ORIGIN_CPU,
1008 ORIGIN_CS,
1009 ORIGIN_FLIP,
1010 ORIGIN_DIRTYFB,
1011 };
1012
1013 struct intel_fbc {
1014 /* This is always the inner lock when overlapping with struct_mutex and
1015 * it's the outer lock when overlapping with stolen_lock. */
1016 struct mutex lock;
1017 unsigned threshold;
1018 unsigned int possible_framebuffer_bits;
1019 unsigned int busy_bits;
1020 unsigned int visible_pipes_mask;
1021 struct intel_crtc *crtc;
1022
1023 struct drm_mm_node compressed_fb;
1024 struct drm_mm_node *compressed_llb;
1025
1026 bool false_color;
1027
1028 bool enabled;
1029 bool active;
1030
1031 bool underrun_detected;
1032 struct work_struct underrun_work;
1033
1034 struct intel_fbc_state_cache {
1035 struct {
1036 unsigned int mode_flags;
1037 uint32_t hsw_bdw_pixel_rate;
1038 } crtc;
1039
1040 struct {
1041 unsigned int rotation;
1042 int src_w;
1043 int src_h;
1044 bool visible;
1045 } plane;
1046
1047 struct {
1048 u64 ilk_ggtt_offset;
1049 uint32_t pixel_format;
1050 unsigned int stride;
1051 int fence_reg;
1052 unsigned int tiling_mode;
1053 } fb;
1054 } state_cache;
1055
1056 struct intel_fbc_reg_params {
1057 struct {
1058 enum pipe pipe;
1059 enum plane plane;
1060 unsigned int fence_y_offset;
1061 } crtc;
1062
1063 struct {
1064 u64 ggtt_offset;
1065 uint32_t pixel_format;
1066 unsigned int stride;
1067 int fence_reg;
1068 } fb;
1069
1070 int cfb_size;
1071 } params;
1072
1073 struct intel_fbc_work {
1074 bool scheduled;
1075 u32 scheduled_vblank;
1076 struct work_struct work;
1077 } work;
1078
1079 const char *no_fbc_reason;
1080 };
1081
1082 /**
1083 * HIGH_RR is the highest eDP panel refresh rate read from EDID
1084 * LOW_RR is the lowest eDP panel refresh rate found from EDID
1085 * parsing for same resolution.
1086 */
1087 enum drrs_refresh_rate_type {
1088 DRRS_HIGH_RR,
1089 DRRS_LOW_RR,
1090 DRRS_MAX_RR, /* RR count */
1091 };
1092
1093 enum drrs_support_type {
1094 DRRS_NOT_SUPPORTED = 0,
1095 STATIC_DRRS_SUPPORT = 1,
1096 SEAMLESS_DRRS_SUPPORT = 2
1097 };
1098
1099 struct intel_dp;
1100 struct i915_drrs {
1101 struct mutex mutex;
1102 struct delayed_work work;
1103 struct intel_dp *dp;
1104 unsigned busy_frontbuffer_bits;
1105 enum drrs_refresh_rate_type refresh_rate_type;
1106 enum drrs_support_type type;
1107 };
1108
1109 struct i915_psr {
1110 struct mutex lock;
1111 bool sink_support;
1112 bool source_ok;
1113 struct intel_dp *enabled;
1114 bool active;
1115 struct delayed_work work;
1116 unsigned busy_frontbuffer_bits;
1117 bool psr2_support;
1118 bool aux_frame_sync;
1119 bool link_standby;
1120 };
1121
1122 enum intel_pch {
1123 PCH_NONE = 0, /* No PCH present */
1124 PCH_IBX, /* Ibexpeak PCH */
1125 PCH_CPT, /* Cougarpoint PCH */
1126 PCH_LPT, /* Lynxpoint PCH */
1127 PCH_SPT, /* Sunrisepoint PCH */
1128 PCH_KBP, /* Kabypoint PCH */
1129 PCH_NOP,
1130 };
1131
1132 enum intel_sbi_destination {
1133 SBI_ICLK,
1134 SBI_MPHY,
1135 };
1136
1137 #define QUIRK_PIPEA_FORCE (1<<0)
1138 #define QUIRK_LVDS_SSC_DISABLE (1<<1)
1139 #define QUIRK_INVERT_BRIGHTNESS (1<<2)
1140 #define QUIRK_BACKLIGHT_PRESENT (1<<3)
1141 #define QUIRK_PIPEB_FORCE (1<<4)
1142 #define QUIRK_PIN_SWIZZLED_PAGES (1<<5)
1143
1144 struct intel_fbdev;
1145 struct intel_fbc_work;
1146
1147 struct intel_gmbus {
1148 struct i2c_adapter adapter;
1149 #define GMBUS_FORCE_BIT_RETRY (1U << 31)
1150 u32 force_bit;
1151 u32 reg0;
1152 i915_reg_t gpio_reg;
1153 struct i2c_algo_bit_data bit_algo;
1154 struct drm_i915_private *dev_priv;
1155 };
1156
1157 struct i915_suspend_saved_registers {
1158 u32 saveDSPARB;
1159 u32 saveFBC_CONTROL;
1160 u32 saveCACHE_MODE_0;
1161 u32 saveMI_ARB_STATE;
1162 u32 saveSWF0[16];
1163 u32 saveSWF1[16];
1164 u32 saveSWF3[3];
1165 uint64_t saveFENCE[I915_MAX_NUM_FENCES];
1166 u32 savePCH_PORT_HOTPLUG;
1167 u16 saveGCDGMBUS;
1168 };
1169
1170 struct vlv_s0ix_state {
1171 /* GAM */
1172 u32 wr_watermark;
1173 u32 gfx_prio_ctrl;
1174 u32 arb_mode;
1175 u32 gfx_pend_tlb0;
1176 u32 gfx_pend_tlb1;
1177 u32 lra_limits[GEN7_LRA_LIMITS_REG_NUM];
1178 u32 media_max_req_count;
1179 u32 gfx_max_req_count;
1180 u32 render_hwsp;
1181 u32 ecochk;
1182 u32 bsd_hwsp;
1183 u32 blt_hwsp;
1184 u32 tlb_rd_addr;
1185
1186 /* MBC */
1187 u32 g3dctl;
1188 u32 gsckgctl;
1189 u32 mbctl;
1190
1191 /* GCP */
1192 u32 ucgctl1;
1193 u32 ucgctl3;
1194 u32 rcgctl1;
1195 u32 rcgctl2;
1196 u32 rstctl;
1197 u32 misccpctl;
1198
1199 /* GPM */
1200 u32 gfxpause;
1201 u32 rpdeuhwtc;
1202 u32 rpdeuc;
1203 u32 ecobus;
1204 u32 pwrdwnupctl;
1205 u32 rp_down_timeout;
1206 u32 rp_deucsw;
1207 u32 rcubmabdtmr;
1208 u32 rcedata;
1209 u32 spare2gh;
1210
1211 /* Display 1 CZ domain */
1212 u32 gt_imr;
1213 u32 gt_ier;
1214 u32 pm_imr;
1215 u32 pm_ier;
1216 u32 gt_scratch[GEN7_GT_SCRATCH_REG_NUM];
1217
1218 /* GT SA CZ domain */
1219 u32 tilectl;
1220 u32 gt_fifoctl;
1221 u32 gtlc_wake_ctrl;
1222 u32 gtlc_survive;
1223 u32 pmwgicz;
1224
1225 /* Display 2 CZ domain */
1226 u32 gu_ctl0;
1227 u32 gu_ctl1;
1228 u32 pcbr;
1229 u32 clock_gate_dis2;
1230 };
1231
1232 struct intel_rps_ei {
1233 u32 cz_clock;
1234 u32 render_c0;
1235 u32 media_c0;
1236 };
1237
1238 struct intel_gen6_power_mgmt {
1239 /*
1240 * work, interrupts_enabled and pm_iir are protected by
1241 * dev_priv->irq_lock
1242 */
1243 struct work_struct work;
1244 bool interrupts_enabled;
1245 u32 pm_iir;
1246
1247 /* PM interrupt bits that should never be masked */
1248 u32 pm_intr_keep;
1249
1250 /* Frequencies are stored in potentially platform dependent multiples.
1251 * In other words, *_freq needs to be multiplied by X to be interesting.
1252 * Soft limits are those which are used for the dynamic reclocking done
1253 * by the driver (raise frequencies under heavy loads, and lower for
1254 * lighter loads). Hard limits are those imposed by the hardware.
1255 *
1256 * A distinction is made for overclocking, which is never enabled by
1257 * default, and is considered to be above the hard limit if it's
1258 * possible at all.
1259 */
1260 u8 cur_freq; /* Current frequency (cached, may not == HW) */
1261 u8 min_freq_softlimit; /* Minimum frequency permitted by the driver */
1262 u8 max_freq_softlimit; /* Max frequency permitted by the driver */
1263 u8 max_freq; /* Maximum frequency, RP0 if not overclocking */
1264 u8 min_freq; /* AKA RPn. Minimum frequency */
1265 u8 boost_freq; /* Frequency to request when wait boosting */
1266 u8 idle_freq; /* Frequency to request when we are idle */
1267 u8 efficient_freq; /* AKA RPe. Pre-determined balanced frequency */
1268 u8 rp1_freq; /* "less than" RP0 power/freqency */
1269 u8 rp0_freq; /* Non-overclocked max frequency. */
1270 u16 gpll_ref_freq; /* vlv/chv GPLL reference frequency */
1271
1272 u8 up_threshold; /* Current %busy required to uplock */
1273 u8 down_threshold; /* Current %busy required to downclock */
1274
1275 int last_adj;
1276 enum { LOW_POWER, BETWEEN, HIGH_POWER } power;
1277
1278 spinlock_t client_lock;
1279 struct list_head clients;
1280 bool client_boost;
1281
1282 bool enabled;
1283 struct delayed_work autoenable_work;
1284 unsigned boosts;
1285
1286 /* manual wa residency calculations */
1287 struct intel_rps_ei up_ei, down_ei;
1288
1289 /*
1290 * Protects RPS/RC6 register access and PCU communication.
1291 * Must be taken after struct_mutex if nested. Note that
1292 * this lock may be held for long periods of time when
1293 * talking to hw - so only take it when talking to hw!
1294 */
1295 struct mutex hw_lock;
1296 };
1297
1298 /* defined intel_pm.c */
1299 extern spinlock_t mchdev_lock;
1300
1301 struct intel_ilk_power_mgmt {
1302 u8 cur_delay;
1303 u8 min_delay;
1304 u8 max_delay;
1305 u8 fmax;
1306 u8 fstart;
1307
1308 u64 last_count1;
1309 unsigned long last_time1;
1310 unsigned long chipset_power;
1311 u64 last_count2;
1312 u64 last_time2;
1313 unsigned long gfx_power;
1314 u8 corr;
1315
1316 int c_m;
1317 int r_t;
1318 };
1319
1320 struct drm_i915_private;
1321 struct i915_power_well;
1322
1323 struct i915_power_well_ops {
1324 /*
1325 * Synchronize the well's hw state to match the current sw state, for
1326 * example enable/disable it based on the current refcount. Called
1327 * during driver init and resume time, possibly after first calling
1328 * the enable/disable handlers.
1329 */
1330 void (*sync_hw)(struct drm_i915_private *dev_priv,
1331 struct i915_power_well *power_well);
1332 /*
1333 * Enable the well and resources that depend on it (for example
1334 * interrupts located on the well). Called after the 0->1 refcount
1335 * transition.
1336 */
1337 void (*enable)(struct drm_i915_private *dev_priv,
1338 struct i915_power_well *power_well);
1339 /*
1340 * Disable the well and resources that depend on it. Called after
1341 * the 1->0 refcount transition.
1342 */
1343 void (*disable)(struct drm_i915_private *dev_priv,
1344 struct i915_power_well *power_well);
1345 /* Returns the hw enabled state. */
1346 bool (*is_enabled)(struct drm_i915_private *dev_priv,
1347 struct i915_power_well *power_well);
1348 };
1349
1350 /* Power well structure for haswell */
1351 struct i915_power_well {
1352 const char *name;
1353 bool always_on;
1354 /* power well enable/disable usage count */
1355 int count;
1356 /* cached hw enabled state */
1357 bool hw_enabled;
1358 unsigned long domains;
1359 /* unique identifier for this power well */
1360 unsigned long id;
1361 /*
1362 * Arbitraty data associated with this power well. Platform and power
1363 * well specific.
1364 */
1365 unsigned long data;
1366 const struct i915_power_well_ops *ops;
1367 };
1368
1369 struct i915_power_domains {
1370 /*
1371 * Power wells needed for initialization at driver init and suspend
1372 * time are on. They are kept on until after the first modeset.
1373 */
1374 bool init_power_on;
1375 bool initializing;
1376 int power_well_count;
1377
1378 struct mutex lock;
1379 int domain_use_count[POWER_DOMAIN_NUM];
1380 struct i915_power_well *power_wells;
1381 };
1382
1383 #define MAX_L3_SLICES 2
1384 struct intel_l3_parity {
1385 u32 *remap_info[MAX_L3_SLICES];
1386 struct work_struct error_work;
1387 int which_slice;
1388 };
1389
1390 struct i915_gem_mm {
1391 /** Memory allocator for GTT stolen memory */
1392 struct drm_mm stolen;
1393 /** Protects the usage of the GTT stolen memory allocator. This is
1394 * always the inner lock when overlapping with struct_mutex. */
1395 struct mutex stolen_lock;
1396
1397 /** List of all objects in gtt_space. Used to restore gtt
1398 * mappings on resume */
1399 struct list_head bound_list;
1400 /**
1401 * List of objects which are not bound to the GTT (thus
1402 * are idle and not used by the GPU). These objects may or may
1403 * not actually have any pages attached.
1404 */
1405 struct list_head unbound_list;
1406
1407 /** List of all objects in gtt_space, currently mmaped by userspace.
1408 * All objects within this list must also be on bound_list.
1409 */
1410 struct list_head userfault_list;
1411
1412 /**
1413 * List of objects which are pending destruction.
1414 */
1415 struct llist_head free_list;
1416 struct work_struct free_work;
1417
1418 /** Usable portion of the GTT for GEM */
1419 unsigned long stolen_base; /* limited to low memory (32-bit) */
1420
1421 /** PPGTT used for aliasing the PPGTT with the GTT */
1422 struct i915_hw_ppgtt *aliasing_ppgtt;
1423
1424 struct notifier_block oom_notifier;
1425 struct notifier_block vmap_notifier;
1426 struct shrinker shrinker;
1427
1428 /** LRU list of objects with fence regs on them. */
1429 struct list_head fence_list;
1430
1431 /**
1432 * Are we in a non-interruptible section of code like
1433 * modesetting?
1434 */
1435 bool interruptible;
1436
1437 /* the indicator for dispatch video commands on two BSD rings */
1438 atomic_t bsd_engine_dispatch_index;
1439
1440 /** Bit 6 swizzling required for X tiling */
1441 uint32_t bit_6_swizzle_x;
1442 /** Bit 6 swizzling required for Y tiling */
1443 uint32_t bit_6_swizzle_y;
1444
1445 /* accounting, useful for userland debugging */
1446 spinlock_t object_stat_lock;
1447 u64 object_memory;
1448 u32 object_count;
1449 };
1450
1451 struct drm_i915_error_state_buf {
1452 struct drm_i915_private *i915;
1453 unsigned bytes;
1454 unsigned size;
1455 int err;
1456 u8 *buf;
1457 loff_t start;
1458 loff_t pos;
1459 };
1460
1461 struct i915_error_state_file_priv {
1462 struct drm_device *dev;
1463 struct drm_i915_error_state *error;
1464 };
1465
1466 #define I915_RESET_TIMEOUT (10 * HZ) /* 10s */
1467 #define I915_FENCE_TIMEOUT (10 * HZ) /* 10s */
1468
1469 #define I915_ENGINE_DEAD_TIMEOUT (4 * HZ) /* Seqno, head and subunits dead */
1470 #define I915_SEQNO_DEAD_TIMEOUT (12 * HZ) /* Seqno dead with active head */
1471
1472 struct i915_gpu_error {
1473 /* For hangcheck timer */
1474 #define DRM_I915_HANGCHECK_PERIOD 1500 /* in ms */
1475 #define DRM_I915_HANGCHECK_JIFFIES msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD)
1476
1477 struct delayed_work hangcheck_work;
1478
1479 /* For reset and error_state handling. */
1480 spinlock_t lock;
1481 /* Protected by the above dev->gpu_error.lock. */
1482 struct drm_i915_error_state *first_error;
1483
1484 unsigned long missed_irq_rings;
1485
1486 /**
1487 * State variable controlling the reset flow and count
1488 *
1489 * This is a counter which gets incremented when reset is triggered,
1490 *
1491 * Before the reset commences, the I915_RESET_IN_PROGRESS bit is set
1492 * meaning that any waiters holding onto the struct_mutex should
1493 * relinquish the lock immediately in order for the reset to start.
1494 *
1495 * If reset is not completed succesfully, the I915_WEDGE bit is
1496 * set meaning that hardware is terminally sour and there is no
1497 * recovery. All waiters on the reset_queue will be woken when
1498 * that happens.
1499 *
1500 * This counter is used by the wait_seqno code to notice that reset
1501 * event happened and it needs to restart the entire ioctl (since most
1502 * likely the seqno it waited for won't ever signal anytime soon).
1503 *
1504 * This is important for lock-free wait paths, where no contended lock
1505 * naturally enforces the correct ordering between the bail-out of the
1506 * waiter and the gpu reset work code.
1507 */
1508 unsigned long reset_count;
1509
1510 unsigned long flags;
1511 #define I915_RESET_IN_PROGRESS 0
1512 #define I915_WEDGED (BITS_PER_LONG - 1)
1513
1514 /**
1515 * Waitqueue to signal when a hang is detected. Used to for waiters
1516 * to release the struct_mutex for the reset to procede.
1517 */
1518 wait_queue_head_t wait_queue;
1519
1520 /**
1521 * Waitqueue to signal when the reset has completed. Used by clients
1522 * that wait for dev_priv->mm.wedged to settle.
1523 */
1524 wait_queue_head_t reset_queue;
1525
1526 /* For missed irq/seqno simulation. */
1527 unsigned long test_irq_rings;
1528 };
1529
1530 enum modeset_restore {
1531 MODESET_ON_LID_OPEN,
1532 MODESET_DONE,
1533 MODESET_SUSPENDED,
1534 };
1535
1536 #define DP_AUX_A 0x40
1537 #define DP_AUX_B 0x10
1538 #define DP_AUX_C 0x20
1539 #define DP_AUX_D 0x30
1540
1541 #define DDC_PIN_B 0x05
1542 #define DDC_PIN_C 0x04
1543 #define DDC_PIN_D 0x06
1544
1545 struct ddi_vbt_port_info {
1546 /*
1547 * This is an index in the HDMI/DVI DDI buffer translation table.
1548 * The special value HDMI_LEVEL_SHIFT_UNKNOWN means the VBT didn't
1549 * populate this field.
1550 */
1551 #define HDMI_LEVEL_SHIFT_UNKNOWN 0xff
1552 uint8_t hdmi_level_shift;
1553
1554 uint8_t supports_dvi:1;
1555 uint8_t supports_hdmi:1;
1556 uint8_t supports_dp:1;
1557
1558 uint8_t alternate_aux_channel;
1559 uint8_t alternate_ddc_pin;
1560
1561 uint8_t dp_boost_level;
1562 uint8_t hdmi_boost_level;
1563 };
1564
1565 enum psr_lines_to_wait {
1566 PSR_0_LINES_TO_WAIT = 0,
1567 PSR_1_LINE_TO_WAIT,
1568 PSR_4_LINES_TO_WAIT,
1569 PSR_8_LINES_TO_WAIT
1570 };
1571
1572 struct intel_vbt_data {
1573 struct drm_display_mode *lfp_lvds_vbt_mode; /* if any */
1574 struct drm_display_mode *sdvo_lvds_vbt_mode; /* if any */
1575
1576 /* Feature bits */
1577 unsigned int int_tv_support:1;
1578 unsigned int lvds_dither:1;
1579 unsigned int lvds_vbt:1;
1580 unsigned int int_crt_support:1;
1581 unsigned int lvds_use_ssc:1;
1582 unsigned int display_clock_mode:1;
1583 unsigned int fdi_rx_polarity_inverted:1;
1584 unsigned int panel_type:4;
1585 int lvds_ssc_freq;
1586 unsigned int bios_lvds_val; /* initial [PCH_]LVDS reg val in VBIOS */
1587
1588 enum drrs_support_type drrs_type;
1589
1590 struct {
1591 int rate;
1592 int lanes;
1593 int preemphasis;
1594 int vswing;
1595 bool low_vswing;
1596 bool initialized;
1597 bool support;
1598 int bpp;
1599 struct edp_power_seq pps;
1600 } edp;
1601
1602 struct {
1603 bool full_link;
1604 bool require_aux_wakeup;
1605 int idle_frames;
1606 enum psr_lines_to_wait lines_to_wait;
1607 int tp1_wakeup_time;
1608 int tp2_tp3_wakeup_time;
1609 } psr;
1610
1611 struct {
1612 u16 pwm_freq_hz;
1613 bool present;
1614 bool active_low_pwm;
1615 u8 min_brightness; /* min_brightness/255 of max */
1616 enum intel_backlight_type type;
1617 } backlight;
1618
1619 /* MIPI DSI */
1620 struct {
1621 u16 panel_id;
1622 struct mipi_config *config;
1623 struct mipi_pps_data *pps;
1624 u8 seq_version;
1625 u32 size;
1626 u8 *data;
1627 const u8 *sequence[MIPI_SEQ_MAX];
1628 } dsi;
1629
1630 int crt_ddc_pin;
1631
1632 int child_dev_num;
1633 union child_device_config *child_dev;
1634
1635 struct ddi_vbt_port_info ddi_port_info[I915_MAX_PORTS];
1636 struct sdvo_device_mapping sdvo_mappings[2];
1637 };
1638
1639 enum intel_ddb_partitioning {
1640 INTEL_DDB_PART_1_2,
1641 INTEL_DDB_PART_5_6, /* IVB+ */
1642 };
1643
1644 struct intel_wm_level {
1645 bool enable;
1646 uint32_t pri_val;
1647 uint32_t spr_val;
1648 uint32_t cur_val;
1649 uint32_t fbc_val;
1650 };
1651
1652 struct ilk_wm_values {
1653 uint32_t wm_pipe[3];
1654 uint32_t wm_lp[3];
1655 uint32_t wm_lp_spr[3];
1656 uint32_t wm_linetime[3];
1657 bool enable_fbc_wm;
1658 enum intel_ddb_partitioning partitioning;
1659 };
1660
1661 struct vlv_pipe_wm {
1662 uint16_t primary;
1663 uint16_t sprite[2];
1664 uint8_t cursor;
1665 };
1666
1667 struct vlv_sr_wm {
1668 uint16_t plane;
1669 uint8_t cursor;
1670 };
1671
1672 struct vlv_wm_values {
1673 struct vlv_pipe_wm pipe[3];
1674 struct vlv_sr_wm sr;
1675 struct {
1676 uint8_t cursor;
1677 uint8_t sprite[2];
1678 uint8_t primary;
1679 } ddl[3];
1680 uint8_t level;
1681 bool cxsr;
1682 };
1683
1684 struct skl_ddb_entry {
1685 uint16_t start, end; /* in number of blocks, 'end' is exclusive */
1686 };
1687
1688 static inline uint16_t skl_ddb_entry_size(const struct skl_ddb_entry *entry)
1689 {
1690 return entry->end - entry->start;
1691 }
1692
1693 static inline bool skl_ddb_entry_equal(const struct skl_ddb_entry *e1,
1694 const struct skl_ddb_entry *e2)
1695 {
1696 if (e1->start == e2->start && e1->end == e2->end)
1697 return true;
1698
1699 return false;
1700 }
1701
1702 struct skl_ddb_allocation {
1703 struct skl_ddb_entry plane[I915_MAX_PIPES][I915_MAX_PLANES]; /* packed/uv */
1704 struct skl_ddb_entry y_plane[I915_MAX_PIPES][I915_MAX_PLANES];
1705 };
1706
1707 struct skl_wm_values {
1708 unsigned dirty_pipes;
1709 struct skl_ddb_allocation ddb;
1710 };
1711
1712 struct skl_wm_level {
1713 bool plane_en;
1714 uint16_t plane_res_b;
1715 uint8_t plane_res_l;
1716 };
1717
1718 /*
1719 * This struct helps tracking the state needed for runtime PM, which puts the
1720 * device in PCI D3 state. Notice that when this happens, nothing on the
1721 * graphics device works, even register access, so we don't get interrupts nor
1722 * anything else.
1723 *
1724 * Every piece of our code that needs to actually touch the hardware needs to
1725 * either call intel_runtime_pm_get or call intel_display_power_get with the
1726 * appropriate power domain.
1727 *
1728 * Our driver uses the autosuspend delay feature, which means we'll only really
1729 * suspend if we stay with zero refcount for a certain amount of time. The
1730 * default value is currently very conservative (see intel_runtime_pm_enable), but
1731 * it can be changed with the standard runtime PM files from sysfs.
1732 *
1733 * The irqs_disabled variable becomes true exactly after we disable the IRQs and
1734 * goes back to false exactly before we reenable the IRQs. We use this variable
1735 * to check if someone is trying to enable/disable IRQs while they're supposed
1736 * to be disabled. This shouldn't happen and we'll print some error messages in
1737 * case it happens.
1738 *
1739 * For more, read the Documentation/power/runtime_pm.txt.
1740 */
1741 struct i915_runtime_pm {
1742 atomic_t wakeref_count;
1743 bool suspended;
1744 bool irqs_enabled;
1745 };
1746
1747 enum intel_pipe_crc_source {
1748 INTEL_PIPE_CRC_SOURCE_NONE,
1749 INTEL_PIPE_CRC_SOURCE_PLANE1,
1750 INTEL_PIPE_CRC_SOURCE_PLANE2,
1751 INTEL_PIPE_CRC_SOURCE_PF,
1752 INTEL_PIPE_CRC_SOURCE_PIPE,
1753 /* TV/DP on pre-gen5/vlv can't use the pipe source. */
1754 INTEL_PIPE_CRC_SOURCE_TV,
1755 INTEL_PIPE_CRC_SOURCE_DP_B,
1756 INTEL_PIPE_CRC_SOURCE_DP_C,
1757 INTEL_PIPE_CRC_SOURCE_DP_D,
1758 INTEL_PIPE_CRC_SOURCE_AUTO,
1759 INTEL_PIPE_CRC_SOURCE_MAX,
1760 };
1761
1762 struct intel_pipe_crc_entry {
1763 uint32_t frame;
1764 uint32_t crc[5];
1765 };
1766
1767 #define INTEL_PIPE_CRC_ENTRIES_NR 128
1768 struct intel_pipe_crc {
1769 spinlock_t lock;
1770 bool opened; /* exclusive access to the result file */
1771 struct intel_pipe_crc_entry *entries;
1772 enum intel_pipe_crc_source source;
1773 int head, tail;
1774 wait_queue_head_t wq;
1775 };
1776
1777 struct i915_frontbuffer_tracking {
1778 spinlock_t lock;
1779
1780 /*
1781 * Tracking bits for delayed frontbuffer flushing du to gpu activity or
1782 * scheduled flips.
1783 */
1784 unsigned busy_bits;
1785 unsigned flip_bits;
1786 };
1787
1788 struct i915_wa_reg {
1789 i915_reg_t addr;
1790 u32 value;
1791 /* bitmask representing WA bits */
1792 u32 mask;
1793 };
1794
1795 /*
1796 * RING_MAX_NONPRIV_SLOTS is per-engine but at this point we are only
1797 * allowing it for RCS as we don't foresee any requirement of having
1798 * a whitelist for other engines. When it is really required for
1799 * other engines then the limit need to be increased.
1800 */
1801 #define I915_MAX_WA_REGS (16 + RING_MAX_NONPRIV_SLOTS)
1802
1803 struct i915_workarounds {
1804 struct i915_wa_reg reg[I915_MAX_WA_REGS];
1805 u32 count;
1806 u32 hw_whitelist_count[I915_NUM_ENGINES];
1807 };
1808
1809 struct i915_virtual_gpu {
1810 bool active;
1811 };
1812
1813 /* used in computing the new watermarks state */
1814 struct intel_wm_config {
1815 unsigned int num_pipes_active;
1816 bool sprites_enabled;
1817 bool sprites_scaled;
1818 };
1819
1820 struct i915_oa_format {
1821 u32 format;
1822 int size;
1823 };
1824
1825 struct i915_oa_reg {
1826 i915_reg_t addr;
1827 u32 value;
1828 };
1829
1830 struct i915_perf_stream;
1831
1832 struct i915_perf_stream_ops {
1833 /* Enables the collection of HW samples, either in response to
1834 * I915_PERF_IOCTL_ENABLE or implicitly called when stream is
1835 * opened without I915_PERF_FLAG_DISABLED.
1836 */
1837 void (*enable)(struct i915_perf_stream *stream);
1838
1839 /* Disables the collection of HW samples, either in response to
1840 * I915_PERF_IOCTL_DISABLE or implicitly called before
1841 * destroying the stream.
1842 */
1843 void (*disable)(struct i915_perf_stream *stream);
1844
1845 /* Call poll_wait, passing a wait queue that will be woken
1846 * once there is something ready to read() for the stream
1847 */
1848 void (*poll_wait)(struct i915_perf_stream *stream,
1849 struct file *file,
1850 poll_table *wait);
1851
1852 /* For handling a blocking read, wait until there is something
1853 * to ready to read() for the stream. E.g. wait on the same
1854 * wait queue that would be passed to poll_wait().
1855 */
1856 int (*wait_unlocked)(struct i915_perf_stream *stream);
1857
1858 /* read - Copy buffered metrics as records to userspace
1859 * @buf: the userspace, destination buffer
1860 * @count: the number of bytes to copy, requested by userspace
1861 * @offset: zero at the start of the read, updated as the read
1862 * proceeds, it represents how many bytes have been
1863 * copied so far and the buffer offset for copying the
1864 * next record.
1865 *
1866 * Copy as many buffered i915 perf samples and records for
1867 * this stream to userspace as will fit in the given buffer.
1868 *
1869 * Only write complete records; returning -ENOSPC if there
1870 * isn't room for a complete record.
1871 *
1872 * Return any error condition that results in a short read
1873 * such as -ENOSPC or -EFAULT, even though these may be
1874 * squashed before returning to userspace.
1875 */
1876 int (*read)(struct i915_perf_stream *stream,
1877 char __user *buf,
1878 size_t count,
1879 size_t *offset);
1880
1881 /* Cleanup any stream specific resources.
1882 *
1883 * The stream will always be disabled before this is called.
1884 */
1885 void (*destroy)(struct i915_perf_stream *stream);
1886 };
1887
1888 struct i915_perf_stream {
1889 struct drm_i915_private *dev_priv;
1890
1891 struct list_head link;
1892
1893 u32 sample_flags;
1894 int sample_size;
1895
1896 struct i915_gem_context *ctx;
1897 bool enabled;
1898
1899 const struct i915_perf_stream_ops *ops;
1900 };
1901
1902 struct i915_oa_ops {
1903 void (*init_oa_buffer)(struct drm_i915_private *dev_priv);
1904 int (*enable_metric_set)(struct drm_i915_private *dev_priv);
1905 void (*disable_metric_set)(struct drm_i915_private *dev_priv);
1906 void (*oa_enable)(struct drm_i915_private *dev_priv);
1907 void (*oa_disable)(struct drm_i915_private *dev_priv);
1908 void (*update_oacontrol)(struct drm_i915_private *dev_priv);
1909 void (*update_hw_ctx_id_locked)(struct drm_i915_private *dev_priv,
1910 u32 ctx_id);
1911 int (*read)(struct i915_perf_stream *stream,
1912 char __user *buf,
1913 size_t count,
1914 size_t *offset);
1915 bool (*oa_buffer_is_empty)(struct drm_i915_private *dev_priv);
1916 };
1917
1918 struct drm_i915_private {
1919 struct drm_device drm;
1920
1921 struct kmem_cache *objects;
1922 struct kmem_cache *vmas;
1923 struct kmem_cache *requests;
1924 struct kmem_cache *dependencies;
1925
1926 const struct intel_device_info info;
1927
1928 int relative_constants_mode;
1929
1930 void __iomem *regs;
1931
1932 struct intel_uncore uncore;
1933
1934 struct i915_virtual_gpu vgpu;
1935
1936 struct intel_gvt *gvt;
1937
1938 struct intel_guc guc;
1939
1940 struct intel_csr csr;
1941
1942 struct intel_gmbus gmbus[GMBUS_NUM_PINS];
1943
1944 /** gmbus_mutex protects against concurrent usage of the single hw gmbus
1945 * controller on different i2c buses. */
1946 struct mutex gmbus_mutex;
1947
1948 /**
1949 * Base address of the gmbus and gpio block.
1950 */
1951 uint32_t gpio_mmio_base;
1952
1953 /* MMIO base address for MIPI regs */
1954 uint32_t mipi_mmio_base;
1955
1956 uint32_t psr_mmio_base;
1957
1958 uint32_t pps_mmio_base;
1959
1960 wait_queue_head_t gmbus_wait_queue;
1961
1962 struct pci_dev *bridge_dev;
1963 struct i915_gem_context *kernel_context;
1964 struct intel_engine_cs *engine[I915_NUM_ENGINES];
1965 struct i915_vma *semaphore;
1966
1967 struct drm_dma_handle *status_page_dmah;
1968 struct resource mch_res;
1969
1970 /* protects the irq masks */
1971 spinlock_t irq_lock;
1972
1973 /* protects the mmio flip data */
1974 spinlock_t mmio_flip_lock;
1975
1976 bool display_irqs_enabled;
1977
1978 /* To control wakeup latency, e.g. for irq-driven dp aux transfers. */
1979 struct pm_qos_request pm_qos;
1980
1981 /* Sideband mailbox protection */
1982 struct mutex sb_lock;
1983
1984 /** Cached value of IMR to avoid reads in updating the bitfield */
1985 union {
1986 u32 irq_mask;
1987 u32 de_irq_mask[I915_MAX_PIPES];
1988 };
1989 u32 gt_irq_mask;
1990 u32 pm_imr;
1991 u32 pm_ier;
1992 u32 pm_rps_events;
1993 u32 pm_guc_events;
1994 u32 pipestat_irq_mask[I915_MAX_PIPES];
1995
1996 struct i915_hotplug hotplug;
1997 struct intel_fbc fbc;
1998 struct i915_drrs drrs;
1999 struct intel_opregion opregion;
2000 struct intel_vbt_data vbt;
2001
2002 bool preserve_bios_swizzle;
2003
2004 /* overlay */
2005 struct intel_overlay *overlay;
2006
2007 /* backlight registers and fields in struct intel_panel */
2008 struct mutex backlight_lock;
2009
2010 /* LVDS info */
2011 bool no_aux_handshake;
2012
2013 /* protects panel power sequencer state */
2014 struct mutex pps_mutex;
2015
2016 struct drm_i915_fence_reg fence_regs[I915_MAX_NUM_FENCES]; /* assume 965 */
2017 int num_fence_regs; /* 8 on pre-965, 16 otherwise */
2018
2019 unsigned int fsb_freq, mem_freq, is_ddr3;
2020 unsigned int skl_preferred_vco_freq;
2021 unsigned int cdclk_freq, max_cdclk_freq;
2022
2023 /*
2024 * For reading holding any crtc lock is sufficient,
2025 * for writing must hold all of them.
2026 */
2027 unsigned int atomic_cdclk_freq;
2028
2029 unsigned int max_dotclk_freq;
2030 unsigned int rawclk_freq;
2031 unsigned int hpll_freq;
2032 unsigned int czclk_freq;
2033
2034 struct {
2035 unsigned int vco, ref;
2036 } cdclk_pll;
2037
2038 /**
2039 * wq - Driver workqueue for GEM.
2040 *
2041 * NOTE: Work items scheduled here are not allowed to grab any modeset
2042 * locks, for otherwise the flushing done in the pageflip code will
2043 * result in deadlocks.
2044 */
2045 struct workqueue_struct *wq;
2046
2047 /* Display functions */
2048 struct drm_i915_display_funcs display;
2049
2050 /* PCH chipset type */
2051 enum intel_pch pch_type;
2052 unsigned short pch_id;
2053
2054 unsigned long quirks;
2055
2056 enum modeset_restore modeset_restore;
2057 struct mutex modeset_restore_lock;
2058 struct drm_atomic_state *modeset_restore_state;
2059 struct drm_modeset_acquire_ctx reset_ctx;
2060
2061 struct list_head vm_list; /* Global list of all address spaces */
2062 struct i915_ggtt ggtt; /* VM representing the global address space */
2063
2064 struct i915_gem_mm mm;
2065 DECLARE_HASHTABLE(mm_structs, 7);
2066 struct mutex mm_lock;
2067
2068 /* The hw wants to have a stable context identifier for the lifetime
2069 * of the context (for OA, PASID, faults, etc). This is limited
2070 * in execlists to 21 bits.
2071 */
2072 struct ida context_hw_ida;
2073 #define MAX_CONTEXT_HW_ID (1<<21) /* exclusive */
2074
2075 /* Kernel Modesetting */
2076
2077 struct intel_crtc *plane_to_crtc_mapping[I915_MAX_PIPES];
2078 struct intel_crtc *pipe_to_crtc_mapping[I915_MAX_PIPES];
2079 wait_queue_head_t pending_flip_queue;
2080
2081 #ifdef CONFIG_DEBUG_FS
2082 struct intel_pipe_crc pipe_crc[I915_MAX_PIPES];
2083 #endif
2084
2085 /* dpll and cdclk state is protected by connection_mutex */
2086 int num_shared_dpll;
2087 struct intel_shared_dpll shared_dplls[I915_NUM_PLLS];
2088 const struct intel_dpll_mgr *dpll_mgr;
2089
2090 /*
2091 * dpll_lock serializes intel_{prepare,enable,disable}_shared_dpll.
2092 * Must be global rather than per dpll, because on some platforms
2093 * plls share registers.
2094 */
2095 struct mutex dpll_lock;
2096
2097 unsigned int active_crtcs;
2098 unsigned int min_pixclk[I915_MAX_PIPES];
2099
2100 int dpio_phy_iosf_port[I915_NUM_PHYS_VLV];
2101
2102 struct i915_workarounds workarounds;
2103
2104 struct i915_frontbuffer_tracking fb_tracking;
2105
2106 u16 orig_clock;
2107
2108 bool mchbar_need_disable;
2109
2110 struct intel_l3_parity l3_parity;
2111
2112 /* Cannot be determined by PCIID. You must always read a register. */
2113 u32 edram_cap;
2114
2115 /* gen6+ rps state */
2116 struct intel_gen6_power_mgmt rps;
2117
2118 /* ilk-only ips/rps state. Everything in here is protected by the global
2119 * mchdev_lock in intel_pm.c */
2120 struct intel_ilk_power_mgmt ips;
2121
2122 struct i915_power_domains power_domains;
2123
2124 struct i915_psr psr;
2125
2126 struct i915_gpu_error gpu_error;
2127
2128 struct drm_i915_gem_object *vlv_pctx;
2129
2130 #ifdef CONFIG_DRM_FBDEV_EMULATION
2131 /* list of fbdev register on this device */
2132 struct intel_fbdev *fbdev;
2133 struct work_struct fbdev_suspend_work;
2134 #endif
2135
2136 struct drm_property *broadcast_rgb_property;
2137 struct drm_property *force_audio_property;
2138
2139 /* hda/i915 audio component */
2140 struct i915_audio_component *audio_component;
2141 bool audio_component_registered;
2142 /**
2143 * av_mutex - mutex for audio/video sync
2144 *
2145 */
2146 struct mutex av_mutex;
2147
2148 uint32_t hw_context_size;
2149 struct list_head context_list;
2150
2151 u32 fdi_rx_config;
2152
2153 /* Shadow for DISPLAY_PHY_CONTROL which can't be safely read */
2154 u32 chv_phy_control;
2155 /*
2156 * Shadows for CHV DPLL_MD regs to keep the state
2157 * checker somewhat working in the presence hardware
2158 * crappiness (can't read out DPLL_MD for pipes B & C).
2159 */
2160 u32 chv_dpll_md[I915_MAX_PIPES];
2161 u32 bxt_phy_grc;
2162
2163 u32 suspend_count;
2164 bool suspended_to_idle;
2165 struct i915_suspend_saved_registers regfile;
2166 struct vlv_s0ix_state vlv_s0ix_state;
2167
2168 enum {
2169 I915_SAGV_UNKNOWN = 0,
2170 I915_SAGV_DISABLED,
2171 I915_SAGV_ENABLED,
2172 I915_SAGV_NOT_CONTROLLED
2173 } sagv_status;
2174
2175 struct {
2176 /*
2177 * Raw watermark latency values:
2178 * in 0.1us units for WM0,
2179 * in 0.5us units for WM1+.
2180 */
2181 /* primary */
2182 uint16_t pri_latency[5];
2183 /* sprite */
2184 uint16_t spr_latency[5];
2185 /* cursor */
2186 uint16_t cur_latency[5];
2187 /*
2188 * Raw watermark memory latency values
2189 * for SKL for all 8 levels
2190 * in 1us units.
2191 */
2192 uint16_t skl_latency[8];
2193
2194 /* current hardware state */
2195 union {
2196 struct ilk_wm_values hw;
2197 struct skl_wm_values skl_hw;
2198 struct vlv_wm_values vlv;
2199 };
2200
2201 uint8_t max_level;
2202
2203 /*
2204 * Should be held around atomic WM register writing; also
2205 * protects * intel_crtc->wm.active and
2206 * cstate->wm.need_postvbl_update.
2207 */
2208 struct mutex wm_mutex;
2209
2210 /*
2211 * Set during HW readout of watermarks/DDB. Some platforms
2212 * need to know when we're still using BIOS-provided values
2213 * (which we don't fully trust).
2214 */
2215 bool distrust_bios_wm;
2216 } wm;
2217
2218 struct i915_runtime_pm pm;
2219
2220 struct {
2221 bool initialized;
2222
2223 struct kobject *metrics_kobj;
2224 struct ctl_table_header *sysctl_header;
2225
2226 struct mutex lock;
2227 struct list_head streams;
2228
2229 spinlock_t hook_lock;
2230
2231 struct {
2232 struct i915_perf_stream *exclusive_stream;
2233
2234 u32 specific_ctx_id;
2235 struct i915_vma *pinned_rcs_vma;
2236
2237 struct hrtimer poll_check_timer;
2238 wait_queue_head_t poll_wq;
2239 bool pollin;
2240
2241 bool periodic;
2242 int period_exponent;
2243 int timestamp_frequency;
2244
2245 int tail_margin;
2246
2247 int metrics_set;
2248
2249 const struct i915_oa_reg *mux_regs;
2250 int mux_regs_len;
2251 const struct i915_oa_reg *b_counter_regs;
2252 int b_counter_regs_len;
2253
2254 struct {
2255 struct i915_vma *vma;
2256 u8 *vaddr;
2257 int format;
2258 int format_size;
2259 } oa_buffer;
2260
2261 u32 gen7_latched_oastatus1;
2262
2263 struct i915_oa_ops ops;
2264 const struct i915_oa_format *oa_formats;
2265 int n_builtin_sets;
2266 } oa;
2267 } perf;
2268
2269 /* Abstract the submission mechanism (legacy ringbuffer or execlists) away */
2270 struct {
2271 void (*resume)(struct drm_i915_private *);
2272 void (*cleanup_engine)(struct intel_engine_cs *engine);
2273
2274 struct list_head timelines;
2275 struct i915_gem_timeline global_timeline;
2276 u32 active_requests;
2277
2278 /**
2279 * Is the GPU currently considered idle, or busy executing
2280 * userspace requests? Whilst idle, we allow runtime power
2281 * management to power down the hardware and display clocks.
2282 * In order to reduce the effect on performance, there
2283 * is a slight delay before we do so.
2284 */
2285 bool awake;
2286
2287 /**
2288 * We leave the user IRQ off as much as possible,
2289 * but this means that requests will finish and never
2290 * be retired once the system goes idle. Set a timer to
2291 * fire periodically while the ring is running. When it
2292 * fires, go retire requests.
2293 */
2294 struct delayed_work retire_work;
2295
2296 /**
2297 * When we detect an idle GPU, we want to turn on
2298 * powersaving features. So once we see that there
2299 * are no more requests outstanding and no more
2300 * arrive within a small period of time, we fire
2301 * off the idle_work.
2302 */
2303 struct delayed_work idle_work;
2304
2305 ktime_t last_init_time;
2306 } gt;
2307
2308 /* perform PHY state sanity checks? */
2309 bool chv_phy_assert[2];
2310
2311 /* Used to save the pipe-to-encoder mapping for audio */
2312 struct intel_encoder *av_enc_map[I915_MAX_PIPES];
2313
2314 /*
2315 * NOTE: This is the dri1/ums dungeon, don't add stuff here. Your patch
2316 * will be rejected. Instead look for a better place.
2317 */
2318 };
2319
2320 static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
2321 {
2322 return container_of(dev, struct drm_i915_private, drm);
2323 }
2324
2325 static inline struct drm_i915_private *kdev_to_i915(struct device *kdev)
2326 {
2327 return to_i915(dev_get_drvdata(kdev));
2328 }
2329
2330 static inline struct drm_i915_private *guc_to_i915(struct intel_guc *guc)
2331 {
2332 return container_of(guc, struct drm_i915_private, guc);
2333 }
2334
2335 /* Simple iterator over all initialised engines */
2336 #define for_each_engine(engine__, dev_priv__, id__) \
2337 for ((id__) = 0; \
2338 (id__) < I915_NUM_ENGINES; \
2339 (id__)++) \
2340 for_each_if ((engine__) = (dev_priv__)->engine[(id__)])
2341
2342 #define __mask_next_bit(mask) ({ \
2343 int __idx = ffs(mask) - 1; \
2344 mask &= ~BIT(__idx); \
2345 __idx; \
2346 })
2347
2348 /* Iterator over subset of engines selected by mask */
2349 #define for_each_engine_masked(engine__, dev_priv__, mask__, tmp__) \
2350 for (tmp__ = mask__ & INTEL_INFO(dev_priv__)->ring_mask; \
2351 tmp__ ? (engine__ = (dev_priv__)->engine[__mask_next_bit(tmp__)]), 1 : 0; )
2352
2353 enum hdmi_force_audio {
2354 HDMI_AUDIO_OFF_DVI = -2, /* no aux data for HDMI-DVI converter */
2355 HDMI_AUDIO_OFF, /* force turn off HDMI audio */
2356 HDMI_AUDIO_AUTO, /* trust EDID */
2357 HDMI_AUDIO_ON, /* force turn on HDMI audio */
2358 };
2359
2360 #define I915_GTT_OFFSET_NONE ((u32)-1)
2361
2362 /*
2363 * Frontbuffer tracking bits. Set in obj->frontbuffer_bits while a gem bo is
2364 * considered to be the frontbuffer for the given plane interface-wise. This
2365 * doesn't mean that the hw necessarily already scans it out, but that any
2366 * rendering (by the cpu or gpu) will land in the frontbuffer eventually.
2367 *
2368 * We have one bit per pipe and per scanout plane type.
2369 */
2370 #define INTEL_MAX_SPRITE_BITS_PER_PIPE 5
2371 #define INTEL_FRONTBUFFER_BITS_PER_PIPE 8
2372 #define INTEL_FRONTBUFFER_PRIMARY(pipe) \
2373 (1 << (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe)))
2374 #define INTEL_FRONTBUFFER_CURSOR(pipe) \
2375 (1 << (1 + (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe))))
2376 #define INTEL_FRONTBUFFER_SPRITE(pipe, plane) \
2377 (1 << (2 + plane + (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe))))
2378 #define INTEL_FRONTBUFFER_OVERLAY(pipe) \
2379 (1 << (2 + INTEL_MAX_SPRITE_BITS_PER_PIPE + (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe))))
2380 #define INTEL_FRONTBUFFER_ALL_MASK(pipe) \
2381 (0xff << (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe)))
2382
2383 /*
2384 * Optimised SGL iterator for GEM objects
2385 */
2386 static __always_inline struct sgt_iter {
2387 struct scatterlist *sgp;
2388 union {
2389 unsigned long pfn;
2390 dma_addr_t dma;
2391 };
2392 unsigned int curr;
2393 unsigned int max;
2394 } __sgt_iter(struct scatterlist *sgl, bool dma) {
2395 struct sgt_iter s = { .sgp = sgl };
2396
2397 if (s.sgp) {
2398 s.max = s.curr = s.sgp->offset;
2399 s.max += s.sgp->length;
2400 if (dma)
2401 s.dma = sg_dma_address(s.sgp);
2402 else
2403 s.pfn = page_to_pfn(sg_page(s.sgp));
2404 }
2405
2406 return s;
2407 }
2408
2409 static inline struct scatterlist *____sg_next(struct scatterlist *sg)
2410 {
2411 ++sg;
2412 if (unlikely(sg_is_chain(sg)))
2413 sg = sg_chain_ptr(sg);
2414 return sg;
2415 }
2416
2417 /**
2418 * __sg_next - return the next scatterlist entry in a list
2419 * @sg: The current sg entry
2420 *
2421 * Description:
2422 * If the entry is the last, return NULL; otherwise, step to the next
2423 * element in the array (@sg@+1). If that's a chain pointer, follow it;
2424 * otherwise just return the pointer to the current element.
2425 **/
2426 static inline struct scatterlist *__sg_next(struct scatterlist *sg)
2427 {
2428 #ifdef CONFIG_DEBUG_SG
2429 BUG_ON(sg->sg_magic != SG_MAGIC);
2430 #endif
2431 return sg_is_last(sg) ? NULL : ____sg_next(sg);
2432 }
2433
2434 /**
2435 * for_each_sgt_dma - iterate over the DMA addresses of the given sg_table
2436 * @__dmap: DMA address (output)
2437 * @__iter: 'struct sgt_iter' (iterator state, internal)
2438 * @__sgt: sg_table to iterate over (input)
2439 */
2440 #define for_each_sgt_dma(__dmap, __iter, __sgt) \
2441 for ((__iter) = __sgt_iter((__sgt)->sgl, true); \
2442 ((__dmap) = (__iter).dma + (__iter).curr); \
2443 (((__iter).curr += PAGE_SIZE) < (__iter).max) || \
2444 ((__iter) = __sgt_iter(__sg_next((__iter).sgp), true), 0))
2445
2446 /**
2447 * for_each_sgt_page - iterate over the pages of the given sg_table
2448 * @__pp: page pointer (output)
2449 * @__iter: 'struct sgt_iter' (iterator state, internal)
2450 * @__sgt: sg_table to iterate over (input)
2451 */
2452 #define for_each_sgt_page(__pp, __iter, __sgt) \
2453 for ((__iter) = __sgt_iter((__sgt)->sgl, false); \
2454 ((__pp) = (__iter).pfn == 0 ? NULL : \
2455 pfn_to_page((__iter).pfn + ((__iter).curr >> PAGE_SHIFT))); \
2456 (((__iter).curr += PAGE_SIZE) < (__iter).max) || \
2457 ((__iter) = __sgt_iter(__sg_next((__iter).sgp), false), 0))
2458
2459 static inline const struct intel_device_info *
2460 intel_info(const struct drm_i915_private *dev_priv)
2461 {
2462 return &dev_priv->info;
2463 }
2464
2465 #define INTEL_INFO(dev_priv) intel_info((dev_priv))
2466
2467 #define INTEL_GEN(dev_priv) ((dev_priv)->info.gen)
2468 #define INTEL_DEVID(dev_priv) ((dev_priv)->info.device_id)
2469
2470 #define REVID_FOREVER 0xff
2471 #define INTEL_REVID(dev_priv) ((dev_priv)->drm.pdev->revision)
2472
2473 #define GEN_FOREVER (0)
2474 /*
2475 * Returns true if Gen is in inclusive range [Start, End].
2476 *
2477 * Use GEN_FOREVER for unbound start and or end.
2478 */
2479 #define IS_GEN(dev_priv, s, e) ({ \
2480 unsigned int __s = (s), __e = (e); \
2481 BUILD_BUG_ON(!__builtin_constant_p(s)); \
2482 BUILD_BUG_ON(!__builtin_constant_p(e)); \
2483 if ((__s) != GEN_FOREVER) \
2484 __s = (s) - 1; \
2485 if ((__e) == GEN_FOREVER) \
2486 __e = BITS_PER_LONG - 1; \
2487 else \
2488 __e = (e) - 1; \
2489 !!((dev_priv)->info.gen_mask & GENMASK((__e), (__s))); \
2490 })
2491
2492 /*
2493 * Return true if revision is in range [since,until] inclusive.
2494 *
2495 * Use 0 for open-ended since, and REVID_FOREVER for open-ended until.
2496 */
2497 #define IS_REVID(p, since, until) \
2498 (INTEL_REVID(p) >= (since) && INTEL_REVID(p) <= (until))
2499
2500 #define IS_I830(dev_priv) (INTEL_DEVID(dev_priv) == 0x3577)
2501 #define IS_845G(dev_priv) (INTEL_DEVID(dev_priv) == 0x2562)
2502 #define IS_I85X(dev_priv) ((dev_priv)->info.is_i85x)
2503 #define IS_I865G(dev_priv) (INTEL_DEVID(dev_priv) == 0x2572)
2504 #define IS_I915G(dev_priv) ((dev_priv)->info.is_i915g)
2505 #define IS_I915GM(dev_priv) (INTEL_DEVID(dev_priv) == 0x2592)
2506 #define IS_I945G(dev_priv) (INTEL_DEVID(dev_priv) == 0x2772)
2507 #define IS_I945GM(dev_priv) ((dev_priv)->info.is_i945gm)
2508 #define IS_BROADWATER(dev_priv) ((dev_priv)->info.is_broadwater)
2509 #define IS_CRESTLINE(dev_priv) ((dev_priv)->info.is_crestline)
2510 #define IS_GM45(dev_priv) (INTEL_DEVID(dev_priv) == 0x2A42)
2511 #define IS_G4X(dev_priv) ((dev_priv)->info.is_g4x)
2512 #define IS_PINEVIEW_G(dev_priv) (INTEL_DEVID(dev_priv) == 0xa001)
2513 #define IS_PINEVIEW_M(dev_priv) (INTEL_DEVID(dev_priv) == 0xa011)
2514 #define IS_PINEVIEW(dev_priv) ((dev_priv)->info.is_pineview)
2515 #define IS_G33(dev_priv) ((dev_priv)->info.is_g33)
2516 #define IS_IRONLAKE_M(dev_priv) (INTEL_DEVID(dev_priv) == 0x0046)
2517 #define IS_IVYBRIDGE(dev_priv) ((dev_priv)->info.is_ivybridge)
2518 #define IS_IVB_GT1(dev_priv) (INTEL_DEVID(dev_priv) == 0x0156 || \
2519 INTEL_DEVID(dev_priv) == 0x0152 || \
2520 INTEL_DEVID(dev_priv) == 0x015a)
2521 #define IS_VALLEYVIEW(dev_priv) ((dev_priv)->info.is_valleyview)
2522 #define IS_CHERRYVIEW(dev_priv) ((dev_priv)->info.is_cherryview)
2523 #define IS_HASWELL(dev_priv) ((dev_priv)->info.is_haswell)
2524 #define IS_BROADWELL(dev_priv) ((dev_priv)->info.is_broadwell)
2525 #define IS_SKYLAKE(dev_priv) ((dev_priv)->info.is_skylake)
2526 #define IS_BROXTON(dev_priv) ((dev_priv)->info.is_broxton)
2527 #define IS_GEMINILAKE(dev_priv) ((dev_priv)->info.is_geminilake)
2528 #define IS_KABYLAKE(dev_priv) ((dev_priv)->info.is_kabylake)
2529 #define IS_MOBILE(dev_priv) ((dev_priv)->info.is_mobile)
2530 #define IS_HSW_EARLY_SDV(dev_priv) (IS_HASWELL(dev_priv) && \
2531 (INTEL_DEVID(dev_priv) & 0xFF00) == 0x0C00)
2532 #define IS_BDW_ULT(dev_priv) (IS_BROADWELL(dev_priv) && \
2533 ((INTEL_DEVID(dev_priv) & 0xf) == 0x6 || \
2534 (INTEL_DEVID(dev_priv) & 0xf) == 0xb || \
2535 (INTEL_DEVID(dev_priv) & 0xf) == 0xe))
2536 /* ULX machines are also considered ULT. */
2537 #define IS_BDW_ULX(dev_priv) (IS_BROADWELL(dev_priv) && \
2538 (INTEL_DEVID(dev_priv) & 0xf) == 0xe)
2539 #define IS_BDW_GT3(dev_priv) (IS_BROADWELL(dev_priv) && \
2540 (INTEL_DEVID(dev_priv) & 0x00F0) == 0x0020)
2541 #define IS_HSW_ULT(dev_priv) (IS_HASWELL(dev_priv) && \
2542 (INTEL_DEVID(dev_priv) & 0xFF00) == 0x0A00)
2543 #define IS_HSW_GT3(dev_priv) (IS_HASWELL(dev_priv) && \
2544 (INTEL_DEVID(dev_priv) & 0x00F0) == 0x0020)
2545 /* ULX machines are also considered ULT. */
2546 #define IS_HSW_ULX(dev_priv) (INTEL_DEVID(dev_priv) == 0x0A0E || \
2547 INTEL_DEVID(dev_priv) == 0x0A1E)
2548 #define IS_SKL_ULT(dev_priv) (INTEL_DEVID(dev_priv) == 0x1906 || \
2549 INTEL_DEVID(dev_priv) == 0x1913 || \
2550 INTEL_DEVID(dev_priv) == 0x1916 || \
2551 INTEL_DEVID(dev_priv) == 0x1921 || \
2552 INTEL_DEVID(dev_priv) == 0x1926)
2553 #define IS_SKL_ULX(dev_priv) (INTEL_DEVID(dev_priv) == 0x190E || \
2554 INTEL_DEVID(dev_priv) == 0x1915 || \
2555 INTEL_DEVID(dev_priv) == 0x191E)
2556 #define IS_KBL_ULT(dev_priv) (INTEL_DEVID(dev_priv) == 0x5906 || \
2557 INTEL_DEVID(dev_priv) == 0x5913 || \
2558 INTEL_DEVID(dev_priv) == 0x5916 || \
2559 INTEL_DEVID(dev_priv) == 0x5921 || \
2560 INTEL_DEVID(dev_priv) == 0x5926)
2561 #define IS_KBL_ULX(dev_priv) (INTEL_DEVID(dev_priv) == 0x590E || \
2562 INTEL_DEVID(dev_priv) == 0x5915 || \
2563 INTEL_DEVID(dev_priv) == 0x591E)
2564 #define IS_SKL_GT3(dev_priv) (IS_SKYLAKE(dev_priv) && \
2565 (INTEL_DEVID(dev_priv) & 0x00F0) == 0x0020)
2566 #define IS_SKL_GT4(dev_priv) (IS_SKYLAKE(dev_priv) && \
2567 (INTEL_DEVID(dev_priv) & 0x00F0) == 0x0030)
2568
2569 #define IS_ALPHA_SUPPORT(intel_info) ((intel_info)->is_alpha_support)
2570
2571 #define SKL_REVID_A0 0x0
2572 #define SKL_REVID_B0 0x1
2573 #define SKL_REVID_C0 0x2
2574 #define SKL_REVID_D0 0x3
2575 #define SKL_REVID_E0 0x4
2576 #define SKL_REVID_F0 0x5
2577 #define SKL_REVID_G0 0x6
2578 #define SKL_REVID_H0 0x7
2579
2580 #define IS_SKL_REVID(p, since, until) (IS_SKYLAKE(p) && IS_REVID(p, since, until))
2581
2582 #define BXT_REVID_A0 0x0
2583 #define BXT_REVID_A1 0x1
2584 #define BXT_REVID_B0 0x3
2585 #define BXT_REVID_B_LAST 0x8
2586 #define BXT_REVID_C0 0x9
2587
2588 #define IS_BXT_REVID(dev_priv, since, until) \
2589 (IS_BROXTON(dev_priv) && IS_REVID(dev_priv, since, until))
2590
2591 #define KBL_REVID_A0 0x0
2592 #define KBL_REVID_B0 0x1
2593 #define KBL_REVID_C0 0x2
2594 #define KBL_REVID_D0 0x3
2595 #define KBL_REVID_E0 0x4
2596
2597 #define IS_KBL_REVID(dev_priv, since, until) \
2598 (IS_KABYLAKE(dev_priv) && IS_REVID(dev_priv, since, until))
2599
2600 /*
2601 * The genX designation typically refers to the render engine, so render
2602 * capability related checks should use IS_GEN, while display and other checks
2603 * have their own (e.g. HAS_PCH_SPLIT for ILK+ display, IS_foo for particular
2604 * chips, etc.).
2605 */
2606 #define IS_GEN2(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(1)))
2607 #define IS_GEN3(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(2)))
2608 #define IS_GEN4(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(3)))
2609 #define IS_GEN5(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(4)))
2610 #define IS_GEN6(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(5)))
2611 #define IS_GEN7(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(6)))
2612 #define IS_GEN8(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(7)))
2613 #define IS_GEN9(dev_priv) (!!((dev_priv)->info.gen_mask & BIT(8)))
2614
2615 #define IS_GEN9_LP(dev_priv) (IS_GEN9(dev_priv) && INTEL_INFO(dev_priv)->is_lp)
2616
2617 #define ENGINE_MASK(id) BIT(id)
2618 #define RENDER_RING ENGINE_MASK(RCS)
2619 #define BSD_RING ENGINE_MASK(VCS)
2620 #define BLT_RING ENGINE_MASK(BCS)
2621 #define VEBOX_RING ENGINE_MASK(VECS)
2622 #define BSD2_RING ENGINE_MASK(VCS2)
2623 #define ALL_ENGINES (~0)
2624
2625 #define HAS_ENGINE(dev_priv, id) \
2626 (!!((dev_priv)->info.ring_mask & ENGINE_MASK(id)))
2627
2628 #define HAS_BSD(dev_priv) HAS_ENGINE(dev_priv, VCS)
2629 #define HAS_BSD2(dev_priv) HAS_ENGINE(dev_priv, VCS2)
2630 #define HAS_BLT(dev_priv) HAS_ENGINE(dev_priv, BCS)
2631 #define HAS_VEBOX(dev_priv) HAS_ENGINE(dev_priv, VECS)
2632
2633 #define HAS_LLC(dev_priv) ((dev_priv)->info.has_llc)
2634 #define HAS_SNOOP(dev_priv) ((dev_priv)->info.has_snoop)
2635 #define HAS_EDRAM(dev_priv) (!!((dev_priv)->edram_cap & EDRAM_ENABLED))
2636 #define HAS_WT(dev_priv) ((IS_HASWELL(dev_priv) || \
2637 IS_BROADWELL(dev_priv)) && HAS_EDRAM(dev_priv))
2638
2639 #define HWS_NEEDS_PHYSICAL(dev_priv) ((dev_priv)->info.hws_needs_physical)
2640
2641 #define HAS_HW_CONTEXTS(dev_priv) ((dev_priv)->info.has_hw_contexts)
2642 #define HAS_LOGICAL_RING_CONTEXTS(dev_priv) \
2643 ((dev_priv)->info.has_logical_ring_contexts)
2644 #define USES_PPGTT(dev_priv) (i915.enable_ppgtt)
2645 #define USES_FULL_PPGTT(dev_priv) (i915.enable_ppgtt >= 2)
2646 #define USES_FULL_48BIT_PPGTT(dev_priv) (i915.enable_ppgtt == 3)
2647
2648 #define HAS_OVERLAY(dev_priv) ((dev_priv)->info.has_overlay)
2649 #define OVERLAY_NEEDS_PHYSICAL(dev_priv) \
2650 ((dev_priv)->info.overlay_needs_physical)
2651
2652 /* Early gen2 have a totally busted CS tlb and require pinned batches. */
2653 #define HAS_BROKEN_CS_TLB(dev_priv) (IS_I830(dev_priv) || IS_845G(dev_priv))
2654
2655 /* WaRsDisableCoarsePowerGating:skl,bxt */
2656 #define NEEDS_WaRsDisableCoarsePowerGating(dev_priv) \
2657 (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1) || \
2658 IS_SKL_GT3(dev_priv) || \
2659 IS_SKL_GT4(dev_priv))
2660
2661 /*
2662 * dp aux and gmbus irq on gen4 seems to be able to generate legacy interrupts
2663 * even when in MSI mode. This results in spurious interrupt warnings if the
2664 * legacy irq no. is shared with another device. The kernel then disables that
2665 * interrupt source and so prevents the other device from working properly.
2666 */
2667 #define HAS_AUX_IRQ(dev_priv) ((dev_priv)->info.gen >= 5)
2668 #define HAS_GMBUS_IRQ(dev_priv) ((dev_priv)->info.has_gmbus_irq)
2669
2670 /* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
2671 * rows, which changed the alignment requirements and fence programming.
2672 */
2673 #define HAS_128_BYTE_Y_TILING(dev_priv) (!IS_GEN2(dev_priv) && \
2674 !(IS_I915G(dev_priv) || \
2675 IS_I915GM(dev_priv)))
2676 #define SUPPORTS_TV(dev_priv) ((dev_priv)->info.supports_tv)
2677 #define I915_HAS_HOTPLUG(dev_priv) ((dev_priv)->info.has_hotplug)
2678
2679 #define HAS_FW_BLC(dev_priv) (INTEL_GEN(dev_priv) > 2)
2680 #define HAS_PIPE_CXSR(dev_priv) ((dev_priv)->info.has_pipe_cxsr)
2681 #define HAS_FBC(dev_priv) ((dev_priv)->info.has_fbc)
2682
2683 #define HAS_IPS(dev_priv) (IS_HSW_ULT(dev_priv) || IS_BROADWELL(dev_priv))
2684
2685 #define HAS_DP_MST(dev_priv) ((dev_priv)->info.has_dp_mst)
2686
2687 #define HAS_DDI(dev_priv) ((dev_priv)->info.has_ddi)
2688 #define HAS_FPGA_DBG_UNCLAIMED(dev_priv) ((dev_priv)->info.has_fpga_dbg)
2689 #define HAS_PSR(dev_priv) ((dev_priv)->info.has_psr)
2690 #define HAS_RC6(dev_priv) ((dev_priv)->info.has_rc6)
2691 #define HAS_RC6p(dev_priv) ((dev_priv)->info.has_rc6p)
2692
2693 #define HAS_CSR(dev_priv) ((dev_priv)->info.has_csr)
2694
2695 #define HAS_RUNTIME_PM(dev_priv) ((dev_priv)->info.has_runtime_pm)
2696 #define HAS_64BIT_RELOC(dev_priv) ((dev_priv)->info.has_64bit_reloc)
2697
2698 /*
2699 * For now, anything with a GuC requires uCode loading, and then supports
2700 * command submission once loaded. But these are logically independent
2701 * properties, so we have separate macros to test them.
2702 */
2703 #define HAS_GUC(dev_priv) ((dev_priv)->info.has_guc)
2704 #define HAS_GUC_UCODE(dev_priv) (HAS_GUC(dev_priv))
2705 #define HAS_GUC_SCHED(dev_priv) (HAS_GUC(dev_priv))
2706
2707 #define HAS_RESOURCE_STREAMER(dev_priv) ((dev_priv)->info.has_resource_streamer)
2708
2709 #define HAS_POOLED_EU(dev_priv) ((dev_priv)->info.has_pooled_eu)
2710
2711 #define INTEL_PCH_DEVICE_ID_MASK 0xff00
2712 #define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00
2713 #define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00
2714 #define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00
2715 #define INTEL_PCH_LPT_DEVICE_ID_TYPE 0x8c00
2716 #define INTEL_PCH_LPT_LP_DEVICE_ID_TYPE 0x9c00
2717 #define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100
2718 #define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00
2719 #define INTEL_PCH_KBP_DEVICE_ID_TYPE 0xA200
2720 #define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100
2721 #define INTEL_PCH_P3X_DEVICE_ID_TYPE 0x7000
2722 #define INTEL_PCH_QEMU_DEVICE_ID_TYPE 0x2900 /* qemu q35 has 2918 */
2723
2724 #define INTEL_PCH_TYPE(dev_priv) ((dev_priv)->pch_type)
2725 #define HAS_PCH_KBP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_KBP)
2726 #define HAS_PCH_SPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_SPT)
2727 #define HAS_PCH_LPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_LPT)
2728 #define HAS_PCH_LPT_LP(dev_priv) \
2729 ((dev_priv)->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
2730 #define HAS_PCH_LPT_H(dev_priv) \
2731 ((dev_priv)->pch_id == INTEL_PCH_LPT_DEVICE_ID_TYPE)
2732 #define HAS_PCH_CPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_CPT)
2733 #define HAS_PCH_IBX(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_IBX)
2734 #define HAS_PCH_NOP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_NOP)
2735 #define HAS_PCH_SPLIT(dev_priv) (INTEL_PCH_TYPE(dev_priv) != PCH_NONE)
2736
2737 #define HAS_GMCH_DISPLAY(dev_priv) ((dev_priv)->info.has_gmch_display)
2738
2739 #define HAS_LSPCON(dev_priv) (IS_GEN9(dev_priv))
2740
2741 /* DPF == dynamic parity feature */
2742 #define HAS_L3_DPF(dev_priv) ((dev_priv)->info.has_l3_dpf)
2743 #define NUM_L3_SLICES(dev_priv) (IS_HSW_GT3(dev_priv) ? \
2744 2 : HAS_L3_DPF(dev_priv))
2745
2746 #define GT_FREQUENCY_MULTIPLIER 50
2747 #define GEN9_FREQ_SCALER 3
2748
2749 #define HAS_DECOUPLED_MMIO(dev_priv) (INTEL_INFO(dev_priv)->has_decoupled_mmio)
2750
2751 #include "i915_trace.h"
2752
2753 static inline bool intel_scanout_needs_vtd_wa(struct drm_i915_private *dev_priv)
2754 {
2755 #ifdef CONFIG_INTEL_IOMMU
2756 if (INTEL_GEN(dev_priv) >= 6 && intel_iommu_gfx_mapped)
2757 return true;
2758 #endif
2759 return false;
2760 }
2761
2762 extern int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state);
2763 extern int i915_resume_switcheroo(struct drm_device *dev);
2764
2765 int intel_sanitize_enable_ppgtt(struct drm_i915_private *dev_priv,
2766 int enable_ppgtt);
2767
2768 bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value);
2769
2770 /* i915_drv.c */
2771 void __printf(3, 4)
2772 __i915_printk(struct drm_i915_private *dev_priv, const char *level,
2773 const char *fmt, ...);
2774
2775 #define i915_report_error(dev_priv, fmt, ...) \
2776 __i915_printk(dev_priv, KERN_ERR, fmt, ##__VA_ARGS__)
2777
2778 #ifdef CONFIG_COMPAT
2779 extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
2780 unsigned long arg);
2781 #else
2782 #define i915_compat_ioctl NULL
2783 #endif
2784 extern const struct dev_pm_ops i915_pm_ops;
2785
2786 extern int i915_driver_load(struct pci_dev *pdev,
2787 const struct pci_device_id *ent);
2788 extern void i915_driver_unload(struct drm_device *dev);
2789 extern int intel_gpu_reset(struct drm_i915_private *dev_priv, u32 engine_mask);
2790 extern bool intel_has_gpu_reset(struct drm_i915_private *dev_priv);
2791 extern void i915_reset(struct drm_i915_private *dev_priv);
2792 extern int intel_guc_reset(struct drm_i915_private *dev_priv);
2793 extern void intel_engine_init_hangcheck(struct intel_engine_cs *engine);
2794 extern void intel_hangcheck_init(struct drm_i915_private *dev_priv);
2795 extern unsigned long i915_chipset_val(struct drm_i915_private *dev_priv);
2796 extern unsigned long i915_mch_val(struct drm_i915_private *dev_priv);
2797 extern unsigned long i915_gfx_val(struct drm_i915_private *dev_priv);
2798 extern void i915_update_gfx_val(struct drm_i915_private *dev_priv);
2799 int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool on);
2800
2801 /* intel_hotplug.c */
2802 void intel_hpd_irq_handler(struct drm_i915_private *dev_priv,
2803 u32 pin_mask, u32 long_mask);
2804 void intel_hpd_init(struct drm_i915_private *dev_priv);
2805 void intel_hpd_init_work(struct drm_i915_private *dev_priv);
2806 void intel_hpd_cancel_work(struct drm_i915_private *dev_priv);
2807 bool intel_hpd_pin_to_port(enum hpd_pin pin, enum port *port);
2808 bool intel_hpd_disable(struct drm_i915_private *dev_priv, enum hpd_pin pin);
2809 void intel_hpd_enable(struct drm_i915_private *dev_priv, enum hpd_pin pin);
2810
2811 /* i915_irq.c */
2812 static inline void i915_queue_hangcheck(struct drm_i915_private *dev_priv)
2813 {
2814 unsigned long delay;
2815
2816 if (unlikely(!i915.enable_hangcheck))
2817 return;
2818
2819 /* Don't continually defer the hangcheck so that it is always run at
2820 * least once after work has been scheduled on any ring. Otherwise,
2821 * we will ignore a hung ring if a second ring is kept busy.
2822 */
2823
2824 delay = round_jiffies_up_relative(DRM_I915_HANGCHECK_JIFFIES);
2825 queue_delayed_work(system_long_wq,
2826 &dev_priv->gpu_error.hangcheck_work, delay);
2827 }
2828
2829 __printf(3, 4)
2830 void i915_handle_error(struct drm_i915_private *dev_priv,
2831 u32 engine_mask,
2832 const char *fmt, ...);
2833
2834 extern void intel_irq_init(struct drm_i915_private *dev_priv);
2835 int intel_irq_install(struct drm_i915_private *dev_priv);
2836 void intel_irq_uninstall(struct drm_i915_private *dev_priv);
2837
2838 extern void intel_uncore_sanitize(struct drm_i915_private *dev_priv);
2839 extern void intel_uncore_early_sanitize(struct drm_i915_private *dev_priv,
2840 bool restore_forcewake);
2841 extern void intel_uncore_init(struct drm_i915_private *dev_priv);
2842 extern bool intel_uncore_unclaimed_mmio(struct drm_i915_private *dev_priv);
2843 extern bool intel_uncore_arm_unclaimed_mmio_detection(struct drm_i915_private *dev_priv);
2844 extern void intel_uncore_fini(struct drm_i915_private *dev_priv);
2845 extern void intel_uncore_forcewake_reset(struct drm_i915_private *dev_priv,
2846 bool restore);
2847 const char *intel_uncore_forcewake_domain_to_str(const enum forcewake_domain_id id);
2848 void intel_uncore_forcewake_get(struct drm_i915_private *dev_priv,
2849 enum forcewake_domains domains);
2850 void intel_uncore_forcewake_put(struct drm_i915_private *dev_priv,
2851 enum forcewake_domains domains);
2852 /* Like above but the caller must manage the uncore.lock itself.
2853 * Must be used with I915_READ_FW and friends.
2854 */
2855 void intel_uncore_forcewake_get__locked(struct drm_i915_private *dev_priv,
2856 enum forcewake_domains domains);
2857 void intel_uncore_forcewake_put__locked(struct drm_i915_private *dev_priv,
2858 enum forcewake_domains domains);
2859 u64 intel_uncore_edram_size(struct drm_i915_private *dev_priv);
2860
2861 void assert_forcewakes_inactive(struct drm_i915_private *dev_priv);
2862
2863 int intel_wait_for_register(struct drm_i915_private *dev_priv,
2864 i915_reg_t reg,
2865 const u32 mask,
2866 const u32 value,
2867 const unsigned long timeout_ms);
2868 int intel_wait_for_register_fw(struct drm_i915_private *dev_priv,
2869 i915_reg_t reg,
2870 const u32 mask,
2871 const u32 value,
2872 const unsigned long timeout_ms);
2873
2874 static inline bool intel_gvt_active(struct drm_i915_private *dev_priv)
2875 {
2876 return dev_priv->gvt;
2877 }
2878
2879 static inline bool intel_vgpu_active(struct drm_i915_private *dev_priv)
2880 {
2881 return dev_priv->vgpu.active;
2882 }
2883
2884 void
2885 i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
2886 u32 status_mask);
2887
2888 void
2889 i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
2890 u32 status_mask);
2891
2892 void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv);
2893 void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv);
2894 void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
2895 uint32_t mask,
2896 uint32_t bits);
2897 void ilk_update_display_irq(struct drm_i915_private *dev_priv,
2898 uint32_t interrupt_mask,
2899 uint32_t enabled_irq_mask);
2900 static inline void
2901 ilk_enable_display_irq(struct drm_i915_private *dev_priv, uint32_t bits)
2902 {
2903 ilk_update_display_irq(dev_priv, bits, bits);
2904 }
2905 static inline void
2906 ilk_disable_display_irq(struct drm_i915_private *dev_priv, uint32_t bits)
2907 {
2908 ilk_update_display_irq(dev_priv, bits, 0);
2909 }
2910 void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
2911 enum pipe pipe,
2912 uint32_t interrupt_mask,
2913 uint32_t enabled_irq_mask);
2914 static inline void bdw_enable_pipe_irq(struct drm_i915_private *dev_priv,
2915 enum pipe pipe, uint32_t bits)
2916 {
2917 bdw_update_pipe_irq(dev_priv, pipe, bits, bits);
2918 }
2919 static inline void bdw_disable_pipe_irq(struct drm_i915_private *dev_priv,
2920 enum pipe pipe, uint32_t bits)
2921 {
2922 bdw_update_pipe_irq(dev_priv, pipe, bits, 0);
2923 }
2924 void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
2925 uint32_t interrupt_mask,
2926 uint32_t enabled_irq_mask);
2927 static inline void
2928 ibx_enable_display_interrupt(struct drm_i915_private *dev_priv, uint32_t bits)
2929 {
2930 ibx_display_interrupt_update(dev_priv, bits, bits);
2931 }
2932 static inline void
2933 ibx_disable_display_interrupt(struct drm_i915_private *dev_priv, uint32_t bits)
2934 {
2935 ibx_display_interrupt_update(dev_priv, bits, 0);
2936 }
2937
2938 /* i915_gem.c */
2939 int i915_gem_create_ioctl(struct drm_device *dev, void *data,
2940 struct drm_file *file_priv);
2941 int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
2942 struct drm_file *file_priv);
2943 int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
2944 struct drm_file *file_priv);
2945 int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
2946 struct drm_file *file_priv);
2947 int i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2948 struct drm_file *file_priv);
2949 int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
2950 struct drm_file *file_priv);
2951 int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
2952 struct drm_file *file_priv);
2953 int i915_gem_execbuffer(struct drm_device *dev, void *data,
2954 struct drm_file *file_priv);
2955 int i915_gem_execbuffer2(struct drm_device *dev, void *data,
2956 struct drm_file *file_priv);
2957 int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
2958 struct drm_file *file_priv);
2959 int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
2960 struct drm_file *file);
2961 int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
2962 struct drm_file *file);
2963 int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
2964 struct drm_file *file_priv);
2965 int i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
2966 struct drm_file *file_priv);
2967 int i915_gem_set_tiling(struct drm_device *dev, void *data,
2968 struct drm_file *file_priv);
2969 int i915_gem_get_tiling(struct drm_device *dev, void *data,
2970 struct drm_file *file_priv);
2971 void i915_gem_init_userptr(struct drm_i915_private *dev_priv);
2972 int i915_gem_userptr_ioctl(struct drm_device *dev, void *data,
2973 struct drm_file *file);
2974 int i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
2975 struct drm_file *file_priv);
2976 int i915_gem_wait_ioctl(struct drm_device *dev, void *data,
2977 struct drm_file *file_priv);
2978 int i915_gem_load_init(struct drm_device *dev);
2979 void i915_gem_load_cleanup(struct drm_device *dev);
2980 void i915_gem_load_init_fences(struct drm_i915_private *dev_priv);
2981 int i915_gem_freeze(struct drm_i915_private *dev_priv);
2982 int i915_gem_freeze_late(struct drm_i915_private *dev_priv);
2983
2984 void *i915_gem_object_alloc(struct drm_i915_private *dev_priv);
2985 void i915_gem_object_free(struct drm_i915_gem_object *obj);
2986 void i915_gem_object_init(struct drm_i915_gem_object *obj,
2987 const struct drm_i915_gem_object_ops *ops);
2988 struct drm_i915_gem_object *
2989 i915_gem_object_create(struct drm_i915_private *dev_priv, u64 size);
2990 struct drm_i915_gem_object *
2991 i915_gem_object_create_from_data(struct drm_i915_private *dev_priv,
2992 const void *data, size_t size);
2993 void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file);
2994 void i915_gem_free_object(struct drm_gem_object *obj);
2995
2996 struct i915_vma * __must_check
2997 i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
2998 const struct i915_ggtt_view *view,
2999 u64 size,
3000 u64 alignment,
3001 u64 flags);
3002
3003 int i915_gem_object_unbind(struct drm_i915_gem_object *obj);
3004 void i915_gem_release_mmap(struct drm_i915_gem_object *obj);
3005
3006 void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv);
3007
3008 static inline int __sg_page_count(const struct scatterlist *sg)
3009 {
3010 return sg->length >> PAGE_SHIFT;
3011 }
3012
3013 struct scatterlist *
3014 i915_gem_object_get_sg(struct drm_i915_gem_object *obj,
3015 unsigned int n, unsigned int *offset);
3016
3017 struct page *
3018 i915_gem_object_get_page(struct drm_i915_gem_object *obj,
3019 unsigned int n);
3020
3021 struct page *
3022 i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj,
3023 unsigned int n);
3024
3025 dma_addr_t
3026 i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
3027 unsigned long n);
3028
3029 void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj,
3030 struct sg_table *pages);
3031 int __i915_gem_object_get_pages(struct drm_i915_gem_object *obj);
3032
3033 static inline int __must_check
3034 i915_gem_object_pin_pages(struct drm_i915_gem_object *obj)
3035 {
3036 might_lock(&obj->mm.lock);
3037
3038 if (atomic_inc_not_zero(&obj->mm.pages_pin_count))
3039 return 0;
3040
3041 return __i915_gem_object_get_pages(obj);
3042 }
3043
3044 static inline void
3045 __i915_gem_object_pin_pages(struct drm_i915_gem_object *obj)
3046 {
3047 GEM_BUG_ON(!obj->mm.pages);
3048
3049 atomic_inc(&obj->mm.pages_pin_count);
3050 }
3051
3052 static inline bool
3053 i915_gem_object_has_pinned_pages(struct drm_i915_gem_object *obj)
3054 {
3055 return atomic_read(&obj->mm.pages_pin_count);
3056 }
3057
3058 static inline void
3059 __i915_gem_object_unpin_pages(struct drm_i915_gem_object *obj)
3060 {
3061 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
3062 GEM_BUG_ON(!obj->mm.pages);
3063
3064 atomic_dec(&obj->mm.pages_pin_count);
3065 GEM_BUG_ON(atomic_read(&obj->mm.pages_pin_count) < obj->bind_count);
3066 }
3067
3068 static inline void
3069 i915_gem_object_unpin_pages(struct drm_i915_gem_object *obj)
3070 {
3071 __i915_gem_object_unpin_pages(obj);
3072 }
3073
3074 enum i915_mm_subclass { /* lockdep subclass for obj->mm.lock */
3075 I915_MM_NORMAL = 0,
3076 I915_MM_SHRINKER
3077 };
3078
3079 void __i915_gem_object_put_pages(struct drm_i915_gem_object *obj,
3080 enum i915_mm_subclass subclass);
3081 void __i915_gem_object_invalidate(struct drm_i915_gem_object *obj);
3082
3083 enum i915_map_type {
3084 I915_MAP_WB = 0,
3085 I915_MAP_WC,
3086 };
3087
3088 /**
3089 * i915_gem_object_pin_map - return a contiguous mapping of the entire object
3090 * @obj - the object to map into kernel address space
3091 * @type - the type of mapping, used to select pgprot_t
3092 *
3093 * Calls i915_gem_object_pin_pages() to prevent reaping of the object's
3094 * pages and then returns a contiguous mapping of the backing storage into
3095 * the kernel address space. Based on the @type of mapping, the PTE will be
3096 * set to either WriteBack or WriteCombine (via pgprot_t).
3097 *
3098 * The caller is responsible for calling i915_gem_object_unpin_map() when the
3099 * mapping is no longer required.
3100 *
3101 * Returns the pointer through which to access the mapped object, or an
3102 * ERR_PTR() on error.
3103 */
3104 void *__must_check i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
3105 enum i915_map_type type);
3106
3107 /**
3108 * i915_gem_object_unpin_map - releases an earlier mapping
3109 * @obj - the object to unmap
3110 *
3111 * After pinning the object and mapping its pages, once you are finished
3112 * with your access, call i915_gem_object_unpin_map() to release the pin
3113 * upon the mapping. Once the pin count reaches zero, that mapping may be
3114 * removed.
3115 */
3116 static inline void i915_gem_object_unpin_map(struct drm_i915_gem_object *obj)
3117 {
3118 i915_gem_object_unpin_pages(obj);
3119 }
3120
3121 int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
3122 unsigned int *needs_clflush);
3123 int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
3124 unsigned int *needs_clflush);
3125 #define CLFLUSH_BEFORE 0x1
3126 #define CLFLUSH_AFTER 0x2
3127 #define CLFLUSH_FLAGS (CLFLUSH_BEFORE | CLFLUSH_AFTER)
3128
3129 static inline void
3130 i915_gem_obj_finish_shmem_access(struct drm_i915_gem_object *obj)
3131 {
3132 i915_gem_object_unpin_pages(obj);
3133 }
3134
3135 int __must_check i915_mutex_lock_interruptible(struct drm_device *dev);
3136 void i915_vma_move_to_active(struct i915_vma *vma,
3137 struct drm_i915_gem_request *req,
3138 unsigned int flags);
3139 int i915_gem_dumb_create(struct drm_file *file_priv,
3140 struct drm_device *dev,
3141 struct drm_mode_create_dumb *args);
3142 int i915_gem_mmap_gtt(struct drm_file *file_priv, struct drm_device *dev,
3143 uint32_t handle, uint64_t *offset);
3144 int i915_gem_mmap_gtt_version(void);
3145
3146 void i915_gem_track_fb(struct drm_i915_gem_object *old,
3147 struct drm_i915_gem_object *new,
3148 unsigned frontbuffer_bits);
3149
3150 int __must_check i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno);
3151
3152 struct drm_i915_gem_request *
3153 i915_gem_find_active_request(struct intel_engine_cs *engine);
3154
3155 void i915_gem_retire_requests(struct drm_i915_private *dev_priv);
3156
3157 static inline bool i915_reset_in_progress(struct i915_gpu_error *error)
3158 {
3159 return unlikely(test_bit(I915_RESET_IN_PROGRESS, &error->flags));
3160 }
3161
3162 static inline bool i915_terminally_wedged(struct i915_gpu_error *error)
3163 {
3164 return unlikely(test_bit(I915_WEDGED, &error->flags));
3165 }
3166
3167 static inline bool i915_reset_in_progress_or_wedged(struct i915_gpu_error *error)
3168 {
3169 return i915_reset_in_progress(error) | i915_terminally_wedged(error);
3170 }
3171
3172 static inline u32 i915_reset_count(struct i915_gpu_error *error)
3173 {
3174 return READ_ONCE(error->reset_count);
3175 }
3176
3177 void i915_gem_reset(struct drm_i915_private *dev_priv);
3178 void i915_gem_set_wedged(struct drm_i915_private *dev_priv);
3179 void i915_gem_clflush_object(struct drm_i915_gem_object *obj, bool force);
3180 int __must_check i915_gem_init(struct drm_device *dev);
3181 int __must_check i915_gem_init_hw(struct drm_device *dev);
3182 void i915_gem_init_swizzling(struct drm_i915_private *dev_priv);
3183 void i915_gem_cleanup_engines(struct drm_device *dev);
3184 int __must_check i915_gem_wait_for_idle(struct drm_i915_private *dev_priv,
3185 unsigned int flags);
3186 int __must_check i915_gem_suspend(struct drm_device *dev);
3187 void i915_gem_resume(struct drm_device *dev);
3188 int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
3189 int i915_gem_object_wait(struct drm_i915_gem_object *obj,
3190 unsigned int flags,
3191 long timeout,
3192 struct intel_rps_client *rps);
3193 int i915_gem_object_wait_priority(struct drm_i915_gem_object *obj,
3194 unsigned int flags,
3195 int priority);
3196 #define I915_PRIORITY_DISPLAY I915_PRIORITY_MAX
3197
3198 int __must_check
3199 i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj,
3200 bool write);
3201 int __must_check
3202 i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write);
3203 struct i915_vma * __must_check
3204 i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3205 u32 alignment,
3206 const struct i915_ggtt_view *view);
3207 void i915_gem_object_unpin_from_display_plane(struct i915_vma *vma);
3208 int i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
3209 int align);
3210 int i915_gem_open(struct drm_device *dev, struct drm_file *file);
3211 void i915_gem_release(struct drm_device *dev, struct drm_file *file);
3212
3213 u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv, u64 size,
3214 int tiling_mode);
3215 u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size,
3216 int tiling_mode, bool fenced);
3217
3218 int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3219 enum i915_cache_level cache_level);
3220
3221 struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
3222 struct dma_buf *dma_buf);
3223
3224 struct dma_buf *i915_gem_prime_export(struct drm_device *dev,
3225 struct drm_gem_object *gem_obj, int flags);
3226
3227 struct i915_vma *
3228 i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
3229 struct i915_address_space *vm,
3230 const struct i915_ggtt_view *view);
3231
3232 struct i915_vma *
3233 i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3234 struct i915_address_space *vm,
3235 const struct i915_ggtt_view *view);
3236
3237 static inline struct i915_hw_ppgtt *
3238 i915_vm_to_ppgtt(struct i915_address_space *vm)
3239 {
3240 return container_of(vm, struct i915_hw_ppgtt, base);
3241 }
3242
3243 static inline struct i915_vma *
3244 i915_gem_object_to_ggtt(struct drm_i915_gem_object *obj,
3245 const struct i915_ggtt_view *view)
3246 {
3247 return i915_gem_obj_to_vma(obj, &to_i915(obj->base.dev)->ggtt.base, view);
3248 }
3249
3250 static inline unsigned long
3251 i915_gem_object_ggtt_offset(struct drm_i915_gem_object *o,
3252 const struct i915_ggtt_view *view)
3253 {
3254 return i915_ggtt_offset(i915_gem_object_to_ggtt(o, view));
3255 }
3256
3257 /* i915_gem_fence_reg.c */
3258 int __must_check i915_vma_get_fence(struct i915_vma *vma);
3259 int __must_check i915_vma_put_fence(struct i915_vma *vma);
3260
3261 void i915_gem_restore_fences(struct drm_i915_private *dev_priv);
3262
3263 void i915_gem_detect_bit_6_swizzle(struct drm_i915_private *dev_priv);
3264 void i915_gem_object_do_bit_17_swizzle(struct drm_i915_gem_object *obj,
3265 struct sg_table *pages);
3266 void i915_gem_object_save_bit_17_swizzle(struct drm_i915_gem_object *obj,
3267 struct sg_table *pages);
3268
3269 /* i915_gem_context.c */
3270 int __must_check i915_gem_context_init(struct drm_device *dev);
3271 void i915_gem_context_lost(struct drm_i915_private *dev_priv);
3272 void i915_gem_context_fini(struct drm_device *dev);
3273 int i915_gem_context_open(struct drm_device *dev, struct drm_file *file);
3274 void i915_gem_context_close(struct drm_device *dev, struct drm_file *file);
3275 int i915_switch_context(struct drm_i915_gem_request *req);
3276 int i915_gem_switch_to_kernel_context(struct drm_i915_private *dev_priv);
3277 struct i915_vma *
3278 i915_gem_context_pin_legacy(struct i915_gem_context *ctx,
3279 unsigned int flags);
3280 void i915_gem_context_free(struct kref *ctx_ref);
3281 struct i915_gem_context *
3282 i915_gem_context_create_gvt(struct drm_device *dev);
3283
3284 static inline struct i915_gem_context *
3285 i915_gem_context_lookup(struct drm_i915_file_private *file_priv, u32 id)
3286 {
3287 struct i915_gem_context *ctx;
3288
3289 lockdep_assert_held(&file_priv->dev_priv->drm.struct_mutex);
3290
3291 ctx = idr_find(&file_priv->context_idr, id);
3292 if (!ctx)
3293 return ERR_PTR(-ENOENT);
3294
3295 return ctx;
3296 }
3297
3298 static inline struct i915_gem_context *
3299 i915_gem_context_get(struct i915_gem_context *ctx)
3300 {
3301 kref_get(&ctx->ref);
3302 return ctx;
3303 }
3304
3305 static inline void i915_gem_context_put(struct i915_gem_context *ctx)
3306 {
3307 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
3308 kref_put(&ctx->ref, i915_gem_context_free);
3309 }
3310
3311 static inline struct intel_timeline *
3312 i915_gem_context_lookup_timeline(struct i915_gem_context *ctx,
3313 struct intel_engine_cs *engine)
3314 {
3315 struct i915_address_space *vm;
3316
3317 vm = ctx->ppgtt ? &ctx->ppgtt->base : &ctx->i915->ggtt.base;
3318 return &vm->timeline.engine[engine->id];
3319 }
3320
3321 static inline bool i915_gem_context_is_default(const struct i915_gem_context *c)
3322 {
3323 return c->user_handle == DEFAULT_CONTEXT_HANDLE;
3324 }
3325
3326 int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
3327 struct drm_file *file);
3328 int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
3329 struct drm_file *file);
3330 int i915_gem_context_getparam_ioctl(struct drm_device *dev, void *data,
3331 struct drm_file *file_priv);
3332 int i915_gem_context_setparam_ioctl(struct drm_device *dev, void *data,
3333 struct drm_file *file_priv);
3334 int i915_gem_context_reset_stats_ioctl(struct drm_device *dev, void *data,
3335 struct drm_file *file);
3336
3337 int i915_perf_open_ioctl(struct drm_device *dev, void *data,
3338 struct drm_file *file);
3339
3340 /* i915_gem_evict.c */
3341 int __must_check i915_gem_evict_something(struct i915_address_space *vm,
3342 u64 min_size, u64 alignment,
3343 unsigned cache_level,
3344 u64 start, u64 end,
3345 unsigned flags);
3346 int __must_check i915_gem_evict_for_vma(struct i915_vma *target);
3347 int i915_gem_evict_vm(struct i915_address_space *vm, bool do_idle);
3348
3349 /* belongs in i915_gem_gtt.h */
3350 static inline void i915_gem_chipset_flush(struct drm_i915_private *dev_priv)
3351 {
3352 wmb();
3353 if (INTEL_GEN(dev_priv) < 6)
3354 intel_gtt_chipset_flush();
3355 }
3356
3357 /* i915_gem_stolen.c */
3358 int i915_gem_stolen_insert_node(struct drm_i915_private *dev_priv,
3359 struct drm_mm_node *node, u64 size,
3360 unsigned alignment);
3361 int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *dev_priv,
3362 struct drm_mm_node *node, u64 size,
3363 unsigned alignment, u64 start,
3364 u64 end);
3365 void i915_gem_stolen_remove_node(struct drm_i915_private *dev_priv,
3366 struct drm_mm_node *node);
3367 int i915_gem_init_stolen(struct drm_i915_private *dev_priv);
3368 void i915_gem_cleanup_stolen(struct drm_device *dev);
3369 struct drm_i915_gem_object *
3370 i915_gem_object_create_stolen(struct drm_i915_private *dev_priv, u32 size);
3371 struct drm_i915_gem_object *
3372 i915_gem_object_create_stolen_for_preallocated(struct drm_i915_private *dev_priv,
3373 u32 stolen_offset,
3374 u32 gtt_offset,
3375 u32 size);
3376
3377 /* i915_gem_internal.c */
3378 struct drm_i915_gem_object *
3379 i915_gem_object_create_internal(struct drm_i915_private *dev_priv,
3380 unsigned int size);
3381
3382 /* i915_gem_shrinker.c */
3383 unsigned long i915_gem_shrink(struct drm_i915_private *dev_priv,
3384 unsigned long target,
3385 unsigned flags);
3386 #define I915_SHRINK_PURGEABLE 0x1
3387 #define I915_SHRINK_UNBOUND 0x2
3388 #define I915_SHRINK_BOUND 0x4
3389 #define I915_SHRINK_ACTIVE 0x8
3390 #define I915_SHRINK_VMAPS 0x10
3391 unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
3392 void i915_gem_shrinker_init(struct drm_i915_private *dev_priv);
3393 void i915_gem_shrinker_cleanup(struct drm_i915_private *dev_priv);
3394
3395
3396 /* i915_gem_tiling.c */
3397 static inline bool i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
3398 {
3399 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
3400
3401 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
3402 i915_gem_object_is_tiled(obj);
3403 }
3404
3405 /* i915_debugfs.c */
3406 #ifdef CONFIG_DEBUG_FS
3407 int i915_debugfs_register(struct drm_i915_private *dev_priv);
3408 void i915_debugfs_unregister(struct drm_i915_private *dev_priv);
3409 int i915_debugfs_connector_add(struct drm_connector *connector);
3410 void intel_display_crc_init(struct drm_i915_private *dev_priv);
3411 #else
3412 static inline int i915_debugfs_register(struct drm_i915_private *dev_priv) {return 0;}
3413 static inline void i915_debugfs_unregister(struct drm_i915_private *dev_priv) {}
3414 static inline int i915_debugfs_connector_add(struct drm_connector *connector)
3415 { return 0; }
3416 static inline void intel_display_crc_init(struct drm_i915_private *dev_priv) {}
3417 #endif
3418
3419 /* i915_gpu_error.c */
3420 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
3421
3422 __printf(2, 3)
3423 void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
3424 int i915_error_state_to_str(struct drm_i915_error_state_buf *estr,
3425 const struct i915_error_state_file_priv *error);
3426 int i915_error_state_buf_init(struct drm_i915_error_state_buf *eb,
3427 struct drm_i915_private *i915,
3428 size_t count, loff_t pos);
3429 static inline void i915_error_state_buf_release(
3430 struct drm_i915_error_state_buf *eb)
3431 {
3432 kfree(eb->buf);
3433 }
3434 void i915_capture_error_state(struct drm_i915_private *dev_priv,
3435 u32 engine_mask,
3436 const char *error_msg);
3437 void i915_error_state_get(struct drm_device *dev,
3438 struct i915_error_state_file_priv *error_priv);
3439 void i915_error_state_put(struct i915_error_state_file_priv *error_priv);
3440 void i915_destroy_error_state(struct drm_device *dev);
3441
3442 #else
3443
3444 static inline void i915_capture_error_state(struct drm_i915_private *dev_priv,
3445 u32 engine_mask,
3446 const char *error_msg)
3447 {
3448 }
3449
3450 static inline void i915_destroy_error_state(struct drm_device *dev)
3451 {
3452 }
3453
3454 #endif
3455
3456 const char *i915_cache_level_str(struct drm_i915_private *i915, int type);
3457
3458 /* i915_cmd_parser.c */
3459 int i915_cmd_parser_get_version(struct drm_i915_private *dev_priv);
3460 void intel_engine_init_cmd_parser(struct intel_engine_cs *engine);
3461 void intel_engine_cleanup_cmd_parser(struct intel_engine_cs *engine);
3462 int intel_engine_cmd_parser(struct intel_engine_cs *engine,
3463 struct drm_i915_gem_object *batch_obj,
3464 struct drm_i915_gem_object *shadow_batch_obj,
3465 u32 batch_start_offset,
3466 u32 batch_len,
3467 bool is_master);
3468
3469 /* i915_perf.c */
3470 extern void i915_perf_init(struct drm_i915_private *dev_priv);
3471 extern void i915_perf_fini(struct drm_i915_private *dev_priv);
3472 extern void i915_perf_register(struct drm_i915_private *dev_priv);
3473 extern void i915_perf_unregister(struct drm_i915_private *dev_priv);
3474
3475 /* i915_suspend.c */
3476 extern int i915_save_state(struct drm_device *dev);
3477 extern int i915_restore_state(struct drm_device *dev);
3478
3479 /* i915_sysfs.c */
3480 void i915_setup_sysfs(struct drm_i915_private *dev_priv);
3481 void i915_teardown_sysfs(struct drm_i915_private *dev_priv);
3482
3483 /* intel_i2c.c */
3484 extern int intel_setup_gmbus(struct drm_device *dev);
3485 extern void intel_teardown_gmbus(struct drm_device *dev);
3486 extern bool intel_gmbus_is_valid_pin(struct drm_i915_private *dev_priv,
3487 unsigned int pin);
3488
3489 extern struct i2c_adapter *
3490 intel_gmbus_get_adapter(struct drm_i915_private *dev_priv, unsigned int pin);
3491 extern void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed);
3492 extern void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit);
3493 static inline bool intel_gmbus_is_forced_bit(struct i2c_adapter *adapter)
3494 {
3495 return container_of(adapter, struct intel_gmbus, adapter)->force_bit;
3496 }
3497 extern void intel_i2c_reset(struct drm_device *dev);
3498
3499 /* intel_bios.c */
3500 int intel_bios_init(struct drm_i915_private *dev_priv);
3501 bool intel_bios_is_valid_vbt(const void *buf, size_t size);
3502 bool intel_bios_is_tv_present(struct drm_i915_private *dev_priv);
3503 bool intel_bios_is_lvds_present(struct drm_i915_private *dev_priv, u8 *i2c_pin);
3504 bool intel_bios_is_port_present(struct drm_i915_private *dev_priv, enum port port);
3505 bool intel_bios_is_port_edp(struct drm_i915_private *dev_priv, enum port port);
3506 bool intel_bios_is_port_dp_dual_mode(struct drm_i915_private *dev_priv, enum port port);
3507 bool intel_bios_is_dsi_present(struct drm_i915_private *dev_priv, enum port *port);
3508 bool intel_bios_is_port_hpd_inverted(struct drm_i915_private *dev_priv,
3509 enum port port);
3510 bool intel_bios_is_lspcon_present(struct drm_i915_private *dev_priv,
3511 enum port port);
3512
3513
3514 /* intel_opregion.c */
3515 #ifdef CONFIG_ACPI
3516 extern int intel_opregion_setup(struct drm_i915_private *dev_priv);
3517 extern void intel_opregion_register(struct drm_i915_private *dev_priv);
3518 extern void intel_opregion_unregister(struct drm_i915_private *dev_priv);
3519 extern void intel_opregion_asle_intr(struct drm_i915_private *dev_priv);
3520 extern int intel_opregion_notify_encoder(struct intel_encoder *intel_encoder,
3521 bool enable);
3522 extern int intel_opregion_notify_adapter(struct drm_i915_private *dev_priv,
3523 pci_power_t state);
3524 extern int intel_opregion_get_panel_type(struct drm_i915_private *dev_priv);
3525 #else
3526 static inline int intel_opregion_setup(struct drm_i915_private *dev) { return 0; }
3527 static inline void intel_opregion_register(struct drm_i915_private *dev_priv) { }
3528 static inline void intel_opregion_unregister(struct drm_i915_private *dev_priv) { }
3529 static inline void intel_opregion_asle_intr(struct drm_i915_private *dev_priv)
3530 {
3531 }
3532 static inline int
3533 intel_opregion_notify_encoder(struct intel_encoder *intel_encoder, bool enable)
3534 {
3535 return 0;
3536 }
3537 static inline int
3538 intel_opregion_notify_adapter(struct drm_i915_private *dev, pci_power_t state)
3539 {
3540 return 0;
3541 }
3542 static inline int intel_opregion_get_panel_type(struct drm_i915_private *dev)
3543 {
3544 return -ENODEV;
3545 }
3546 #endif
3547
3548 /* intel_acpi.c */
3549 #ifdef CONFIG_ACPI
3550 extern void intel_register_dsm_handler(void);
3551 extern void intel_unregister_dsm_handler(void);
3552 #else
3553 static inline void intel_register_dsm_handler(void) { return; }
3554 static inline void intel_unregister_dsm_handler(void) { return; }
3555 #endif /* CONFIG_ACPI */
3556
3557 /* intel_device_info.c */
3558 static inline struct intel_device_info *
3559 mkwrite_device_info(struct drm_i915_private *dev_priv)
3560 {
3561 return (struct intel_device_info *)&dev_priv->info;
3562 }
3563
3564 void intel_device_info_runtime_init(struct drm_i915_private *dev_priv);
3565 void intel_device_info_dump(struct drm_i915_private *dev_priv);
3566
3567 /* modesetting */
3568 extern void intel_modeset_init_hw(struct drm_device *dev);
3569 extern int intel_modeset_init(struct drm_device *dev);
3570 extern void intel_modeset_gem_init(struct drm_device *dev);
3571 extern void intel_modeset_cleanup(struct drm_device *dev);
3572 extern int intel_connector_register(struct drm_connector *);
3573 extern void intel_connector_unregister(struct drm_connector *);
3574 extern int intel_modeset_vga_set_state(struct drm_i915_private *dev_priv,
3575 bool state);
3576 extern void intel_display_resume(struct drm_device *dev);
3577 extern void i915_redisable_vga(struct drm_i915_private *dev_priv);
3578 extern void i915_redisable_vga_power_on(struct drm_i915_private *dev_priv);
3579 extern bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val);
3580 extern void intel_init_pch_refclk(struct drm_i915_private *dev_priv);
3581 extern void intel_set_rps(struct drm_i915_private *dev_priv, u8 val);
3582 extern void intel_set_memory_cxsr(struct drm_i915_private *dev_priv,
3583 bool enable);
3584
3585 int i915_reg_read_ioctl(struct drm_device *dev, void *data,
3586 struct drm_file *file);
3587
3588 /* overlay */
3589 extern struct intel_overlay_error_state *
3590 intel_overlay_capture_error_state(struct drm_i915_private *dev_priv);
3591 extern void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e,
3592 struct intel_overlay_error_state *error);
3593
3594 extern struct intel_display_error_state *
3595 intel_display_capture_error_state(struct drm_i915_private *dev_priv);
3596 extern void intel_display_print_error_state(struct drm_i915_error_state_buf *e,
3597 struct drm_i915_private *dev_priv,
3598 struct intel_display_error_state *error);
3599
3600 int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val);
3601 int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val);
3602
3603 /* intel_sideband.c */
3604 u32 vlv_punit_read(struct drm_i915_private *dev_priv, u32 addr);
3605 void vlv_punit_write(struct drm_i915_private *dev_priv, u32 addr, u32 val);
3606 u32 vlv_nc_read(struct drm_i915_private *dev_priv, u8 addr);
3607 u32 vlv_iosf_sb_read(struct drm_i915_private *dev_priv, u8 port, u32 reg);
3608 void vlv_iosf_sb_write(struct drm_i915_private *dev_priv, u8 port, u32 reg, u32 val);
3609 u32 vlv_cck_read(struct drm_i915_private *dev_priv, u32 reg);
3610 void vlv_cck_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
3611 u32 vlv_ccu_read(struct drm_i915_private *dev_priv, u32 reg);
3612 void vlv_ccu_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
3613 u32 vlv_bunit_read(struct drm_i915_private *dev_priv, u32 reg);
3614 void vlv_bunit_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
3615 u32 vlv_dpio_read(struct drm_i915_private *dev_priv, enum pipe pipe, int reg);
3616 void vlv_dpio_write(struct drm_i915_private *dev_priv, enum pipe pipe, int reg, u32 val);
3617 u32 intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg,
3618 enum intel_sbi_destination destination);
3619 void intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value,
3620 enum intel_sbi_destination destination);
3621 u32 vlv_flisdsi_read(struct drm_i915_private *dev_priv, u32 reg);
3622 void vlv_flisdsi_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
3623
3624 /* intel_dpio_phy.c */
3625 void bxt_port_to_phy_channel(enum port port,
3626 enum dpio_phy *phy, enum dpio_channel *ch);
3627 void bxt_ddi_phy_set_signal_level(struct drm_i915_private *dev_priv,
3628 enum port port, u32 margin, u32 scale,
3629 u32 enable, u32 deemphasis);
3630 void bxt_ddi_phy_init(struct drm_i915_private *dev_priv, enum dpio_phy phy);
3631 void bxt_ddi_phy_uninit(struct drm_i915_private *dev_priv, enum dpio_phy phy);
3632 bool bxt_ddi_phy_is_enabled(struct drm_i915_private *dev_priv,
3633 enum dpio_phy phy);
3634 bool bxt_ddi_phy_verify_state(struct drm_i915_private *dev_priv,
3635 enum dpio_phy phy);
3636 uint8_t bxt_ddi_phy_calc_lane_lat_optim_mask(struct intel_encoder *encoder,
3637 uint8_t lane_count);
3638 void bxt_ddi_phy_set_lane_optim_mask(struct intel_encoder *encoder,
3639 uint8_t lane_lat_optim_mask);
3640 uint8_t bxt_ddi_phy_get_lane_lat_optim_mask(struct intel_encoder *encoder);
3641
3642 void chv_set_phy_signal_level(struct intel_encoder *encoder,
3643 u32 deemph_reg_value, u32 margin_reg_value,
3644 bool uniq_trans_scale);
3645 void chv_data_lane_soft_reset(struct intel_encoder *encoder,
3646 bool reset);
3647 void chv_phy_pre_pll_enable(struct intel_encoder *encoder);
3648 void chv_phy_pre_encoder_enable(struct intel_encoder *encoder);
3649 void chv_phy_release_cl2_override(struct intel_encoder *encoder);
3650 void chv_phy_post_pll_disable(struct intel_encoder *encoder);
3651
3652 void vlv_set_phy_signal_level(struct intel_encoder *encoder,
3653 u32 demph_reg_value, u32 preemph_reg_value,
3654 u32 uniqtranscale_reg_value, u32 tx3_demph);
3655 void vlv_phy_pre_pll_enable(struct intel_encoder *encoder);
3656 void vlv_phy_pre_encoder_enable(struct intel_encoder *encoder);
3657 void vlv_phy_reset_lanes(struct intel_encoder *encoder);
3658
3659 int intel_gpu_freq(struct drm_i915_private *dev_priv, int val);
3660 int intel_freq_opcode(struct drm_i915_private *dev_priv, int val);
3661
3662 #define I915_READ8(reg) dev_priv->uncore.funcs.mmio_readb(dev_priv, (reg), true)
3663 #define I915_WRITE8(reg, val) dev_priv->uncore.funcs.mmio_writeb(dev_priv, (reg), (val), true)
3664
3665 #define I915_READ16(reg) dev_priv->uncore.funcs.mmio_readw(dev_priv, (reg), true)
3666 #define I915_WRITE16(reg, val) dev_priv->uncore.funcs.mmio_writew(dev_priv, (reg), (val), true)
3667 #define I915_READ16_NOTRACE(reg) dev_priv->uncore.funcs.mmio_readw(dev_priv, (reg), false)
3668 #define I915_WRITE16_NOTRACE(reg, val) dev_priv->uncore.funcs.mmio_writew(dev_priv, (reg), (val), false)
3669
3670 #define I915_READ(reg) dev_priv->uncore.funcs.mmio_readl(dev_priv, (reg), true)
3671 #define I915_WRITE(reg, val) dev_priv->uncore.funcs.mmio_writel(dev_priv, (reg), (val), true)
3672 #define I915_READ_NOTRACE(reg) dev_priv->uncore.funcs.mmio_readl(dev_priv, (reg), false)
3673 #define I915_WRITE_NOTRACE(reg, val) dev_priv->uncore.funcs.mmio_writel(dev_priv, (reg), (val), false)
3674
3675 /* Be very careful with read/write 64-bit values. On 32-bit machines, they
3676 * will be implemented using 2 32-bit writes in an arbitrary order with
3677 * an arbitrary delay between them. This can cause the hardware to
3678 * act upon the intermediate value, possibly leading to corruption and
3679 * machine death. For this reason we do not support I915_WRITE64, or
3680 * dev_priv->uncore.funcs.mmio_writeq.
3681 *
3682 * When reading a 64-bit value as two 32-bit values, the delay may cause
3683 * the two reads to mismatch, e.g. a timestamp overflowing. Also note that
3684 * occasionally a 64-bit register does not actualy support a full readq
3685 * and must be read using two 32-bit reads.
3686 *
3687 * You have been warned.
3688 */
3689 #define I915_READ64(reg) dev_priv->uncore.funcs.mmio_readq(dev_priv, (reg), true)
3690
3691 #define I915_READ64_2x32(lower_reg, upper_reg) ({ \
3692 u32 upper, lower, old_upper, loop = 0; \
3693 upper = I915_READ(upper_reg); \
3694 do { \
3695 old_upper = upper; \
3696 lower = I915_READ(lower_reg); \
3697 upper = I915_READ(upper_reg); \
3698 } while (upper != old_upper && loop++ < 2); \
3699 (u64)upper << 32 | lower; })
3700
3701 #define POSTING_READ(reg) (void)I915_READ_NOTRACE(reg)
3702 #define POSTING_READ16(reg) (void)I915_READ16_NOTRACE(reg)
3703
3704 #define __raw_read(x, s) \
3705 static inline uint##x##_t __raw_i915_read##x(struct drm_i915_private *dev_priv, \
3706 i915_reg_t reg) \
3707 { \
3708 return read##s(dev_priv->regs + i915_mmio_reg_offset(reg)); \
3709 }
3710
3711 #define __raw_write(x, s) \
3712 static inline void __raw_i915_write##x(struct drm_i915_private *dev_priv, \
3713 i915_reg_t reg, uint##x##_t val) \
3714 { \
3715 write##s(val, dev_priv->regs + i915_mmio_reg_offset(reg)); \
3716 }
3717 __raw_read(8, b)
3718 __raw_read(16, w)
3719 __raw_read(32, l)
3720 __raw_read(64, q)
3721
3722 __raw_write(8, b)
3723 __raw_write(16, w)
3724 __raw_write(32, l)
3725 __raw_write(64, q)
3726
3727 #undef __raw_read
3728 #undef __raw_write
3729
3730 /* These are untraced mmio-accessors that are only valid to be used inside
3731 * critical sections, such as inside IRQ handlers, where forcewake is explicitly
3732 * controlled.
3733 *
3734 * Think twice, and think again, before using these.
3735 *
3736 * As an example, these accessors can possibly be used between:
3737 *
3738 * spin_lock_irq(&dev_priv->uncore.lock);
3739 * intel_uncore_forcewake_get__locked();
3740 *
3741 * and
3742 *
3743 * intel_uncore_forcewake_put__locked();
3744 * spin_unlock_irq(&dev_priv->uncore.lock);
3745 *
3746 *
3747 * Note: some registers may not need forcewake held, so
3748 * intel_uncore_forcewake_{get,put} can be omitted, see
3749 * intel_uncore_forcewake_for_reg().
3750 *
3751 * Certain architectures will die if the same cacheline is concurrently accessed
3752 * by different clients (e.g. on Ivybridge). Access to registers should
3753 * therefore generally be serialised, by either the dev_priv->uncore.lock or
3754 * a more localised lock guarding all access to that bank of registers.
3755 */
3756 #define I915_READ_FW(reg__) __raw_i915_read32(dev_priv, (reg__))
3757 #define I915_WRITE_FW(reg__, val__) __raw_i915_write32(dev_priv, (reg__), (val__))
3758 #define I915_WRITE64_FW(reg__, val__) __raw_i915_write64(dev_priv, (reg__), (val__))
3759 #define POSTING_READ_FW(reg__) (void)I915_READ_FW(reg__)
3760
3761 /* "Broadcast RGB" property */
3762 #define INTEL_BROADCAST_RGB_AUTO 0
3763 #define INTEL_BROADCAST_RGB_FULL 1
3764 #define INTEL_BROADCAST_RGB_LIMITED 2
3765
3766 static inline i915_reg_t i915_vgacntrl_reg(struct drm_i915_private *dev_priv)
3767 {
3768 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
3769 return VLV_VGACNTRL;
3770 else if (INTEL_GEN(dev_priv) >= 5)
3771 return CPU_VGACNTRL;
3772 else
3773 return VGACNTRL;
3774 }
3775
3776 static inline unsigned long msecs_to_jiffies_timeout(const unsigned int m)
3777 {
3778 unsigned long j = msecs_to_jiffies(m);
3779
3780 return min_t(unsigned long, MAX_JIFFY_OFFSET, j + 1);
3781 }
3782
3783 static inline unsigned long nsecs_to_jiffies_timeout(const u64 n)
3784 {
3785 return min_t(u64, MAX_JIFFY_OFFSET, nsecs_to_jiffies64(n) + 1);
3786 }
3787
3788 static inline unsigned long
3789 timespec_to_jiffies_timeout(const struct timespec *value)
3790 {
3791 unsigned long j = timespec_to_jiffies(value);
3792
3793 return min_t(unsigned long, MAX_JIFFY_OFFSET, j + 1);
3794 }
3795
3796 /*
3797 * If you need to wait X milliseconds between events A and B, but event B
3798 * doesn't happen exactly after event A, you record the timestamp (jiffies) of
3799 * when event A happened, then just before event B you call this function and
3800 * pass the timestamp as the first argument, and X as the second argument.
3801 */
3802 static inline void
3803 wait_remaining_ms_from_jiffies(unsigned long timestamp_jiffies, int to_wait_ms)
3804 {
3805 unsigned long target_jiffies, tmp_jiffies, remaining_jiffies;
3806
3807 /*
3808 * Don't re-read the value of "jiffies" every time since it may change
3809 * behind our back and break the math.
3810 */
3811 tmp_jiffies = jiffies;
3812 target_jiffies = timestamp_jiffies +
3813 msecs_to_jiffies_timeout(to_wait_ms);
3814
3815 if (time_after(target_jiffies, tmp_jiffies)) {
3816 remaining_jiffies = target_jiffies - tmp_jiffies;
3817 while (remaining_jiffies)
3818 remaining_jiffies =
3819 schedule_timeout_uninterruptible(remaining_jiffies);
3820 }
3821 }
3822
3823 static inline bool
3824 __i915_request_irq_complete(struct drm_i915_gem_request *req)
3825 {
3826 struct intel_engine_cs *engine = req->engine;
3827
3828 /* Before we do the heavier coherent read of the seqno,
3829 * check the value (hopefully) in the CPU cacheline.
3830 */
3831 if (__i915_gem_request_completed(req))
3832 return true;
3833
3834 /* Ensure our read of the seqno is coherent so that we
3835 * do not "miss an interrupt" (i.e. if this is the last
3836 * request and the seqno write from the GPU is not visible
3837 * by the time the interrupt fires, we will see that the
3838 * request is incomplete and go back to sleep awaiting
3839 * another interrupt that will never come.)
3840 *
3841 * Strictly, we only need to do this once after an interrupt,
3842 * but it is easier and safer to do it every time the waiter
3843 * is woken.
3844 */
3845 if (engine->irq_seqno_barrier &&
3846 rcu_access_pointer(engine->breadcrumbs.irq_seqno_bh) == current &&
3847 cmpxchg_relaxed(&engine->breadcrumbs.irq_posted, 1, 0)) {
3848 struct task_struct *tsk;
3849
3850 /* The ordering of irq_posted versus applying the barrier
3851 * is crucial. The clearing of the current irq_posted must
3852 * be visible before we perform the barrier operation,
3853 * such that if a subsequent interrupt arrives, irq_posted
3854 * is reasserted and our task rewoken (which causes us to
3855 * do another __i915_request_irq_complete() immediately
3856 * and reapply the barrier). Conversely, if the clear
3857 * occurs after the barrier, then an interrupt that arrived
3858 * whilst we waited on the barrier would not trigger a
3859 * barrier on the next pass, and the read may not see the
3860 * seqno update.
3861 */
3862 engine->irq_seqno_barrier(engine);
3863
3864 /* If we consume the irq, but we are no longer the bottom-half,
3865 * the real bottom-half may not have serialised their own
3866 * seqno check with the irq-barrier (i.e. may have inspected
3867 * the seqno before we believe it coherent since they see
3868 * irq_posted == false but we are still running).
3869 */
3870 rcu_read_lock();
3871 tsk = rcu_dereference(engine->breadcrumbs.irq_seqno_bh);
3872 if (tsk && tsk != current)
3873 /* Note that if the bottom-half is changed as we
3874 * are sending the wake-up, the new bottom-half will
3875 * be woken by whomever made the change. We only have
3876 * to worry about when we steal the irq-posted for
3877 * ourself.
3878 */
3879 wake_up_process(tsk);
3880 rcu_read_unlock();
3881
3882 if (__i915_gem_request_completed(req))
3883 return true;
3884 }
3885
3886 return false;
3887 }
3888
3889 void i915_memcpy_init_early(struct drm_i915_private *dev_priv);
3890 bool i915_memcpy_from_wc(void *dst, const void *src, unsigned long len);
3891
3892 /* i915_mm.c */
3893 int remap_io_mapping(struct vm_area_struct *vma,
3894 unsigned long addr, unsigned long pfn, unsigned long size,
3895 struct io_mapping *iomap);
3896
3897 #define ptr_mask_bits(ptr) ({ \
3898 unsigned long __v = (unsigned long)(ptr); \
3899 (typeof(ptr))(__v & PAGE_MASK); \
3900 })
3901
3902 #define ptr_unpack_bits(ptr, bits) ({ \
3903 unsigned long __v = (unsigned long)(ptr); \
3904 (bits) = __v & ~PAGE_MASK; \
3905 (typeof(ptr))(__v & PAGE_MASK); \
3906 })
3907
3908 #define ptr_pack_bits(ptr, bits) \
3909 ((typeof(ptr))((unsigned long)(ptr) | (bits)))
3910
3911 #define fetch_and_zero(ptr) ({ \
3912 typeof(*ptr) __T = *(ptr); \
3913 *(ptr) = (typeof(*ptr))0; \
3914 __T; \
3915 })
3916
3917 #endif