]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_drv.h
drm/i915: Use preferred kernel types in i915_gem_gtt.c
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / intel_drv.h
CommitLineData
79e53945
JB
1/*
2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright (c) 2007-2008 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23 * IN THE SOFTWARE.
24 */
25#ifndef __INTEL_DRV_H__
26#define __INTEL_DRV_H__
27
d1d70677 28#include <linux/async.h>
79e53945 29#include <linux/i2c.h>
178f736a 30#include <linux/hdmi.h>
760285e7 31#include <drm/i915_drm.h>
80824003 32#include "i915_drv.h"
760285e7
DH
33#include <drm/drm_crtc.h>
34#include <drm/drm_crtc_helper.h>
9338203c 35#include <drm/drm_encoder.h>
760285e7 36#include <drm/drm_fb_helper.h>
b1ba124d 37#include <drm/drm_dp_dual_mode_helper.h>
0e32b39c 38#include <drm/drm_dp_mst_helper.h>
eeca778a 39#include <drm/drm_rect.h>
10f81c19 40#include <drm/drm_atomic.h>
913d8d11 41
1d5bfac9
DV
42/**
43 * _wait_for - magic (register) wait macro
44 *
45 * Does the right thing for modeset paths when run under kdgb or similar atomic
46 * contexts. Note that it's important that we check the condition again after
47 * having timed out, since the timeout could be due to preemption or similar and
48 * we've never had a chance to check the condition before the timeout.
0351b939
TU
49 *
50 * TODO: When modesetting has fully transitioned to atomic, the below
51 * drm_can_sleep() can be removed and in_atomic()/!in_atomic() asserts
52 * added.
1d5bfac9 53 */
3f177625
TU
54#define _wait_for(COND, US, W) ({ \
55 unsigned long timeout__ = jiffies + usecs_to_jiffies(US) + 1; \
b0876afd
DG
56 int ret__; \
57 for (;;) { \
58 bool expired__ = time_after(jiffies, timeout__); \
59 if (COND) { \
60 ret__ = 0; \
61 break; \
62 } \
63 if (expired__) { \
64 ret__ = -ETIMEDOUT; \
913d8d11
CW
65 break; \
66 } \
9848de08 67 if ((W) && drm_can_sleep()) { \
3f177625 68 usleep_range((W), (W)*2); \
0cc2764c
BW
69 } else { \
70 cpu_relax(); \
71 } \
913d8d11
CW
72 } \
73 ret__; \
74})
75
3f177625 76#define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 1000)
3f177625 77
0351b939
TU
78/* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */
79#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT)
18f4b843 80# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic())
0351b939 81#else
18f4b843 82# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
0351b939
TU
83#endif
84
18f4b843
TU
85#define _wait_for_atomic(COND, US, ATOMIC) \
86({ \
87 int cpu, ret, timeout = (US) * 1000; \
88 u64 base; \
89 _WAIT_FOR_ATOMIC_CHECK(ATOMIC); \
0351b939 90 BUILD_BUG_ON((US) > 50000); \
18f4b843
TU
91 if (!(ATOMIC)) { \
92 preempt_disable(); \
93 cpu = smp_processor_id(); \
94 } \
95 base = local_clock(); \
96 for (;;) { \
97 u64 now = local_clock(); \
98 if (!(ATOMIC)) \
99 preempt_enable(); \
100 if (COND) { \
101 ret = 0; \
102 break; \
103 } \
104 if (now - base >= timeout) { \
105 ret = -ETIMEDOUT; \
0351b939
TU
106 break; \
107 } \
108 cpu_relax(); \
18f4b843
TU
109 if (!(ATOMIC)) { \
110 preempt_disable(); \
111 if (unlikely(cpu != smp_processor_id())) { \
112 timeout -= now - base; \
113 cpu = smp_processor_id(); \
114 base = local_clock(); \
115 } \
116 } \
0351b939 117 } \
18f4b843
TU
118 ret; \
119})
120
121#define wait_for_us(COND, US) \
122({ \
123 int ret__; \
124 BUILD_BUG_ON(!__builtin_constant_p(US)); \
125 if ((US) > 10) \
126 ret__ = _wait_for((COND), (US), 10); \
127 else \
128 ret__ = _wait_for_atomic((COND), (US), 0); \
0351b939
TU
129 ret__; \
130})
131
18f4b843
TU
132#define wait_for_atomic(COND, MS) _wait_for_atomic((COND), (MS) * 1000, 1)
133#define wait_for_atomic_us(COND, US) _wait_for_atomic((COND), (US), 1)
481b6af3 134
49938ac4
JN
135#define KHz(x) (1000 * (x))
136#define MHz(x) KHz(1000 * (x))
021357ac 137
79e53945
JB
138/*
139 * Display related stuff
140 */
141
142/* store information about an Ixxx DVO */
143/* The i830->i865 use multiple DVOs with multiple i2cs */
144/* the i915, i945 have a single sDVO i2c bus - which is different */
145#define MAX_OUTPUTS 6
146/* maximum connectors per crtcs in the mode set */
79e53945 147
4726e0b0
SK
148/* Maximum cursor sizes */
149#define GEN2_CURSOR_WIDTH 64
150#define GEN2_CURSOR_HEIGHT 64
068be561
DL
151#define MAX_CURSOR_WIDTH 256
152#define MAX_CURSOR_HEIGHT 256
4726e0b0 153
79e53945
JB
154#define INTEL_I2C_BUS_DVO 1
155#define INTEL_I2C_BUS_SDVO 2
156
157/* these are outputs from the chip - integrated only
158 external chips are via DVO or SDVO output */
6847d71b
PZ
159enum intel_output_type {
160 INTEL_OUTPUT_UNUSED = 0,
161 INTEL_OUTPUT_ANALOG = 1,
162 INTEL_OUTPUT_DVO = 2,
163 INTEL_OUTPUT_SDVO = 3,
164 INTEL_OUTPUT_LVDS = 4,
165 INTEL_OUTPUT_TVOUT = 5,
166 INTEL_OUTPUT_HDMI = 6,
cca0502b 167 INTEL_OUTPUT_DP = 7,
6847d71b
PZ
168 INTEL_OUTPUT_EDP = 8,
169 INTEL_OUTPUT_DSI = 9,
170 INTEL_OUTPUT_UNKNOWN = 10,
171 INTEL_OUTPUT_DP_MST = 11,
172};
79e53945
JB
173
174#define INTEL_DVO_CHIP_NONE 0
175#define INTEL_DVO_CHIP_LVDS 1
176#define INTEL_DVO_CHIP_TMDS 2
177#define INTEL_DVO_CHIP_TVOUT 4
178
dfba2e2d
SK
179#define INTEL_DSI_VIDEO_MODE 0
180#define INTEL_DSI_COMMAND_MODE 1
72ffa333 181
79e53945
JB
182struct intel_framebuffer {
183 struct drm_framebuffer base;
05394f39 184 struct drm_i915_gem_object *obj;
2d7a215f 185 struct intel_rotation_info rot_info;
6687c906
VS
186
187 /* for each plane in the normal GTT view */
188 struct {
189 unsigned int x, y;
190 } normal[2];
191 /* for each plane in the rotated GTT view */
192 struct {
193 unsigned int x, y;
194 unsigned int pitch; /* pixels */
195 } rotated[2];
79e53945
JB
196};
197
37811fcc
CW
198struct intel_fbdev {
199 struct drm_fb_helper helper;
8bcd4553 200 struct intel_framebuffer *fb;
058d88c4 201 struct i915_vma *vma;
43cee314 202 async_cookie_t cookie;
d978ef14 203 int preferred_bpp;
37811fcc 204};
79e53945 205
21d40d37 206struct intel_encoder {
4ef69c7a 207 struct drm_encoder base;
9a935856 208
6847d71b 209 enum intel_output_type type;
03cdc1d4 210 enum port port;
bc079e8b 211 unsigned int cloneable;
21d40d37 212 void (*hot_plug)(struct intel_encoder *);
7ae89233 213 bool (*compute_config)(struct intel_encoder *,
0a478c27
ML
214 struct intel_crtc_state *,
215 struct drm_connector_state *);
fd6bbda9
ML
216 void (*pre_pll_enable)(struct intel_encoder *,
217 struct intel_crtc_state *,
218 struct drm_connector_state *);
219 void (*pre_enable)(struct intel_encoder *,
220 struct intel_crtc_state *,
221 struct drm_connector_state *);
222 void (*enable)(struct intel_encoder *,
223 struct intel_crtc_state *,
224 struct drm_connector_state *);
225 void (*disable)(struct intel_encoder *,
226 struct intel_crtc_state *,
227 struct drm_connector_state *);
228 void (*post_disable)(struct intel_encoder *,
229 struct intel_crtc_state *,
230 struct drm_connector_state *);
231 void (*post_pll_disable)(struct intel_encoder *,
232 struct intel_crtc_state *,
233 struct drm_connector_state *);
f0947c37
DV
234 /* Read out the current hw state of this connector, returning true if
235 * the encoder is active. If the encoder is enabled it also set the pipe
236 * it is connected to in the pipe parameter. */
237 bool (*get_hw_state)(struct intel_encoder *, enum pipe *pipe);
045ac3b5 238 /* Reconstructs the equivalent mode flags for the current hardware
fdafa9e2 239 * state. This must be called _after_ display->get_pipe_config has
63000ef6
XZ
240 * pre-filled the pipe config. Note that intel_encoder->base.crtc must
241 * be set correctly before calling this function. */
045ac3b5 242 void (*get_config)(struct intel_encoder *,
5cec258b 243 struct intel_crtc_state *pipe_config);
07f9cd0b
ID
244 /*
245 * Called during system suspend after all pending requests for the
246 * encoder are flushed (for example for DP AUX transactions) and
247 * device interrupts are disabled.
248 */
249 void (*suspend)(struct intel_encoder *);
f8aed700 250 int crtc_mask;
1d843f9d 251 enum hpd_pin hpd_pin;
f1a3acea
PD
252 /* for communication with audio component; protected by av_mutex */
253 const struct drm_connector *audio_connector;
79e53945
JB
254};
255
1d508706 256struct intel_panel {
dd06f90e 257 struct drm_display_mode *fixed_mode;
ec9ed197 258 struct drm_display_mode *downclock_mode;
4d891523 259 int fitting_mode;
58c68779
JN
260
261 /* backlight */
262 struct {
c91c9f32 263 bool present;
58c68779 264 u32 level;
6dda730e 265 u32 min;
7bd688cd 266 u32 max;
58c68779 267 bool enabled;
636baebf
JN
268 bool combination_mode; /* gen 2/4 only */
269 bool active_low_pwm;
32b421e7 270 bool alternate_pwm_increment; /* lpt+ */
b029e66f
SK
271
272 /* PWM chip */
022e4e52
SK
273 bool util_pin_active_low; /* bxt+ */
274 u8 controller; /* bxt+ only */
b029e66f
SK
275 struct pwm_device *pwm;
276
58c68779 277 struct backlight_device *device;
ab656bb9 278
5507faeb
JN
279 /* Connector and platform specific backlight functions */
280 int (*setup)(struct intel_connector *connector, enum pipe pipe);
281 uint32_t (*get)(struct intel_connector *connector);
282 void (*set)(struct intel_connector *connector, uint32_t level);
283 void (*disable)(struct intel_connector *connector);
284 void (*enable)(struct intel_connector *connector);
285 uint32_t (*hz_to_pwm)(struct intel_connector *connector,
286 uint32_t hz);
287 void (*power)(struct intel_connector *, bool enable);
288 } backlight;
1d508706
JN
289};
290
5daa55eb
ZW
291struct intel_connector {
292 struct drm_connector base;
9a935856
DV
293 /*
294 * The fixed encoder this connector is connected to.
295 */
df0e9248 296 struct intel_encoder *encoder;
9a935856 297
8e1b56a4
JN
298 /* ACPI device id for ACPI and driver cooperation */
299 u32 acpi_device_id;
300
f0947c37
DV
301 /* Reads out the current hw, returning true if the connector is enabled
302 * and active (i.e. dpms ON state). */
303 bool (*get_hw_state)(struct intel_connector *);
1d508706
JN
304
305 /* Panel info for eDP and LVDS */
306 struct intel_panel panel;
9cd300e0
JN
307
308 /* Cached EDID for eDP and LVDS. May hold ERR_PTR for invalid EDID. */
309 struct edid *edid;
beb60608 310 struct edid *detect_edid;
821450c6
EE
311
312 /* since POLL and HPD connectors may use the same HPD line keep the native
313 state of connector->polled in case hotplug storm detection changes it */
314 u8 polled;
0e32b39c
DA
315
316 void *port; /* store this opaque as its illegal to dereference it */
317
318 struct intel_dp *mst_port;
5daa55eb
ZW
319};
320
9e2c8475 321struct dpll {
80ad9206
VS
322 /* given values */
323 int n;
324 int m1, m2;
325 int p1, p2;
326 /* derived values */
327 int dot;
328 int vco;
329 int m;
330 int p;
9e2c8475 331};
80ad9206 332
de419ab6
ML
333struct intel_atomic_state {
334 struct drm_atomic_state base;
335
bb0f4aab
VS
336 struct {
337 /*
338 * Logical state of cdclk (used for all scaling, watermark,
339 * etc. calculations and checks). This is computed as if all
340 * enabled crtcs were active.
341 */
342 struct intel_cdclk_state logical;
343
344 /*
345 * Actual state of cdclk, can be different from the logical
346 * state only when all crtc's are DPMS off.
347 */
348 struct intel_cdclk_state actual;
349 } cdclk;
1a617b77 350
565602d7
ML
351 bool dpll_set, modeset;
352
8b4a7d05
MR
353 /*
354 * Does this transaction change the pipes that are active? This mask
355 * tracks which CRTC's have changed their active state at the end of
356 * the transaction (not counting the temporary disable during modesets).
357 * This mask should only be non-zero when intel_state->modeset is true,
358 * but the converse is not necessarily true; simply changing a mode may
359 * not flip the final active status of any CRTC's
360 */
361 unsigned int active_pipe_changes;
362
565602d7
ML
363 unsigned int active_crtcs;
364 unsigned int min_pixclk[I915_MAX_PIPES];
365
2c42e535 366 struct intel_shared_dpll_state shared_dpll[I915_NUM_PLLS];
ed4a6a7c
MR
367
368 /*
369 * Current watermarks can't be trusted during hardware readout, so
370 * don't bother calculating intermediate watermarks.
371 */
372 bool skip_intermediate_wm;
98d39494
MR
373
374 /* Gen9+ only */
734fa01f 375 struct skl_wm_values wm_results;
c004a90b
CW
376
377 struct i915_sw_fence commit_ready;
eb955eee
CW
378
379 struct llist_node freed;
de419ab6
ML
380};
381
eeca778a 382struct intel_plane_state {
2b875c22 383 struct drm_plane_state base;
eeca778a 384 struct drm_rect clip;
be1e3415 385 struct i915_vma *vma;
32b7eeec 386
b63a16f6
VS
387 struct {
388 u32 offset;
389 int x, y;
390 } main;
8d970654
VS
391 struct {
392 u32 offset;
393 int x, y;
394 } aux;
b63a16f6 395
be41e336
CK
396 /*
397 * scaler_id
398 * = -1 : not using a scaler
399 * >= 0 : using a scalers
400 *
401 * plane requiring a scaler:
402 * - During check_plane, its bit is set in
403 * crtc_state->scaler_state.scaler_users by calling helper function
86adf9d7 404 * update_scaler_plane.
be41e336
CK
405 * - scaler_id indicates the scaler it got assigned.
406 *
407 * plane doesn't require a scaler:
408 * - this can happen when scaling is no more required or plane simply
409 * got disabled.
410 * - During check_plane, corresponding bit is reset in
411 * crtc_state->scaler_state.scaler_users by calling helper function
86adf9d7 412 * update_scaler_plane.
be41e336
CK
413 */
414 int scaler_id;
818ed961
ML
415
416 struct drm_intel_sprite_colorkey ckey;
eeca778a
GP
417};
418
5724dbd1 419struct intel_initial_plane_config {
2d14030b 420 struct intel_framebuffer *fb;
49af449b 421 unsigned int tiling;
46f297fb
JB
422 int size;
423 u32 base;
424};
425
be41e336
CK
426#define SKL_MIN_SRC_W 8
427#define SKL_MAX_SRC_W 4096
428#define SKL_MIN_SRC_H 8
6156a456 429#define SKL_MAX_SRC_H 4096
be41e336
CK
430#define SKL_MIN_DST_W 8
431#define SKL_MAX_DST_W 4096
432#define SKL_MIN_DST_H 8
6156a456 433#define SKL_MAX_DST_H 4096
be41e336
CK
434
435struct intel_scaler {
be41e336
CK
436 int in_use;
437 uint32_t mode;
438};
439
440struct intel_crtc_scaler_state {
441#define SKL_NUM_SCALERS 2
442 struct intel_scaler scalers[SKL_NUM_SCALERS];
443
444 /*
445 * scaler_users: keeps track of users requesting scalers on this crtc.
446 *
447 * If a bit is set, a user is using a scaler.
448 * Here user can be a plane or crtc as defined below:
449 * bits 0-30 - plane (bit position is index from drm_plane_index)
450 * bit 31 - crtc
451 *
452 * Instead of creating a new index to cover planes and crtc, using
453 * existing drm_plane_index for planes which is well less than 31
454 * planes and bit 31 for crtc. This should be fine to cover all
455 * our platforms.
456 *
457 * intel_atomic_setup_scalers will setup available scalers to users
458 * requesting scalers. It will gracefully fail if request exceeds
459 * avilability.
460 */
461#define SKL_CRTC_INDEX 31
462 unsigned scaler_users;
463
464 /* scaler used by crtc for panel fitting purpose */
465 int scaler_id;
466};
467
1ed51de9
DV
468/* drm_mode->private_flags */
469#define I915_MODE_FLAG_INHERITED 1
470
4e0963c7
MR
471struct intel_pipe_wm {
472 struct intel_wm_level wm[5];
71f0a626 473 struct intel_wm_level raw_wm[5];
4e0963c7
MR
474 uint32_t linetime;
475 bool fbc_wm_enabled;
476 bool pipe_enabled;
477 bool sprites_enabled;
478 bool sprites_scaled;
479};
480
a62163e9 481struct skl_plane_wm {
4e0963c7
MR
482 struct skl_wm_level wm[8];
483 struct skl_wm_level trans_wm;
a62163e9
L
484};
485
486struct skl_pipe_wm {
487 struct skl_plane_wm planes[I915_MAX_PLANES];
4e0963c7
MR
488 uint32_t linetime;
489};
490
e8f1f02e
MR
491struct intel_crtc_wm_state {
492 union {
493 struct {
494 /*
495 * Intermediate watermarks; these can be
496 * programmed immediately since they satisfy
497 * both the current configuration we're
498 * switching away from and the new
499 * configuration we're switching to.
500 */
501 struct intel_pipe_wm intermediate;
502
503 /*
504 * Optimal watermarks, programmed post-vblank
505 * when this state is committed.
506 */
507 struct intel_pipe_wm optimal;
508 } ilk;
509
510 struct {
511 /* gen9+ only needs 1-step wm programming */
512 struct skl_pipe_wm optimal;
ce0ba283 513 struct skl_ddb_entry ddb;
e8f1f02e
MR
514 } skl;
515 };
516
517 /*
518 * Platforms with two-step watermark programming will need to
519 * update watermark programming post-vblank to switch from the
520 * safe intermediate watermarks to the optimal final
521 * watermarks.
522 */
523 bool need_postvbl_update;
524};
525
5cec258b 526struct intel_crtc_state {
2d112de7
ACO
527 struct drm_crtc_state base;
528
bb760063
DV
529 /**
530 * quirks - bitfield with hw state readout quirks
531 *
532 * For various reasons the hw state readout code might not be able to
533 * completely faithfully read out the current state. These cases are
534 * tracked with quirk flags so that fastboot and state checker can act
535 * accordingly.
536 */
9953599b 537#define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS (1<<0) /* unreliable sync mode.flags */
bb760063
DV
538 unsigned long quirks;
539
cd202f69 540 unsigned fb_bits; /* framebuffers to flip */
ab1d3a0e
ML
541 bool update_pipe; /* can a fast modeset be performed? */
542 bool disable_cxsr;
caed361d 543 bool update_wm_pre, update_wm_post; /* watermarks are updated */
e8861675 544 bool fb_changed; /* fb on any of the planes is changed */
bfd16b2a 545
37327abd
VS
546 /* Pipe source size (ie. panel fitter input size)
547 * All planes will be positioned inside this space,
548 * and get clipped at the edges. */
549 int pipe_src_w, pipe_src_h;
550
a7d1b3f4
VS
551 /*
552 * Pipe pixel rate, adjusted for
553 * panel fitter/pipe scaler downscaling.
554 */
555 unsigned int pixel_rate;
556
5bfe2ac0
DV
557 /* Whether to set up the PCH/FDI. Note that we never allow sharing
558 * between pch encoders and cpu encoders. */
559 bool has_pch_encoder;
50f3b016 560
e43823ec
JB
561 /* Are we sending infoframes on the attached port */
562 bool has_infoframe;
563
3b117c8f 564 /* CPU Transcoder for the pipe. Currently this can only differ from the
4d1de975
JN
565 * pipe on Haswell and later (where we have a special eDP transcoder)
566 * and Broxton (where we have special DSI transcoders). */
3b117c8f
DV
567 enum transcoder cpu_transcoder;
568
50f3b016
DV
569 /*
570 * Use reduced/limited/broadcast rbg range, compressing from the full
571 * range fed into the crtcs.
572 */
573 bool limited_color_range;
574
253c84c8
VS
575 /* Bitmask of encoder types (enum intel_output_type)
576 * driven by the pipe.
577 */
578 unsigned int output_types;
579
6897b4b5
DV
580 /* Whether we should send NULL infoframes. Required for audio. */
581 bool has_hdmi_sink;
582
9ed109a7
DV
583 /* Audio enabled on this pipe. Only valid if either has_hdmi_sink or
584 * has_dp_encoder is set. */
585 bool has_audio;
586
d8b32247
DV
587 /*
588 * Enable dithering, used when the selected pipe bpp doesn't match the
589 * plane bpp.
590 */
965e0c48 591 bool dither;
f47709a9 592
611032bf
MN
593 /*
594 * Dither gets enabled for 18bpp which causes CRC mismatch errors for
595 * compliance video pattern tests.
596 * Disable dither only if it is a compliance test request for
597 * 18bpp.
598 */
599 bool dither_force_disable;
600
f47709a9
DV
601 /* Controls for the clock computation, to override various stages. */
602 bool clock_set;
603
09ede541
DV
604 /* SDVO TV has a bunch of special case. To make multifunction encoders
605 * work correctly, we need to track this at runtime.*/
606 bool sdvo_tv_clock;
607
e29c22c0
DV
608 /*
609 * crtc bandwidth limit, don't increase pipe bpp or clock if not really
610 * required. This is set in the 2nd loop of calling encoder's
611 * ->compute_config if the first pick doesn't work out.
612 */
613 bool bw_constrained;
614
f47709a9
DV
615 /* Settings for the intel dpll used on pretty much everything but
616 * haswell. */
80ad9206 617 struct dpll dpll;
f47709a9 618
8106ddbd
ACO
619 /* Selected dpll when shared or NULL. */
620 struct intel_shared_dpll *shared_dpll;
a43f6e0f 621
66e985c0
DV
622 /* Actual register state of the dpll, for shared dpll cross-checking. */
623 struct intel_dpll_hw_state dpll_hw_state;
624
47eacbab
VS
625 /* DSI PLL registers */
626 struct {
627 u32 ctrl, div;
628 } dsi_pll;
629
965e0c48 630 int pipe_bpp;
6cf86a5e 631 struct intel_link_m_n dp_m_n;
ff9a6750 632
439d7ac0
PB
633 /* m2_n2 for eDP downclock */
634 struct intel_link_m_n dp_m2_n2;
f769cd24 635 bool has_drrs;
439d7ac0 636
ff9a6750
DV
637 /*
638 * Frequence the dpll for the port should run at. Differs from the
3c52f4eb
VS
639 * adjusted dotclock e.g. for DP or 12bpc hdmi mode. This is also
640 * already multiplied by pixel_multiplier.
df92b1e6 641 */
ff9a6750
DV
642 int port_clock;
643
6cc5f341
DV
644 /* Used by SDVO (and if we ever fix it, HDMI). */
645 unsigned pixel_multiplier;
2dd24552 646
90a6b7b0
VS
647 uint8_t lane_count;
648
95a7a2ae
ID
649 /*
650 * Used by platforms having DP/HDMI PHY with programmable lane
651 * latency optimization.
652 */
653 uint8_t lane_lat_optim_mask;
654
2dd24552 655 /* Panel fitter controls for gen2-gen4 + VLV */
b074cec8
JB
656 struct {
657 u32 control;
658 u32 pgm_ratios;
68fc8742 659 u32 lvds_border_bits;
b074cec8
JB
660 } gmch_pfit;
661
662 /* Panel fitter placement and size for Ironlake+ */
663 struct {
664 u32 pos;
665 u32 size;
fd4daa9c 666 bool enabled;
fabf6e51 667 bool force_thru;
b074cec8 668 } pch_pfit;
33d29b14 669
ca3a0ff8 670 /* FDI configuration, only valid if has_pch_encoder is set. */
33d29b14 671 int fdi_lanes;
ca3a0ff8 672 struct intel_link_m_n fdi_m_n;
42db64ef
PZ
673
674 bool ips_enabled;
cf532bb2 675
f51be2e0
PZ
676 bool enable_fbc;
677
cf532bb2 678 bool double_wide;
0e32b39c 679
0e32b39c 680 int pbn;
be41e336
CK
681
682 struct intel_crtc_scaler_state scaler_state;
99d736a2
ML
683
684 /* w/a for waiting 2 vblanks during crtc enable */
685 enum pipe hsw_workaround_pipe;
d21fbe87
MR
686
687 /* IVB sprite scaling w/a (WaCxSRDisabledForSpriteScaling:ivb) */
688 bool disable_lp_wm;
4e0963c7 689
e8f1f02e 690 struct intel_crtc_wm_state wm;
05dc698c
LL
691
692 /* Gamma mode programmed on the pipe */
693 uint32_t gamma_mode;
b8cecdf5
DV
694};
695
262cd2e1
VS
696struct vlv_wm_state {
697 struct vlv_pipe_wm wm[3];
698 struct vlv_sr_wm sr[3];
699 uint8_t num_active_planes;
700 uint8_t num_levels;
701 uint8_t level;
702 bool cxsr;
703};
704
79e53945
JB
705struct intel_crtc {
706 struct drm_crtc base;
80824003
JB
707 enum pipe pipe;
708 enum plane plane;
79e53945 709 u8 lut_r[256], lut_g[256], lut_b[256];
08a48469
DV
710 /*
711 * Whether the crtc and the connected output pipeline is active. Implies
712 * that crtc->enabled is set, i.e. the current mode configuration has
713 * some outputs connected to this crtc.
08a48469
DV
714 */
715 bool active;
652c393a 716 bool lowfreq_avail;
d97d7b48 717 u8 plane_ids_mask;
d8fc70b7 718 unsigned long long enabled_power_domains;
02e792fb 719 struct intel_overlay *overlay;
5a21b665 720 struct intel_flip_work *flip_work;
cda4b7d3 721
b4a98e57
CW
722 atomic_t unpin_work_count;
723
e506a0c6
DV
724 /* Display surface base address adjustement for pageflips. Note that on
725 * gen4+ this only adjusts up to a tile, offsets within a tile are
726 * handled in the hw itself (with the TILEOFF register). */
54ea9da8 727 u32 dspaddr_offset;
2db3366b
PZ
728 int adjusted_x;
729 int adjusted_y;
e506a0c6 730
cda4b7d3 731 uint32_t cursor_addr;
4b0e333e 732 uint32_t cursor_cntl;
dc41c154 733 uint32_t cursor_size;
4b0e333e 734 uint32_t cursor_base;
4b645f14 735
6e3c9717 736 struct intel_crtc_state *config;
b8cecdf5 737
8af29b0c
CW
738 /* global reset count when the last flip was submitted */
739 unsigned int reset_count;
5a21b665 740
8664281b
PZ
741 /* Access to these should be protected by dev_priv->irq_lock. */
742 bool cpu_fifo_underrun_disabled;
743 bool pch_fifo_underrun_disabled;
0b2ae6d7
VS
744
745 /* per-pipe watermark state */
746 struct {
747 /* watermarks currently being used */
4e0963c7
MR
748 union {
749 struct intel_pipe_wm ilk;
4e0963c7 750 } active;
ed4a6a7c 751
852eb00d
VS
752 /* allow CxSR on this pipe */
753 bool cxsr_allowed;
0b2ae6d7 754 } wm;
8d7849db 755
80715b2f 756 int scanline_offset;
32b7eeec 757
eb120ef6
JB
758 struct {
759 unsigned start_vbl_count;
760 ktime_t start_vbl_time;
761 int min_vbl, max_vbl;
762 int scanline_start;
763 } debug;
85a62bf9 764
be41e336
CK
765 /* scalers available on this crtc */
766 int num_scalers;
262cd2e1
VS
767
768 struct vlv_wm_state wm_state;
79e53945
JB
769};
770
c35426d2
VS
771struct intel_plane_wm_parameters {
772 uint32_t horiz_pixels;
ed57cb8a 773 uint32_t vert_pixels;
2cd601c6
CK
774 /*
775 * For packed pixel formats:
776 * bytes_per_pixel - holds bytes per pixel
777 * For planar pixel formats:
778 * bytes_per_pixel - holds bytes per pixel for uv-plane
779 * y_bytes_per_pixel - holds bytes per pixel for y-plane
780 */
c35426d2 781 uint8_t bytes_per_pixel;
2cd601c6 782 uint8_t y_bytes_per_pixel;
c35426d2
VS
783 bool enabled;
784 bool scaled;
0fda6568 785 u64 tiling;
1fc0a8f7 786 unsigned int rotation;
6eb1a681 787 uint16_t fifo_size;
c35426d2
VS
788};
789
b840d907
JB
790struct intel_plane {
791 struct drm_plane base;
b14e5848
VS
792 u8 plane;
793 enum plane_id id;
b840d907 794 enum pipe pipe;
2d354c34 795 bool can_scale;
b840d907 796 int max_downscale;
a9ff8714 797 uint32_t frontbuffer_bit;
526682e9
PZ
798
799 /* Since we need to change the watermarks before/after
800 * enabling/disabling the planes, we need to store the parameters here
801 * as the other pieces of the struct may not reflect the values we want
802 * for the watermark calculations. Currently only Haswell uses this.
803 */
c35426d2 804 struct intel_plane_wm_parameters wm;
526682e9 805
8e7d688b
MR
806 /*
807 * NOTE: Do not place new plane state fields here (e.g., when adding
808 * new plane properties). New runtime state should now be placed in
2fde1391 809 * the intel_plane_state structure and accessed via plane_state.
8e7d688b
MR
810 */
811
b840d907 812 void (*update_plane)(struct drm_plane *plane,
2fde1391
ML
813 const struct intel_crtc_state *crtc_state,
814 const struct intel_plane_state *plane_state);
b39d53f6 815 void (*disable_plane)(struct drm_plane *plane,
7fabf5ef 816 struct drm_crtc *crtc);
c59cb179 817 int (*check_plane)(struct drm_plane *plane,
061e4b8d 818 struct intel_crtc_state *crtc_state,
c59cb179 819 struct intel_plane_state *state);
b840d907
JB
820};
821
b445e3b0 822struct intel_watermark_params {
ae9400ca
TU
823 u16 fifo_size;
824 u16 max_wm;
825 u8 default_wm;
826 u8 guard_size;
827 u8 cacheline_size;
b445e3b0
ED
828};
829
830struct cxsr_latency {
c13fb778
TU
831 bool is_desktop : 1;
832 bool is_ddr3 : 1;
44a655ca
TU
833 u16 fsb_freq;
834 u16 mem_freq;
835 u16 display_sr;
836 u16 display_hpll_disable;
837 u16 cursor_sr;
838 u16 cursor_hpll_disable;
b445e3b0
ED
839};
840
de419ab6 841#define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base)
79e53945 842#define to_intel_crtc(x) container_of(x, struct intel_crtc, base)
10f81c19 843#define to_intel_crtc_state(x) container_of(x, struct intel_crtc_state, base)
5daa55eb 844#define to_intel_connector(x) container_of(x, struct intel_connector, base)
4ef69c7a 845#define to_intel_encoder(x) container_of(x, struct intel_encoder, base)
79e53945 846#define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base)
b840d907 847#define to_intel_plane(x) container_of(x, struct intel_plane, base)
ea2c67bb 848#define to_intel_plane_state(x) container_of(x, struct intel_plane_state, base)
155e6369 849#define intel_fb_obj(x) (x ? to_intel_framebuffer(x)->obj : NULL)
79e53945 850
f5bbfca3 851struct intel_hdmi {
f0f59a00 852 i915_reg_t hdmi_reg;
f5bbfca3 853 int ddc_bus;
b1ba124d
VS
854 struct {
855 enum drm_dp_dual_mode_type type;
856 int max_tmds_clock;
857 } dp_dual_mode;
0f2a2a75 858 bool limited_color_range;
55bc60db 859 bool color_range_auto;
f5bbfca3
ED
860 bool has_hdmi_sink;
861 bool has_audio;
862 enum hdmi_force_audio force_audio;
abedc077 863 bool rgb_quant_range_selectable;
94a11ddc 864 enum hdmi_picture_aspect aspect_ratio;
d8b4c43a 865 struct intel_connector *attached_connector;
f5bbfca3 866 void (*write_infoframe)(struct drm_encoder *encoder,
ac240288 867 const struct intel_crtc_state *crtc_state,
178f736a 868 enum hdmi_infoframe_type type,
fff63867 869 const void *frame, ssize_t len);
687f4d06 870 void (*set_infoframes)(struct drm_encoder *encoder,
6897b4b5 871 bool enable,
ac240288
ML
872 const struct intel_crtc_state *crtc_state,
873 const struct drm_connector_state *conn_state);
cda0aaaf
VS
874 bool (*infoframe_enabled)(struct drm_encoder *encoder,
875 const struct intel_crtc_state *pipe_config);
f5bbfca3
ED
876};
877
0e32b39c 878struct intel_dp_mst_encoder;
b091cd92 879#define DP_MAX_DOWNSTREAM_PORTS 0x10
54d63ca6 880
fe3cd48d
R
881/*
882 * enum link_m_n_set:
883 * When platform provides two set of M_N registers for dp, we can
884 * program them and switch between them incase of DRRS.
885 * But When only one such register is provided, we have to program the
886 * required divider value on that registers itself based on the DRRS state.
887 *
888 * M1_N1 : Program dp_m_n on M1_N1 registers
889 * dp_m2_n2 on M2_N2 registers (If supported)
890 *
891 * M2_N2 : Program dp_m2_n2 on M1_N1 registers
892 * M2_N2 registers are not supported
893 */
894
895enum link_m_n_set {
896 /* Sets the m1_n1 and m2_n2 */
897 M1_N1 = 0,
898 M2_N2
899};
900
7b3fc170
ID
901struct intel_dp_desc {
902 u8 oui[3];
903 u8 device_id[6];
904 u8 hw_rev;
905 u8 sw_major_rev;
906 u8 sw_minor_rev;
907} __packed;
908
c1617abc
MN
909struct intel_dp_compliance_data {
910 unsigned long edid;
611032bf
MN
911 uint8_t video_pattern;
912 uint16_t hdisplay, vdisplay;
913 uint8_t bpc;
c1617abc
MN
914};
915
916struct intel_dp_compliance {
917 unsigned long test_type;
918 struct intel_dp_compliance_data test_data;
919 bool test_active;
da15f7cb
MN
920 int test_link_rate;
921 u8 test_lane_count;
c1617abc
MN
922};
923
54d63ca6 924struct intel_dp {
f0f59a00
VS
925 i915_reg_t output_reg;
926 i915_reg_t aux_ch_ctl_reg;
927 i915_reg_t aux_ch_data_reg[5];
54d63ca6 928 uint32_t DP;
901c2daf
VS
929 int link_rate;
930 uint8_t lane_count;
30d9aa42 931 uint8_t sink_count;
64ee2fd2 932 bool link_mst;
54d63ca6 933 bool has_audio;
7d23e3c3 934 bool detect_done;
c92bd2fa 935 bool channel_eq_status;
54d63ca6 936 enum hdmi_force_audio force_audio;
0f2a2a75 937 bool limited_color_range;
55bc60db 938 bool color_range_auto;
54d63ca6 939 uint8_t dpcd[DP_RECEIVER_CAP_SIZE];
2293bb5c 940 uint8_t psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE];
b091cd92 941 uint8_t downstream_ports[DP_MAX_DOWNSTREAM_PORTS];
86ee27b5 942 uint8_t edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
94ca719e
VS
943 /* sink rates as reported by DP_SUPPORTED_LINK_RATES */
944 uint8_t num_sink_rates;
945 int sink_rates[DP_MAX_SUPPORTED_RATES];
f482984a
MN
946 /* Max lane count for the sink as per DPCD registers */
947 uint8_t max_sink_lane_count;
948 /* Max link BW for the sink as per DPCD registers */
949 int max_sink_link_bw;
7b3fc170
ID
950 /* sink or branch descriptor */
951 struct intel_dp_desc desc;
9d1a1031 952 struct drm_dp_aux aux;
54d63ca6
SK
953 uint8_t train_set[4];
954 int panel_power_up_delay;
955 int panel_power_down_delay;
956 int panel_power_cycle_delay;
957 int backlight_on_delay;
958 int backlight_off_delay;
54d63ca6
SK
959 struct delayed_work panel_vdd_work;
960 bool want_panel_vdd;
dce56b3c
PZ
961 unsigned long last_power_on;
962 unsigned long last_backlight_off;
d28d4731 963 ktime_t panel_power_off_time;
5d42f82a 964
01527b31
CT
965 struct notifier_block edp_notifier;
966
a4a5d2f8
VS
967 /*
968 * Pipe whose power sequencer is currently locked into
969 * this port. Only relevant on VLV/CHV.
970 */
971 enum pipe pps_pipe;
9f2bdb00
VS
972 /*
973 * Pipe currently driving the port. Used for preventing
974 * the use of the PPS for any pipe currentrly driving
975 * external DP as that will mess things up on VLV.
976 */
977 enum pipe active_pipe;
78597996
ID
978 /*
979 * Set if the sequencer may be reset due to a power transition,
980 * requiring a reinitialization. Only relevant on BXT.
981 */
982 bool pps_reset;
36b5f425 983 struct edp_power_seq pps_delays;
a4a5d2f8 984
0e32b39c
DA
985 bool can_mst; /* this port supports mst */
986 bool is_mst;
19e0b4ca 987 int active_mst_links;
0e32b39c 988 /* connector directly attached - won't be use for modeset in mst world */
dd06f90e 989 struct intel_connector *attached_connector;
ec5b01dd 990
0e32b39c
DA
991 /* mst connector list */
992 struct intel_dp_mst_encoder *mst_encoders[I915_MAX_PIPES];
993 struct drm_dp_mst_topology_mgr mst_mgr;
994
ec5b01dd 995 uint32_t (*get_aux_clock_divider)(struct intel_dp *dp, int index);
153b1100
DL
996 /*
997 * This function returns the value we have to program the AUX_CTL
998 * register with to kick off an AUX transaction.
999 */
1000 uint32_t (*get_aux_send_ctl)(struct intel_dp *dp,
1001 bool has_aux_irq,
1002 int send_bytes,
1003 uint32_t aux_clock_divider);
ad64217b
ACO
1004
1005 /* This is called before a link training is starterd */
1006 void (*prepare_link_retrain)(struct intel_dp *intel_dp);
1007
c5d5ab7a 1008 /* Displayport compliance testing */
c1617abc 1009 struct intel_dp_compliance compliance;
54d63ca6
SK
1010};
1011
dbe9e61b
SS
1012struct intel_lspcon {
1013 bool active;
1014 enum drm_lspcon_mode mode;
dbe9e61b
SS
1015};
1016
da63a9f2
PZ
1017struct intel_digital_port {
1018 struct intel_encoder base;
174edf1f 1019 enum port port;
bcf53de4 1020 u32 saved_port_bits;
da63a9f2
PZ
1021 struct intel_dp dp;
1022 struct intel_hdmi hdmi;
dbe9e61b 1023 struct intel_lspcon lspcon;
b2c5c181 1024 enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool);
b0b33846 1025 bool release_cl2_override;
ccb1a831 1026 uint8_t max_lanes;
da63a9f2
PZ
1027};
1028
0e32b39c
DA
1029struct intel_dp_mst_encoder {
1030 struct intel_encoder base;
1031 enum pipe pipe;
1032 struct intel_digital_port *primary;
0552f765 1033 struct intel_connector *connector;
0e32b39c
DA
1034};
1035
65d64cc5 1036static inline enum dpio_channel
89b667f8
JB
1037vlv_dport_to_channel(struct intel_digital_port *dport)
1038{
1039 switch (dport->port) {
1040 case PORT_B:
00fc31b7 1041 case PORT_D:
e4607fcf 1042 return DPIO_CH0;
89b667f8 1043 case PORT_C:
e4607fcf 1044 return DPIO_CH1;
89b667f8
JB
1045 default:
1046 BUG();
1047 }
1048}
1049
65d64cc5
VS
1050static inline enum dpio_phy
1051vlv_dport_to_phy(struct intel_digital_port *dport)
1052{
1053 switch (dport->port) {
1054 case PORT_B:
1055 case PORT_C:
1056 return DPIO_PHY0;
1057 case PORT_D:
1058 return DPIO_PHY1;
1059 default:
1060 BUG();
1061 }
1062}
1063
1064static inline enum dpio_channel
eb69b0e5
CML
1065vlv_pipe_to_channel(enum pipe pipe)
1066{
1067 switch (pipe) {
1068 case PIPE_A:
1069 case PIPE_C:
1070 return DPIO_CH0;
1071 case PIPE_B:
1072 return DPIO_CH1;
1073 default:
1074 BUG();
1075 }
1076}
1077
e2af48c6 1078static inline struct intel_crtc *
b91eb5cc 1079intel_get_crtc_for_pipe(struct drm_i915_private *dev_priv, enum pipe pipe)
f875c15a 1080{
f875c15a
CW
1081 return dev_priv->pipe_to_crtc_mapping[pipe];
1082}
1083
e2af48c6 1084static inline struct intel_crtc *
b91eb5cc 1085intel_get_crtc_for_plane(struct drm_i915_private *dev_priv, enum plane plane)
417ae147 1086{
417ae147
CW
1087 return dev_priv->plane_to_crtc_mapping[plane];
1088}
1089
51cbaf01
ML
1090struct intel_flip_work {
1091 struct work_struct unpin_work;
1092 struct work_struct mmio_work;
1093
5a21b665 1094 struct drm_crtc *crtc;
be1e3415 1095 struct i915_vma *old_vma;
5a21b665
DV
1096 struct drm_framebuffer *old_fb;
1097 struct drm_i915_gem_object *pending_flip_obj;
4e5359cd 1098 struct drm_pending_vblank_event *event;
e7d841ca 1099 atomic_t pending;
5a21b665
DV
1100 u32 flip_count;
1101 u32 gtt_offset;
1102 struct drm_i915_gem_request *flip_queued_req;
66f59c5c 1103 u32 flip_queued_vblank;
5a21b665
DV
1104 u32 flip_ready_vblank;
1105 unsigned int rotation;
4e5359cd
SF
1106};
1107
5f1aae65 1108struct intel_load_detect_pipe {
edde3617 1109 struct drm_atomic_state *restore_state;
5f1aae65 1110};
79e53945 1111
5f1aae65
PZ
1112static inline struct intel_encoder *
1113intel_attached_encoder(struct drm_connector *connector)
df0e9248
CW
1114{
1115 return to_intel_connector(connector)->encoder;
1116}
1117
da63a9f2
PZ
1118static inline struct intel_digital_port *
1119enc_to_dig_port(struct drm_encoder *encoder)
1120{
1121 return container_of(encoder, struct intel_digital_port, base.base);
9ff8c9ba
ID
1122}
1123
0e32b39c
DA
1124static inline struct intel_dp_mst_encoder *
1125enc_to_mst(struct drm_encoder *encoder)
1126{
1127 return container_of(encoder, struct intel_dp_mst_encoder, base.base);
1128}
1129
9ff8c9ba
ID
1130static inline struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
1131{
1132 return &enc_to_dig_port(encoder)->dp;
da63a9f2
PZ
1133}
1134
1135static inline struct intel_digital_port *
1136dp_to_dig_port(struct intel_dp *intel_dp)
1137{
1138 return container_of(intel_dp, struct intel_digital_port, dp);
1139}
1140
dd75f6dd
ID
1141static inline struct intel_lspcon *
1142dp_to_lspcon(struct intel_dp *intel_dp)
1143{
1144 return &dp_to_dig_port(intel_dp)->lspcon;
1145}
1146
da63a9f2
PZ
1147static inline struct intel_digital_port *
1148hdmi_to_dig_port(struct intel_hdmi *intel_hdmi)
1149{
1150 return container_of(intel_hdmi, struct intel_digital_port, hdmi);
7739c33b
PZ
1151}
1152
47339cd9 1153/* intel_fifo_underrun.c */
a72e4c9f 1154bool intel_set_cpu_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
87440425 1155 enum pipe pipe, bool enable);
a72e4c9f 1156bool intel_set_pch_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
87440425
PZ
1157 enum transcoder pch_transcoder,
1158 bool enable);
1f7247c0
DV
1159void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
1160 enum pipe pipe);
1161void intel_pch_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
1162 enum transcoder pch_transcoder);
aca7b684
VS
1163void intel_check_cpu_fifo_underruns(struct drm_i915_private *dev_priv);
1164void intel_check_pch_fifo_underruns(struct drm_i915_private *dev_priv);
47339cd9
DV
1165
1166/* i915_irq.c */
480c8033
DV
1167void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask);
1168void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask);
f4e9af4f
AG
1169void gen6_reset_pm_iir(struct drm_i915_private *dev_priv, u32 mask);
1170void gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
1171void gen6_unmask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
480c8033
DV
1172void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask);
1173void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask);
dc97997a 1174void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv);
91d14251
TU
1175void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv);
1176void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv);
59d02a1f 1177u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask);
b963291c
DV
1178void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv);
1179void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv);
9df7575f
JB
1180static inline bool intel_irqs_enabled(struct drm_i915_private *dev_priv)
1181{
1182 /*
1183 * We only use drm_irq_uninstall() at unload and VT switch, so
1184 * this is the only thing we need to check.
1185 */
2aeb7d3a 1186 return dev_priv->pm.irqs_enabled;
9df7575f
JB
1187}
1188
a225f079 1189int intel_get_crtc_scanline(struct intel_crtc *crtc);
4c6c03be
DL
1190void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
1191 unsigned int pipe_mask);
aae8ba84
VS
1192void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
1193 unsigned int pipe_mask);
26705e20
SAK
1194void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv);
1195void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv);
1196void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv);
5f1aae65 1197
5f1aae65 1198/* intel_crt.c */
c39055b0 1199void intel_crt_init(struct drm_i915_private *dev_priv);
9504a892 1200void intel_crt_reset(struct drm_encoder *encoder);
5f1aae65
PZ
1201
1202/* intel_ddi.c */
e404ba8d 1203void intel_ddi_clk_select(struct intel_encoder *encoder,
c856052a 1204 struct intel_shared_dpll *pll);
b7076546
ML
1205void intel_ddi_fdi_post_disable(struct intel_encoder *intel_encoder,
1206 struct intel_crtc_state *old_crtc_state,
1207 struct drm_connector_state *old_conn_state);
32bdc400 1208void intel_prepare_dp_ddi_buffers(struct intel_encoder *encoder);
87440425 1209void hsw_fdi_link_train(struct drm_crtc *crtc);
c39055b0 1210void intel_ddi_init(struct drm_i915_private *dev_priv, enum port port);
87440425
PZ
1211enum port intel_ddi_get_encoder_port(struct intel_encoder *intel_encoder);
1212bool intel_ddi_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe);
87440425
PZ
1213void intel_ddi_enable_transcoder_func(struct drm_crtc *crtc);
1214void intel_ddi_disable_transcoder_func(struct drm_i915_private *dev_priv,
1215 enum transcoder cpu_transcoder);
1216void intel_ddi_enable_pipe_clock(struct intel_crtc *intel_crtc);
1217void intel_ddi_disable_pipe_clock(struct intel_crtc *intel_crtc);
190f68c5
ACO
1218bool intel_ddi_pll_select(struct intel_crtc *crtc,
1219 struct intel_crtc_state *crtc_state);
87440425 1220void intel_ddi_set_pipe_settings(struct drm_crtc *crtc);
ad64217b 1221void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp);
87440425 1222bool intel_ddi_connector_get_hw_state(struct intel_connector *intel_connector);
9935f7fa
LY
1223bool intel_ddi_is_audio_enabled(struct drm_i915_private *dev_priv,
1224 struct intel_crtc *intel_crtc);
87440425 1225void intel_ddi_get_config(struct intel_encoder *encoder,
5cec258b 1226 struct intel_crtc_state *pipe_config);
bcddf610
S
1227struct intel_encoder *
1228intel_ddi_get_crtc_new_encoder(struct intel_crtc_state *crtc_state);
5f1aae65 1229
44905a27 1230void intel_ddi_init_dp_buf_reg(struct intel_encoder *encoder);
0e32b39c 1231void intel_ddi_clock_get(struct intel_encoder *encoder,
5cec258b 1232 struct intel_crtc_state *pipe_config);
0e32b39c 1233void intel_ddi_set_vc_payload_alloc(struct drm_crtc *crtc, bool state);
f8896f5d 1234uint32_t ddi_signal_levels(struct intel_dp *intel_dp);
6761dd31
TU
1235unsigned int intel_fb_align_height(struct drm_device *dev,
1236 unsigned int height,
1237 uint32_t pixel_format,
1238 uint64_t fb_format_modifier);
7b49f948
VS
1239u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
1240 uint64_t fb_modifier, uint32_t pixel_format);
b680c37a 1241
7c10a2b5 1242/* intel_audio.c */
88212941 1243void intel_init_audio_hooks(struct drm_i915_private *dev_priv);
bbf35e9d
ML
1244void intel_audio_codec_enable(struct intel_encoder *encoder,
1245 const struct intel_crtc_state *crtc_state,
1246 const struct drm_connector_state *conn_state);
69bfe1a9 1247void intel_audio_codec_disable(struct intel_encoder *encoder);
58fddc28
ID
1248void i915_audio_component_init(struct drm_i915_private *dev_priv);
1249void i915_audio_component_cleanup(struct drm_i915_private *dev_priv);
7c10a2b5 1250
7ff89ca2
VS
1251/* intel_cdclk.c */
1252void intel_init_cdclk_hooks(struct drm_i915_private *dev_priv);
1253void intel_update_max_cdclk(struct drm_i915_private *dev_priv);
1254void intel_update_cdclk(struct drm_i915_private *dev_priv);
1255void intel_update_rawclk(struct drm_i915_private *dev_priv);
49cd97a3
VS
1256bool intel_cdclk_state_compare(const struct intel_cdclk_state *a,
1257 const struct intel_cdclk_state *b);
b0587e4d
VS
1258void intel_set_cdclk(struct drm_i915_private *dev_priv,
1259 const struct intel_cdclk_state *cdclk_state);
7ff89ca2 1260
b680c37a 1261/* intel_display.c */
65f2130c 1262enum transcoder intel_crtc_pch_transcoder(struct intel_crtc *crtc);
19ab4ed3 1263void intel_update_rawclk(struct drm_i915_private *dev_priv);
49cd97a3 1264int vlv_get_hpll_vco(struct drm_i915_private *dev_priv);
c30fec65
VS
1265int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
1266 const char *name, u32 reg, int ref_freq);
7ff89ca2
VS
1267int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
1268 const char *name, u32 reg);
b7076546
ML
1269void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv);
1270void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
65a3fea0 1271extern const struct drm_plane_funcs intel_plane_funcs;
88212941 1272void intel_init_display_hooks(struct drm_i915_private *dev_priv);
6687c906 1273unsigned int intel_fb_xy_to_linear(int x, int y,
2949056c
VS
1274 const struct intel_plane_state *state,
1275 int plane);
6687c906 1276void intel_add_fb_offsets(int *x, int *y,
2949056c 1277 const struct intel_plane_state *state, int plane);
1663b9d6 1278unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info);
49d73912 1279bool intel_has_pending_fb_unpin(struct drm_i915_private *dev_priv);
7d993739
TU
1280void intel_mark_busy(struct drm_i915_private *dev_priv);
1281void intel_mark_idle(struct drm_i915_private *dev_priv);
87440425 1282void intel_crtc_restore_mode(struct drm_crtc *crtc);
70e0bd74 1283int intel_display_suspend(struct drm_device *dev);
8090ba8c 1284void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv);
87440425 1285void intel_encoder_destroy(struct drm_encoder *encoder);
08d9bc92
ACO
1286int intel_connector_init(struct intel_connector *);
1287struct intel_connector *intel_connector_alloc(void);
87440425 1288bool intel_connector_get_hw_state(struct intel_connector *connector);
87440425
PZ
1289void intel_connector_attach_encoder(struct intel_connector *connector,
1290 struct intel_encoder *encoder);
87440425
PZ
1291struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
1292 struct drm_crtc *crtc);
752aa88a 1293enum pipe intel_get_pipe_from_connector(struct intel_connector *connector);
08d7b3d1
CW
1294int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
1295 struct drm_file *file_priv);
87440425
PZ
1296enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1297 enum pipe pipe);
2d84d2b3
VS
1298static inline bool
1299intel_crtc_has_type(const struct intel_crtc_state *crtc_state,
1300 enum intel_output_type type)
1301{
1302 return crtc_state->output_types & (1 << type);
1303}
37a5650b
VS
1304static inline bool
1305intel_crtc_has_dp_encoder(const struct intel_crtc_state *crtc_state)
1306{
1307 return crtc_state->output_types &
cca0502b 1308 ((1 << INTEL_OUTPUT_DP) |
37a5650b
VS
1309 (1 << INTEL_OUTPUT_DP_MST) |
1310 (1 << INTEL_OUTPUT_EDP));
1311}
4f905cf9 1312static inline void
0f0f74bc 1313intel_wait_for_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
4f905cf9 1314{
0f0f74bc 1315 drm_wait_one_vblank(&dev_priv->drm, pipe);
4f905cf9 1316}
0c241d5b 1317static inline void
0f0f74bc 1318intel_wait_for_vblank_if_active(struct drm_i915_private *dev_priv, int pipe)
0c241d5b 1319{
b91eb5cc 1320 const struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
0c241d5b
VS
1321
1322 if (crtc->active)
0f0f74bc 1323 intel_wait_for_vblank(dev_priv, pipe);
0c241d5b 1324}
a2991414
ML
1325
1326u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc);
1327
87440425 1328int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp);
e4607fcf 1329void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1330 struct intel_digital_port *dport,
1331 unsigned int expected_mask);
87440425
PZ
1332bool intel_get_load_detect_pipe(struct drm_connector *connector,
1333 struct drm_display_mode *mode,
51fd371b
RC
1334 struct intel_load_detect_pipe *old,
1335 struct drm_modeset_acquire_ctx *ctx);
87440425 1336void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
1337 struct intel_load_detect_pipe *old,
1338 struct drm_modeset_acquire_ctx *ctx);
058d88c4
CW
1339struct i915_vma *
1340intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, unsigned int rotation);
be1e3415 1341void intel_unpin_fb_vma(struct i915_vma *vma);
a8bb6818
DV
1342struct drm_framebuffer *
1343__intel_framebuffer_create(struct drm_device *dev,
87440425
PZ
1344 struct drm_mode_fb_cmd2 *mode_cmd,
1345 struct drm_i915_gem_object *obj);
5a21b665 1346void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe);
51cbaf01 1347void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe);
5a21b665 1348void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe);
6beb8c23 1349int intel_prepare_plane_fb(struct drm_plane *plane,
1832040d 1350 struct drm_plane_state *new_state);
38f3ce3a 1351void intel_cleanup_plane_fb(struct drm_plane *plane,
1832040d 1352 struct drm_plane_state *old_state);
a98b3431
MR
1353int intel_plane_atomic_get_property(struct drm_plane *plane,
1354 const struct drm_plane_state *state,
1355 struct drm_property *property,
1356 uint64_t *val);
1357int intel_plane_atomic_set_property(struct drm_plane *plane,
1358 struct drm_plane_state *state,
1359 struct drm_property *property,
1360 uint64_t val);
da20eabd
ML
1361int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
1362 struct drm_plane_state *plane_state);
716c2e55 1363
832be82f
VS
1364unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
1365 uint64_t fb_modifier, unsigned int cpp);
50470bb0 1366
7abd4b35
ACO
1367void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1368 enum pipe pipe);
1369
30ad9814 1370int vlv_force_pll_on(struct drm_i915_private *dev_priv, enum pipe pipe,
3f36b937 1371 const struct dpll *dpll);
30ad9814 1372void vlv_force_pll_off(struct drm_i915_private *dev_priv, enum pipe pipe);
8802e5b6 1373int lpt_get_iclkip(struct drm_i915_private *dev_priv);
d288f65f 1374
716c2e55 1375/* modesetting asserts */
b680c37a
DV
1376void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1377 enum pipe pipe);
55607e8a
DV
1378void assert_pll(struct drm_i915_private *dev_priv,
1379 enum pipe pipe, bool state);
1380#define assert_pll_enabled(d, p) assert_pll(d, p, true)
1381#define assert_pll_disabled(d, p) assert_pll(d, p, false)
8563b1e8
LL
1382void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state);
1383#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1384#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
55607e8a
DV
1385void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1386 enum pipe pipe, bool state);
1387#define assert_fdi_rx_pll_enabled(d, p) assert_fdi_rx_pll(d, p, true)
1388#define assert_fdi_rx_pll_disabled(d, p) assert_fdi_rx_pll(d, p, false)
87440425 1389void assert_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, bool state);
b840d907
JB
1390#define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
1391#define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
4f2d9934 1392u32 intel_compute_tile_offset(int *x, int *y,
2949056c 1393 const struct intel_plane_state *state, int plane);
c033666a
CW
1394void intel_prepare_reset(struct drm_i915_private *dev_priv);
1395void intel_finish_reset(struct drm_i915_private *dev_priv);
a14cb6fc
PZ
1396void hsw_enable_pc8(struct drm_i915_private *dev_priv);
1397void hsw_disable_pc8(struct drm_i915_private *dev_priv);
324513c0
ID
1398void bxt_init_cdclk(struct drm_i915_private *dev_priv);
1399void bxt_uninit_cdclk(struct drm_i915_private *dev_priv);
da2f41d1 1400void gen9_sanitize_dc_state(struct drm_i915_private *dev_priv);
664326f8
SK
1401void bxt_enable_dc9(struct drm_i915_private *dev_priv);
1402void bxt_disable_dc9(struct drm_i915_private *dev_priv);
f62c79b3 1403void gen9_enable_dc5(struct drm_i915_private *dev_priv);
5d96d8af
DL
1404void skl_init_cdclk(struct drm_i915_private *dev_priv);
1405void skl_uninit_cdclk(struct drm_i915_private *dev_priv);
c89e39f3 1406unsigned int skl_cdclk_get_vco(unsigned int freq);
0a9d2bed
AM
1407void skl_enable_dc6(struct drm_i915_private *dev_priv);
1408void skl_disable_dc6(struct drm_i915_private *dev_priv);
87440425 1409void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 1410 struct intel_crtc_state *pipe_config);
fe3cd48d 1411void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n);
87440425 1412int intel_dotclock_calculate(int link_freq, const struct intel_link_m_n *m_n);
5ab7b0b7 1413bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
9e2c8475
ACO
1414 struct dpll *best_clock);
1415int chv_calc_dpll_params(int refclk, struct dpll *pll_clock);
dccbea3b 1416
525b9311 1417bool intel_crtc_active(struct intel_crtc *crtc);
20bc8673
VS
1418void hsw_enable_ips(struct intel_crtc *crtc);
1419void hsw_disable_ips(struct intel_crtc *crtc);
319be8ae
ID
1420enum intel_display_power_domain
1421intel_display_port_power_domain(struct intel_encoder *intel_encoder);
25f78f58
VS
1422enum intel_display_power_domain
1423intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder);
f6a83288 1424void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 1425 struct intel_crtc_state *pipe_config);
86adf9d7 1426
e435d6e5 1427int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state);
6156a456 1428int skl_max_scale(struct intel_crtc *crtc, struct intel_crtc_state *crtc_state);
8ea30864 1429
be1e3415
CW
1430static inline u32 intel_plane_ggtt_offset(const struct intel_plane_state *state)
1431{
1432 return i915_ggtt_offset(state->vma);
1433}
dedf278c 1434
6156a456
CK
1435u32 skl_plane_ctl_format(uint32_t pixel_format);
1436u32 skl_plane_ctl_tiling(uint64_t fb_modifier);
1437u32 skl_plane_ctl_rotation(unsigned int rotation);
d2196774
VS
1438u32 skl_plane_stride(const struct drm_framebuffer *fb, int plane,
1439 unsigned int rotation);
b63a16f6 1440int skl_check_plane_surface(struct intel_plane_state *plane_state);
121920fa 1441
eb805623 1442/* intel_csr.c */
f4448375 1443void intel_csr_ucode_init(struct drm_i915_private *);
2abc525b 1444void intel_csr_load_program(struct drm_i915_private *);
f4448375 1445void intel_csr_ucode_fini(struct drm_i915_private *);
f74ed08d
ID
1446void intel_csr_ucode_suspend(struct drm_i915_private *);
1447void intel_csr_ucode_resume(struct drm_i915_private *);
eb805623 1448
5f1aae65 1449/* intel_dp.c */
c39055b0
ACO
1450bool intel_dp_init(struct drm_i915_private *dev_priv, i915_reg_t output_reg,
1451 enum port port);
87440425
PZ
1452bool intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
1453 struct intel_connector *intel_connector);
901c2daf 1454void intel_dp_set_link_params(struct intel_dp *intel_dp,
dfa10480
ACO
1455 int link_rate, uint8_t lane_count,
1456 bool link_mst);
fdb14d33
MN
1457int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
1458 int link_rate, uint8_t lane_count);
87440425 1459void intel_dp_start_link_train(struct intel_dp *intel_dp);
87440425
PZ
1460void intel_dp_stop_link_train(struct intel_dp *intel_dp);
1461void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode);
bf93ba67
ID
1462void intel_dp_encoder_reset(struct drm_encoder *encoder);
1463void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder);
87440425 1464void intel_dp_encoder_destroy(struct drm_encoder *encoder);
d2e216d0 1465int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc);
87440425 1466bool intel_dp_compute_config(struct intel_encoder *encoder,
0a478c27
ML
1467 struct intel_crtc_state *pipe_config,
1468 struct drm_connector_state *conn_state);
dd11bc10 1469bool intel_dp_is_edp(struct drm_i915_private *dev_priv, enum port port);
b2c5c181
DV
1470enum irqreturn intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port,
1471 bool long_hpd);
4be73780
DV
1472void intel_edp_backlight_on(struct intel_dp *intel_dp);
1473void intel_edp_backlight_off(struct intel_dp *intel_dp);
24f3e092 1474void intel_edp_panel_vdd_on(struct intel_dp *intel_dp);
4be73780
DV
1475void intel_edp_panel_on(struct intel_dp *intel_dp);
1476void intel_edp_panel_off(struct intel_dp *intel_dp);
0e32b39c
DA
1477void intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connector);
1478void intel_dp_mst_suspend(struct drm_device *dev);
1479void intel_dp_mst_resume(struct drm_device *dev);
50fec21a 1480int intel_dp_max_link_rate(struct intel_dp *intel_dp);
ed4e9c1d 1481int intel_dp_rate_select(struct intel_dp *intel_dp, int rate);
0e32b39c 1482void intel_dp_hot_plug(struct intel_encoder *intel_encoder);
78597996 1483void intel_power_sequencer_reset(struct drm_i915_private *dev_priv);
0bc12bcb 1484uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes);
4a3b8769 1485void intel_plane_destroy(struct drm_plane *plane);
85cb48a1
ML
1486void intel_edp_drrs_enable(struct intel_dp *intel_dp,
1487 struct intel_crtc_state *crtc_state);
1488void intel_edp_drrs_disable(struct intel_dp *intel_dp,
1489 struct intel_crtc_state *crtc_state);
5748b6a1
CW
1490void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
1491 unsigned int frontbuffer_bits);
1492void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
1493 unsigned int frontbuffer_bits);
0bc12bcb 1494
94223d04
ACO
1495void
1496intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
1497 uint8_t dp_train_pat);
1498void
1499intel_dp_set_signal_levels(struct intel_dp *intel_dp);
1500void intel_dp_set_idle_link_train(struct intel_dp *intel_dp);
1501uint8_t
1502intel_dp_voltage_max(struct intel_dp *intel_dp);
1503uint8_t
1504intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing);
1505void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
1506 uint8_t *link_bw, uint8_t *rate_select);
e588fa18 1507bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp);
94223d04
ACO
1508bool
1509intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE]);
1510
419b1b7a
ACO
1511static inline unsigned int intel_dp_unused_lane_mask(int lane_count)
1512{
1513 return ~((1 << lane_count) - 1) & 0xf;
1514}
1515
24e807e7 1516bool intel_dp_read_dpcd(struct intel_dp *intel_dp);
489375c8
ID
1517bool __intel_dp_read_desc(struct intel_dp *intel_dp,
1518 struct intel_dp_desc *desc);
12a47a42 1519bool intel_dp_read_desc(struct intel_dp *intel_dp);
22a2c8e0
DP
1520int intel_dp_link_required(int pixel_clock, int bpp);
1521int intel_dp_max_data_rate(int max_link_clock, int max_lanes);
390b4e00
ID
1522bool intel_digital_port_connected(struct drm_i915_private *dev_priv,
1523 struct intel_digital_port *port);
24e807e7 1524
e7156c83
YA
1525/* intel_dp_aux_backlight.c */
1526int intel_dp_aux_init_backlight_funcs(struct intel_connector *intel_connector);
1527
0e32b39c
DA
1528/* intel_dp_mst.c */
1529int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id);
1530void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port);
5f1aae65 1531/* intel_dsi.c */
c39055b0 1532void intel_dsi_init(struct drm_i915_private *dev_priv);
5f1aae65 1533
90198355
JN
1534/* intel_dsi_dcs_backlight.c */
1535int intel_dsi_dcs_init_backlight_funcs(struct intel_connector *intel_connector);
5f1aae65
PZ
1536
1537/* intel_dvo.c */
c39055b0 1538void intel_dvo_init(struct drm_i915_private *dev_priv);
19625e85
L
1539/* intel_hotplug.c */
1540void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
5f1aae65
PZ
1541
1542
0632fef6 1543/* legacy fbdev emulation in intel_fbdev.c */
0695726e 1544#ifdef CONFIG_DRM_FBDEV_EMULATION
4520f53a 1545extern int intel_fbdev_init(struct drm_device *dev);
e00bf696 1546extern void intel_fbdev_initial_config_async(struct drm_device *dev);
4520f53a 1547extern void intel_fbdev_fini(struct drm_device *dev);
82e3b8c1 1548extern void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
0632fef6
DV
1549extern void intel_fbdev_output_poll_changed(struct drm_device *dev);
1550extern void intel_fbdev_restore_mode(struct drm_device *dev);
4520f53a
DV
1551#else
1552static inline int intel_fbdev_init(struct drm_device *dev)
1553{
1554 return 0;
1555}
5f1aae65 1556
e00bf696 1557static inline void intel_fbdev_initial_config_async(struct drm_device *dev)
4520f53a
DV
1558{
1559}
1560
1561static inline void intel_fbdev_fini(struct drm_device *dev)
1562{
1563}
1564
82e3b8c1 1565static inline void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
4520f53a
DV
1566{
1567}
1568
d9c409d6
JN
1569static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
1570{
1571}
1572
0632fef6 1573static inline void intel_fbdev_restore_mode(struct drm_device *dev)
4520f53a
DV
1574{
1575}
1576#endif
5f1aae65 1577
7ff0ebcc 1578/* intel_fbc.c */
f51be2e0
PZ
1579void intel_fbc_choose_crtc(struct drm_i915_private *dev_priv,
1580 struct drm_atomic_state *state);
0e631adc 1581bool intel_fbc_is_active(struct drm_i915_private *dev_priv);
faf68d92
ML
1582void intel_fbc_pre_update(struct intel_crtc *crtc,
1583 struct intel_crtc_state *crtc_state,
1584 struct intel_plane_state *plane_state);
1eb52238 1585void intel_fbc_post_update(struct intel_crtc *crtc);
7ff0ebcc 1586void intel_fbc_init(struct drm_i915_private *dev_priv);
010cf73d 1587void intel_fbc_init_pipe_state(struct drm_i915_private *dev_priv);
faf68d92
ML
1588void intel_fbc_enable(struct intel_crtc *crtc,
1589 struct intel_crtc_state *crtc_state,
1590 struct intel_plane_state *plane_state);
c937ab3e
PZ
1591void intel_fbc_disable(struct intel_crtc *crtc);
1592void intel_fbc_global_disable(struct drm_i915_private *dev_priv);
dbef0f15
PZ
1593void intel_fbc_invalidate(struct drm_i915_private *dev_priv,
1594 unsigned int frontbuffer_bits,
1595 enum fb_op_origin origin);
1596void intel_fbc_flush(struct drm_i915_private *dev_priv,
6f4551fe 1597 unsigned int frontbuffer_bits, enum fb_op_origin origin);
7733b49b 1598void intel_fbc_cleanup_cfb(struct drm_i915_private *dev_priv);
61a585d6 1599void intel_fbc_handle_fifo_underrun_irq(struct drm_i915_private *dev_priv);
7ff0ebcc 1600
5f1aae65 1601/* intel_hdmi.c */
c39055b0
ACO
1602void intel_hdmi_init(struct drm_i915_private *dev_priv, i915_reg_t hdmi_reg,
1603 enum port port);
87440425
PZ
1604void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1605 struct intel_connector *intel_connector);
1606struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder);
1607bool intel_hdmi_compute_config(struct intel_encoder *encoder,
0a478c27
ML
1608 struct intel_crtc_state *pipe_config,
1609 struct drm_connector_state *conn_state);
b2ccb822 1610void intel_dp_dual_mode_set_tmds_output(struct intel_hdmi *hdmi, bool enable);
5f1aae65
PZ
1611
1612
1613/* intel_lvds.c */
c39055b0 1614void intel_lvds_init(struct drm_i915_private *dev_priv);
97a824e1 1615struct intel_encoder *intel_get_lvds_encoder(struct drm_device *dev);
87440425 1616bool intel_is_dual_link_lvds(struct drm_device *dev);
5f1aae65
PZ
1617
1618
1619/* intel_modes.c */
1620int intel_connector_update_modes(struct drm_connector *connector,
87440425 1621 struct edid *edid);
5f1aae65 1622int intel_ddc_get_modes(struct drm_connector *c, struct i2c_adapter *adapter);
87440425
PZ
1623void intel_attach_force_audio_property(struct drm_connector *connector);
1624void intel_attach_broadcast_rgb_property(struct drm_connector *connector);
7949dd47 1625void intel_attach_aspect_ratio_property(struct drm_connector *connector);
5f1aae65
PZ
1626
1627
1628/* intel_overlay.c */
1ee8da6d
CW
1629void intel_setup_overlay(struct drm_i915_private *dev_priv);
1630void intel_cleanup_overlay(struct drm_i915_private *dev_priv);
87440425 1631int intel_overlay_switch_off(struct intel_overlay *overlay);
1ee8da6d
CW
1632int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1633 struct drm_file *file_priv);
1634int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1635 struct drm_file *file_priv);
1362b776 1636void intel_overlay_reset(struct drm_i915_private *dev_priv);
5f1aae65
PZ
1637
1638
1639/* intel_panel.c */
87440425 1640int intel_panel_init(struct intel_panel *panel,
4b6ed685
VK
1641 struct drm_display_mode *fixed_mode,
1642 struct drm_display_mode *downclock_mode);
87440425
PZ
1643void intel_panel_fini(struct intel_panel *panel);
1644void intel_fixed_panel_mode(const struct drm_display_mode *fixed_mode,
1645 struct drm_display_mode *adjusted_mode);
1646void intel_pch_panel_fitting(struct intel_crtc *crtc,
5cec258b 1647 struct intel_crtc_state *pipe_config,
87440425
PZ
1648 int fitting_mode);
1649void intel_gmch_panel_fitting(struct intel_crtc *crtc,
5cec258b 1650 struct intel_crtc_state *pipe_config,
87440425 1651 int fitting_mode);
6dda730e
JN
1652void intel_panel_set_backlight_acpi(struct intel_connector *connector,
1653 u32 level, u32 max);
fda9ee98
CW
1654int intel_panel_setup_backlight(struct drm_connector *connector,
1655 enum pipe pipe);
752aa88a
JB
1656void intel_panel_enable_backlight(struct intel_connector *connector);
1657void intel_panel_disable_backlight(struct intel_connector *connector);
db31af1d 1658void intel_panel_destroy_backlight(struct drm_connector *connector);
1650be74 1659enum drm_connector_status intel_panel_detect(struct drm_i915_private *dev_priv);
ec9ed197 1660extern struct drm_display_mode *intel_find_panel_downclock(
a318b4c4 1661 struct drm_i915_private *dev_priv,
ec9ed197
VK
1662 struct drm_display_mode *fixed_mode,
1663 struct drm_connector *connector);
e63d87c0
CW
1664
1665#if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE)
1ebaa0b9 1666int intel_backlight_device_register(struct intel_connector *connector);
e63d87c0
CW
1667void intel_backlight_device_unregister(struct intel_connector *connector);
1668#else /* CONFIG_BACKLIGHT_CLASS_DEVICE */
1ebaa0b9
CW
1669static int intel_backlight_device_register(struct intel_connector *connector)
1670{
1671 return 0;
1672}
e63d87c0
CW
1673static inline void intel_backlight_device_unregister(struct intel_connector *connector)
1674{
1675}
1676#endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */
0962c3c9 1677
5f1aae65 1678
0bc12bcb 1679/* intel_psr.c */
0bc12bcb
RV
1680void intel_psr_enable(struct intel_dp *intel_dp);
1681void intel_psr_disable(struct intel_dp *intel_dp);
5748b6a1 1682void intel_psr_invalidate(struct drm_i915_private *dev_priv,
20c8838b 1683 unsigned frontbuffer_bits);
5748b6a1 1684void intel_psr_flush(struct drm_i915_private *dev_priv,
169de131
RV
1685 unsigned frontbuffer_bits,
1686 enum fb_op_origin origin);
c39055b0 1687void intel_psr_init(struct drm_i915_private *dev_priv);
5748b6a1 1688void intel_psr_single_frame_update(struct drm_i915_private *dev_priv,
20c8838b 1689 unsigned frontbuffer_bits);
0bc12bcb 1690
9c065a7d
DV
1691/* intel_runtime_pm.c */
1692int intel_power_domains_init(struct drm_i915_private *);
f458ebbc 1693void intel_power_domains_fini(struct drm_i915_private *);
73dfc227
ID
1694void intel_power_domains_init_hw(struct drm_i915_private *dev_priv, bool resume);
1695void intel_power_domains_suspend(struct drm_i915_private *dev_priv);
d7d7c9ee
ID
1696void bxt_display_core_init(struct drm_i915_private *dev_priv, bool resume);
1697void bxt_display_core_uninit(struct drm_i915_private *dev_priv);
f458ebbc 1698void intel_runtime_pm_enable(struct drm_i915_private *dev_priv);
9895ad03
DS
1699const char *
1700intel_display_power_domain_str(enum intel_display_power_domain domain);
9c065a7d 1701
f458ebbc
DV
1702bool intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
1703 enum intel_display_power_domain domain);
1704bool __intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
1705 enum intel_display_power_domain domain);
9c065a7d
DV
1706void intel_display_power_get(struct drm_i915_private *dev_priv,
1707 enum intel_display_power_domain domain);
09731280
ID
1708bool intel_display_power_get_if_enabled(struct drm_i915_private *dev_priv,
1709 enum intel_display_power_domain domain);
9c065a7d
DV
1710void intel_display_power_put(struct drm_i915_private *dev_priv,
1711 enum intel_display_power_domain domain);
da5827c3
ID
1712
1713static inline void
1714assert_rpm_device_not_suspended(struct drm_i915_private *dev_priv)
1715{
1716 WARN_ONCE(dev_priv->pm.suspended,
1717 "Device suspended during HW access\n");
1718}
1719
1720static inline void
1721assert_rpm_wakelock_held(struct drm_i915_private *dev_priv)
1722{
1723 assert_rpm_device_not_suspended(dev_priv);
becd9ca2
DV
1724 /* FIXME: Needs to be converted back to WARN_ONCE, but currently causes
1725 * too much noise. */
1726 if (!atomic_read(&dev_priv->pm.wakeref_count))
1727 DRM_DEBUG_DRIVER("RPM wakelock ref not held during HW access");
da5827c3
ID
1728}
1729
1f814dac
ID
1730/**
1731 * disable_rpm_wakeref_asserts - disable the RPM assert checks
1732 * @dev_priv: i915 device instance
1733 *
1734 * This function disable asserts that check if we hold an RPM wakelock
1735 * reference, while keeping the device-not-suspended checks still enabled.
1736 * It's meant to be used only in special circumstances where our rule about
1737 * the wakelock refcount wrt. the device power state doesn't hold. According
1738 * to this rule at any point where we access the HW or want to keep the HW in
1739 * an active state we must hold an RPM wakelock reference acquired via one of
1740 * the intel_runtime_pm_get() helpers. Currently there are a few special spots
1741 * where this rule doesn't hold: the IRQ and suspend/resume handlers, the
1742 * forcewake release timer, and the GPU RPS and hangcheck works. All other
1743 * users should avoid using this function.
1744 *
1745 * Any calls to this function must have a symmetric call to
1746 * enable_rpm_wakeref_asserts().
1747 */
1748static inline void
1749disable_rpm_wakeref_asserts(struct drm_i915_private *dev_priv)
1750{
1751 atomic_inc(&dev_priv->pm.wakeref_count);
1752}
1753
1754/**
1755 * enable_rpm_wakeref_asserts - re-enable the RPM assert checks
1756 * @dev_priv: i915 device instance
1757 *
1758 * This function re-enables the RPM assert checks after disabling them with
1759 * disable_rpm_wakeref_asserts. It's meant to be used only in special
1760 * circumstances otherwise its use should be avoided.
1761 *
1762 * Any calls to this function must have a symmetric call to
1763 * disable_rpm_wakeref_asserts().
1764 */
1765static inline void
1766enable_rpm_wakeref_asserts(struct drm_i915_private *dev_priv)
1767{
1768 atomic_dec(&dev_priv->pm.wakeref_count);
1769}
1770
9c065a7d 1771void intel_runtime_pm_get(struct drm_i915_private *dev_priv);
09731280 1772bool intel_runtime_pm_get_if_in_use(struct drm_i915_private *dev_priv);
9c065a7d
DV
1773void intel_runtime_pm_get_noresume(struct drm_i915_private *dev_priv);
1774void intel_runtime_pm_put(struct drm_i915_private *dev_priv);
1775
d9bc89d9
DV
1776void intel_display_set_init_power(struct drm_i915_private *dev, bool enable);
1777
e0fce78f
VS
1778void chv_phy_powergate_lanes(struct intel_encoder *encoder,
1779 bool override, unsigned int mask);
b0b33846
VS
1780bool chv_phy_powergate_ch(struct drm_i915_private *dev_priv, enum dpio_phy phy,
1781 enum dpio_channel ch, bool override);
e0fce78f
VS
1782
1783
5f1aae65 1784/* intel_pm.c */
46f16e63 1785void intel_init_clock_gating(struct drm_i915_private *dev_priv);
712bf364 1786void intel_suspend_hw(struct drm_i915_private *dev_priv);
5db94019 1787int ilk_wm_max_level(const struct drm_i915_private *dev_priv);
432081bc 1788void intel_update_watermarks(struct intel_crtc *crtc);
62d75df7 1789void intel_init_pm(struct drm_i915_private *dev_priv);
bb400da9 1790void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv);
192aa181 1791void intel_pm_setup(struct drm_i915_private *dev_priv);
87440425
PZ
1792void intel_gpu_ips_init(struct drm_i915_private *dev_priv);
1793void intel_gpu_ips_teardown(void);
dc97997a 1794void intel_init_gt_powersave(struct drm_i915_private *dev_priv);
54b4f68f
CW
1795void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv);
1796void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv);
dc97997a 1797void intel_enable_gt_powersave(struct drm_i915_private *dev_priv);
54b4f68f 1798void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv);
dc97997a 1799void intel_disable_gt_powersave(struct drm_i915_private *dev_priv);
54b4f68f 1800void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv);
43cf3bf0
CW
1801void gen6_rps_busy(struct drm_i915_private *dev_priv);
1802void gen6_rps_reset_ei(struct drm_i915_private *dev_priv);
076e29f2 1803void gen6_rps_idle(struct drm_i915_private *dev_priv);
1854d5ca 1804void gen6_rps_boost(struct drm_i915_private *dev_priv,
e61b9958
CW
1805 struct intel_rps_client *rps,
1806 unsigned long submitted);
91d14251 1807void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req);
6eb1a681 1808void vlv_wm_get_hw_state(struct drm_device *dev);
243e6a44 1809void ilk_wm_get_hw_state(struct drm_device *dev);
3078999f 1810void skl_wm_get_hw_state(struct drm_device *dev);
08db6652
DL
1811void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
1812 struct skl_ddb_allocation *ddb /* out */);
bf9d99ad 1813void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
1814 struct skl_pipe_wm *out);
16dcdc4e
PZ
1815bool intel_can_enable_sagv(struct drm_atomic_state *state);
1816int intel_enable_sagv(struct drm_i915_private *dev_priv);
1817int intel_disable_sagv(struct drm_i915_private *dev_priv);
45ece230 1818bool skl_wm_level_equals(const struct skl_wm_level *l1,
1819 const struct skl_wm_level *l2);
5eff503b
ML
1820bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
1821 const struct skl_ddb_entry *ddb,
1822 int ignore);
ed4a6a7c 1823bool ilk_disable_lp_wm(struct drm_device *dev);
dc97997a
CW
1824int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6);
1825static inline int intel_enable_rc6(void)
1826{
1827 return i915.enable_rc6;
1828}
72662e10 1829
5f1aae65 1830/* intel_sdvo.c */
c39055b0 1831bool intel_sdvo_init(struct drm_i915_private *dev_priv,
f0f59a00 1832 i915_reg_t reg, enum port port);
96a02917 1833
2b28bb1b 1834
5f1aae65 1835/* intel_sprite.c */
dfd2e9ab
VS
1836int intel_usecs_to_scanlines(const struct drm_display_mode *adjusted_mode,
1837 int usecs);
580503c7 1838struct intel_plane *intel_sprite_plane_create(struct drm_i915_private *dev_priv,
b079bd17 1839 enum pipe pipe, int plane);
87440425
PZ
1840int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
1841 struct drm_file *file_priv);
34e0adbb 1842void intel_pipe_update_start(struct intel_crtc *crtc);
51cbaf01 1843void intel_pipe_update_end(struct intel_crtc *crtc, struct intel_flip_work *work);
5f1aae65
PZ
1844
1845/* intel_tv.c */
c39055b0 1846void intel_tv_init(struct drm_i915_private *dev_priv);
20ddf665 1847
ea2c67bb 1848/* intel_atomic.c */
2545e4a6
MR
1849int intel_connector_atomic_get_property(struct drm_connector *connector,
1850 const struct drm_connector_state *state,
1851 struct drm_property *property,
1852 uint64_t *val);
1356837e
MR
1853struct drm_crtc_state *intel_crtc_duplicate_state(struct drm_crtc *crtc);
1854void intel_crtc_destroy_state(struct drm_crtc *crtc,
1855 struct drm_crtc_state *state);
de419ab6
ML
1856struct drm_atomic_state *intel_atomic_state_alloc(struct drm_device *dev);
1857void intel_atomic_state_clear(struct drm_atomic_state *);
de419ab6 1858
10f81c19
ACO
1859static inline struct intel_crtc_state *
1860intel_atomic_get_crtc_state(struct drm_atomic_state *state,
1861 struct intel_crtc *crtc)
1862{
1863 struct drm_crtc_state *crtc_state;
1864 crtc_state = drm_atomic_get_crtc_state(state, &crtc->base);
1865 if (IS_ERR(crtc_state))
0b6cc188 1866 return ERR_CAST(crtc_state);
10f81c19
ACO
1867
1868 return to_intel_crtc_state(crtc_state);
1869}
e3bddded 1870
ccc24b39
MK
1871static inline struct intel_crtc_state *
1872intel_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
1873 struct intel_crtc *crtc)
1874{
1875 struct drm_crtc_state *crtc_state;
1876
1877 crtc_state = drm_atomic_get_existing_crtc_state(state, &crtc->base);
1878
1879 if (crtc_state)
1880 return to_intel_crtc_state(crtc_state);
1881 else
1882 return NULL;
1883}
1884
e3bddded
ML
1885static inline struct intel_plane_state *
1886intel_atomic_get_existing_plane_state(struct drm_atomic_state *state,
1887 struct intel_plane *plane)
1888{
1889 struct drm_plane_state *plane_state;
1890
1891 plane_state = drm_atomic_get_existing_plane_state(state, &plane->base);
1892
1893 return to_intel_plane_state(plane_state);
1894}
1895
d03c93d4
CK
1896int intel_atomic_setup_scalers(struct drm_device *dev,
1897 struct intel_crtc *intel_crtc,
1898 struct intel_crtc_state *crtc_state);
5ee67f1c
MR
1899
1900/* intel_atomic_plane.c */
8e7d688b 1901struct intel_plane_state *intel_create_plane_state(struct drm_plane *plane);
ea2c67bb
MR
1902struct drm_plane_state *intel_plane_duplicate_state(struct drm_plane *plane);
1903void intel_plane_destroy_state(struct drm_plane *plane,
1904 struct drm_plane_state *state);
1905extern const struct drm_plane_helper_funcs intel_plane_helper_funcs;
f79f2692
ML
1906int intel_plane_atomic_check_with_state(struct intel_crtc_state *crtc_state,
1907 struct intel_plane_state *intel_state);
ea2c67bb 1908
8563b1e8
LL
1909/* intel_color.c */
1910void intel_color_init(struct drm_crtc *crtc);
82cf435b 1911int intel_color_check(struct drm_crtc *crtc, struct drm_crtc_state *state);
b95c5321
ML
1912void intel_color_set_csc(struct drm_crtc_state *crtc_state);
1913void intel_color_load_luts(struct drm_crtc_state *crtc_state);
8563b1e8 1914
dbe9e61b
SS
1915/* intel_lspcon.c */
1916bool lspcon_init(struct intel_digital_port *intel_dig_port);
910530c0 1917void lspcon_resume(struct intel_lspcon *lspcon);
357c0ae9 1918void lspcon_wait_pcon_mode(struct intel_lspcon *lspcon);
731035fe
TV
1919
1920/* intel_pipe_crc.c */
1921int intel_pipe_crc_create(struct drm_minor *minor);
1922void intel_pipe_crc_cleanup(struct drm_minor *minor);
8c6b709d
TV
1923#ifdef CONFIG_DEBUG_FS
1924int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name,
1925 size_t *values_cnt);
1926#else
1927#define intel_crtc_set_crc_source NULL
1928#endif
731035fe 1929extern const struct file_operations i915_display_crc_ctl_fops;
79e53945 1930#endif /* __INTEL_DRV_H__ */