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