]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/gpu/drm/i915/intel_drv.h
drm/i915: Precompute HDMI infoframes
[thirdparty/kernel/stable.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>
e6017571 31#include <linux/sched/clock.h>
16e4dd03 32#include <linux/stackdepot.h>
760285e7 33#include <drm/i915_drm.h>
80824003 34#include "i915_drv.h"
760285e7 35#include <drm/drm_crtc.h>
9338203c 36#include <drm/drm_encoder.h>
760285e7 37#include <drm/drm_fb_helper.h>
b1ba124d 38#include <drm/drm_dp_dual_mode_helper.h>
0e32b39c 39#include <drm/drm_dp_mst_helper.h>
fcd70cd3 40#include <drm/drm_probe_helper.h>
eeca778a 41#include <drm/drm_rect.h>
fcd70cd3 42#include <drm/drm_vblank.h>
10f81c19 43#include <drm/drm_atomic.h>
9055aac7 44#include <drm/i915_mei_hdcp_interface.h>
9c229127 45#include <media/cec-notifier.h>
913d8d11 46
bd780f37
CW
47struct drm_printer;
48
1d5bfac9 49/**
23fdbdd7 50 * __wait_for - magic wait macro
1d5bfac9 51 *
23fdbdd7
SP
52 * Macro to help avoid open coding check/wait/timeout patterns. Note that it's
53 * important that we check the condition again after having timed out, since the
54 * timeout could be due to preemption or similar and we've never had a chance to
55 * check the condition before the timeout.
1d5bfac9 56 */
23fdbdd7 57#define __wait_for(OP, COND, US, Wmin, Wmax) ({ \
3085982c 58 const ktime_t end__ = ktime_add_ns(ktime_get_raw(), 1000ll * (US)); \
a54b1873 59 long wait__ = (Wmin); /* recommended min for usleep is 10 us */ \
b0876afd 60 int ret__; \
290b20a6 61 might_sleep(); \
b0876afd 62 for (;;) { \
3085982c 63 const bool expired__ = ktime_after(ktime_get_raw(), end__); \
23fdbdd7 64 OP; \
1c3c1dc6
MK
65 /* Guarantee COND check prior to timeout */ \
66 barrier(); \
b0876afd
DG
67 if (COND) { \
68 ret__ = 0; \
69 break; \
70 } \
71 if (expired__) { \
72 ret__ = -ETIMEDOUT; \
913d8d11
CW
73 break; \
74 } \
a54b1873
CW
75 usleep_range(wait__, wait__ * 2); \
76 if (wait__ < (Wmax)) \
77 wait__ <<= 1; \
913d8d11
CW
78 } \
79 ret__; \
80})
81
23fdbdd7
SP
82#define _wait_for(COND, US, Wmin, Wmax) __wait_for(, (COND), (US), (Wmin), \
83 (Wmax))
84#define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 10, 1000)
3f177625 85
0351b939
TU
86/* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */
87#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT)
18f4b843 88# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic())
0351b939 89#else
18f4b843 90# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
0351b939
TU
91#endif
92
18f4b843
TU
93#define _wait_for_atomic(COND, US, ATOMIC) \
94({ \
95 int cpu, ret, timeout = (US) * 1000; \
96 u64 base; \
97 _WAIT_FOR_ATOMIC_CHECK(ATOMIC); \
18f4b843
TU
98 if (!(ATOMIC)) { \
99 preempt_disable(); \
100 cpu = smp_processor_id(); \
101 } \
102 base = local_clock(); \
103 for (;;) { \
104 u64 now = local_clock(); \
105 if (!(ATOMIC)) \
106 preempt_enable(); \
1c3c1dc6
MK
107 /* Guarantee COND check prior to timeout */ \
108 barrier(); \
18f4b843
TU
109 if (COND) { \
110 ret = 0; \
111 break; \
112 } \
113 if (now - base >= timeout) { \
114 ret = -ETIMEDOUT; \
0351b939
TU
115 break; \
116 } \
117 cpu_relax(); \
18f4b843
TU
118 if (!(ATOMIC)) { \
119 preempt_disable(); \
120 if (unlikely(cpu != smp_processor_id())) { \
121 timeout -= now - base; \
122 cpu = smp_processor_id(); \
123 base = local_clock(); \
124 } \
125 } \
0351b939 126 } \
18f4b843
TU
127 ret; \
128})
129
130#define wait_for_us(COND, US) \
131({ \
132 int ret__; \
133 BUILD_BUG_ON(!__builtin_constant_p(US)); \
134 if ((US) > 10) \
a54b1873 135 ret__ = _wait_for((COND), (US), 10, 10); \
18f4b843
TU
136 else \
137 ret__ = _wait_for_atomic((COND), (US), 0); \
0351b939
TU
138 ret__; \
139})
140
939cf46c
TU
141#define wait_for_atomic_us(COND, US) \
142({ \
143 BUILD_BUG_ON(!__builtin_constant_p(US)); \
144 BUILD_BUG_ON((US) > 50000); \
145 _wait_for_atomic((COND), (US), 1); \
146})
147
148#define wait_for_atomic(COND, MS) wait_for_atomic_us((COND), (MS) * 1000)
481b6af3 149
49938ac4
JN
150#define KHz(x) (1000 * (x))
151#define MHz(x) KHz(1000 * (x))
021357ac 152
aa9664ff
MK
153#define KBps(x) (1000 * (x))
154#define MBps(x) KBps(1000 * (x))
155#define GBps(x) ((u64)1000 * MBps((x)))
156
79e53945
JB
157/*
158 * Display related stuff
159 */
160
161/* store information about an Ixxx DVO */
162/* The i830->i865 use multiple DVOs with multiple i2cs */
163/* the i915, i945 have a single sDVO i2c bus - which is different */
164#define MAX_OUTPUTS 6
165/* maximum connectors per crtcs in the mode set */
79e53945
JB
166
167#define INTEL_I2C_BUS_DVO 1
168#define INTEL_I2C_BUS_SDVO 2
169
170/* these are outputs from the chip - integrated only
171 external chips are via DVO or SDVO output */
6847d71b
PZ
172enum intel_output_type {
173 INTEL_OUTPUT_UNUSED = 0,
174 INTEL_OUTPUT_ANALOG = 1,
175 INTEL_OUTPUT_DVO = 2,
176 INTEL_OUTPUT_SDVO = 3,
177 INTEL_OUTPUT_LVDS = 4,
178 INTEL_OUTPUT_TVOUT = 5,
179 INTEL_OUTPUT_HDMI = 6,
cca0502b 180 INTEL_OUTPUT_DP = 7,
6847d71b
PZ
181 INTEL_OUTPUT_EDP = 8,
182 INTEL_OUTPUT_DSI = 9,
7e732cac 183 INTEL_OUTPUT_DDI = 10,
6847d71b
PZ
184 INTEL_OUTPUT_DP_MST = 11,
185};
79e53945
JB
186
187#define INTEL_DVO_CHIP_NONE 0
188#define INTEL_DVO_CHIP_LVDS 1
189#define INTEL_DVO_CHIP_TMDS 2
190#define INTEL_DVO_CHIP_TVOUT 4
191
dfba2e2d
SK
192#define INTEL_DSI_VIDEO_MODE 0
193#define INTEL_DSI_COMMAND_MODE 1
72ffa333 194
79e53945
JB
195struct intel_framebuffer {
196 struct drm_framebuffer base;
2d7a215f 197 struct intel_rotation_info rot_info;
6687c906
VS
198
199 /* for each plane in the normal GTT view */
200 struct {
201 unsigned int x, y;
202 } normal[2];
203 /* for each plane in the rotated GTT view */
204 struct {
205 unsigned int x, y;
206 unsigned int pitch; /* pixels */
207 } rotated[2];
79e53945
JB
208};
209
37811fcc
CW
210struct intel_fbdev {
211 struct drm_fb_helper helper;
8bcd4553 212 struct intel_framebuffer *fb;
058d88c4 213 struct i915_vma *vma;
5935485f 214 unsigned long vma_flags;
43cee314 215 async_cookie_t cookie;
d978ef14 216 int preferred_bpp;
fe5ec656
LP
217
218 /* Whether or not fbdev hpd processing is temporarily suspended */
219 bool hpd_suspended : 1;
220 /* Set when a hotplug was received while HPD processing was
221 * suspended
222 */
223 bool hpd_waiting : 1;
224
225 /* Protects hpd_suspended */
226 struct mutex hpd_lock;
37811fcc 227};
79e53945 228
21d40d37 229struct intel_encoder {
4ef69c7a 230 struct drm_encoder base;
9a935856 231
6847d71b 232 enum intel_output_type type;
03cdc1d4 233 enum port port;
bc079e8b 234 unsigned int cloneable;
dba14b27
VS
235 bool (*hotplug)(struct intel_encoder *encoder,
236 struct intel_connector *connector);
7e732cac
VS
237 enum intel_output_type (*compute_output_type)(struct intel_encoder *,
238 struct intel_crtc_state *,
239 struct drm_connector_state *);
204474a6
LP
240 int (*compute_config)(struct intel_encoder *,
241 struct intel_crtc_state *,
242 struct drm_connector_state *);
fd6bbda9 243 void (*pre_pll_enable)(struct intel_encoder *,
5f88a9c6
VS
244 const struct intel_crtc_state *,
245 const struct drm_connector_state *);
fd6bbda9 246 void (*pre_enable)(struct intel_encoder *,
5f88a9c6
VS
247 const struct intel_crtc_state *,
248 const struct drm_connector_state *);
fd6bbda9 249 void (*enable)(struct intel_encoder *,
5f88a9c6
VS
250 const struct intel_crtc_state *,
251 const struct drm_connector_state *);
fd6bbda9 252 void (*disable)(struct intel_encoder *,
5f88a9c6
VS
253 const struct intel_crtc_state *,
254 const struct drm_connector_state *);
fd6bbda9 255 void (*post_disable)(struct intel_encoder *,
5f88a9c6
VS
256 const struct intel_crtc_state *,
257 const struct drm_connector_state *);
fd6bbda9 258 void (*post_pll_disable)(struct intel_encoder *,
5f88a9c6
VS
259 const struct intel_crtc_state *,
260 const struct drm_connector_state *);
608ed4ab
HG
261 void (*update_pipe)(struct intel_encoder *,
262 const struct intel_crtc_state *,
263 const struct drm_connector_state *);
f0947c37
DV
264 /* Read out the current hw state of this connector, returning true if
265 * the encoder is active. If the encoder is enabled it also set the pipe
266 * it is connected to in the pipe parameter. */
267 bool (*get_hw_state)(struct intel_encoder *, enum pipe *pipe);
045ac3b5 268 /* Reconstructs the equivalent mode flags for the current hardware
fdafa9e2 269 * state. This must be called _after_ display->get_pipe_config has
63000ef6
XZ
270 * pre-filled the pipe config. Note that intel_encoder->base.crtc must
271 * be set correctly before calling this function. */
045ac3b5 272 void (*get_config)(struct intel_encoder *,
5cec258b 273 struct intel_crtc_state *pipe_config);
62b69566
ACO
274 /* Returns a mask of power domains that need to be referenced as part
275 * of the hardware state readout code. */
52528055
ID
276 u64 (*get_power_domains)(struct intel_encoder *encoder,
277 struct intel_crtc_state *crtc_state);
07f9cd0b
ID
278 /*
279 * Called during system suspend after all pending requests for the
280 * encoder are flushed (for example for DP AUX transactions) and
281 * device interrupts are disabled.
282 */
283 void (*suspend)(struct intel_encoder *);
f8aed700 284 int crtc_mask;
1d843f9d 285 enum hpd_pin hpd_pin;
79f255a0 286 enum intel_display_power_domain power_domain;
f1a3acea
PD
287 /* for communication with audio component; protected by av_mutex */
288 const struct drm_connector *audio_connector;
79e53945
JB
289};
290
1d508706 291struct intel_panel {
dd06f90e 292 struct drm_display_mode *fixed_mode;
ec9ed197 293 struct drm_display_mode *downclock_mode;
58c68779
JN
294
295 /* backlight */
296 struct {
c91c9f32 297 bool present;
58c68779 298 u32 level;
6dda730e 299 u32 min;
7bd688cd 300 u32 max;
58c68779 301 bool enabled;
636baebf
JN
302 bool combination_mode; /* gen 2/4 only */
303 bool active_low_pwm;
32b421e7 304 bool alternate_pwm_increment; /* lpt+ */
b029e66f
SK
305
306 /* PWM chip */
022e4e52
SK
307 bool util_pin_active_low; /* bxt+ */
308 u8 controller; /* bxt+ only */
b029e66f
SK
309 struct pwm_device *pwm;
310
58c68779 311 struct backlight_device *device;
ab656bb9 312
5507faeb
JN
313 /* Connector and platform specific backlight functions */
314 int (*setup)(struct intel_connector *connector, enum pipe pipe);
d25236a3
JN
315 u32 (*get)(struct intel_connector *connector);
316 void (*set)(const struct drm_connector_state *conn_state, u32 level);
7d025e08
ML
317 void (*disable)(const struct drm_connector_state *conn_state);
318 void (*enable)(const struct intel_crtc_state *crtc_state,
319 const struct drm_connector_state *conn_state);
d25236a3 320 u32 (*hz_to_pwm)(struct intel_connector *connector, u32 hz);
5507faeb
JN
321 void (*power)(struct intel_connector *, bool enable);
322 } backlight;
1d508706
JN
323};
324
b6ca3eee
VS
325struct intel_digital_port;
326
22ce2d94
R
327enum check_link_response {
328 HDCP_LINK_PROTECTED = 0,
329 HDCP_TOPOLOGY_CHANGE,
330 HDCP_LINK_INTEGRITY_FAILURE,
331 HDCP_REAUTH_REQUEST
332};
333
ee5e5e7a
SP
334/*
335 * This structure serves as a translation layer between the generic HDCP code
336 * and the bus-specific code. What that means is that HDCP over HDMI differs
337 * from HDCP over DP, so to account for these differences, we need to
338 * communicate with the receiver through this shim.
339 *
340 * For completeness, the 2 buses differ in the following ways:
341 * - DP AUX vs. DDC
342 * HDCP registers on the receiver are set via DP AUX for DP, and
343 * they are set via DDC for HDMI.
344 * - Receiver register offsets
345 * The offsets of the registers are different for DP vs. HDMI
346 * - Receiver register masks/offsets
347 * For instance, the ready bit for the KSV fifo is in a different
348 * place on DP vs HDMI
349 * - Receiver register names
350 * Seriously. In the DP spec, the 16-bit register containing
351 * downstream information is called BINFO, on HDMI it's called
352 * BSTATUS. To confuse matters further, DP has a BSTATUS register
353 * with a completely different definition.
354 * - KSV FIFO
355 * On HDMI, the ksv fifo is read all at once, whereas on DP it must
356 * be read 3 keys at a time
357 * - Aksv output
358 * Since Aksv is hidden in hardware, there's different procedures
359 * to send it over DP AUX vs DDC
360 */
361struct intel_hdcp_shim {
362 /* Outputs the transmitter's An and Aksv values to the receiver. */
363 int (*write_an_aksv)(struct intel_digital_port *intel_dig_port, u8 *an);
364
365 /* Reads the receiver's key selection vector */
366 int (*read_bksv)(struct intel_digital_port *intel_dig_port, u8 *bksv);
367
368 /*
369 * Reads BINFO from DP receivers and BSTATUS from HDMI receivers. The
370 * definitions are the same in the respective specs, but the names are
371 * different. Call it BSTATUS since that's the name the HDMI spec
372 * uses and it was there first.
373 */
374 int (*read_bstatus)(struct intel_digital_port *intel_dig_port,
375 u8 *bstatus);
376
377 /* Determines whether a repeater is present downstream */
378 int (*repeater_present)(struct intel_digital_port *intel_dig_port,
379 bool *repeater_present);
380
381 /* Reads the receiver's Ri' value */
382 int (*read_ri_prime)(struct intel_digital_port *intel_dig_port, u8 *ri);
383
384 /* Determines if the receiver's KSV FIFO is ready for consumption */
385 int (*read_ksv_ready)(struct intel_digital_port *intel_dig_port,
386 bool *ksv_ready);
387
388 /* Reads the ksv fifo for num_downstream devices */
389 int (*read_ksv_fifo)(struct intel_digital_port *intel_dig_port,
390 int num_downstream, u8 *ksv_fifo);
391
392 /* Reads a 32-bit part of V' from the receiver */
393 int (*read_v_prime_part)(struct intel_digital_port *intel_dig_port,
394 int i, u32 *part);
395
396 /* Enables HDCP signalling on the port */
397 int (*toggle_signalling)(struct intel_digital_port *intel_dig_port,
398 bool enable);
399
400 /* Ensures the link is still protected */
401 bool (*check_link)(struct intel_digital_port *intel_dig_port);
791a98dd
R
402
403 /* Detects panel's hdcp capability. This is optional for HDMI. */
404 int (*hdcp_capable)(struct intel_digital_port *intel_dig_port,
405 bool *hdcp_capable);
9055aac7
R
406
407 /* HDCP adaptation(DP/HDMI) required on the port */
408 enum hdcp_wired_protocol protocol;
49a630b0
R
409
410 /* Detects whether sink is HDCP2.2 capable */
411 int (*hdcp_2_2_capable)(struct intel_digital_port *intel_dig_port,
412 bool *capable);
bd90d7c7
R
413
414 /* Write HDCP2.2 messages */
415 int (*write_2_2_msg)(struct intel_digital_port *intel_dig_port,
416 void *buf, size_t size);
417
418 /* Read HDCP2.2 messages */
419 int (*read_2_2_msg)(struct intel_digital_port *intel_dig_port,
420 u8 msg_id, void *buf, size_t size);
421
422 /*
423 * Implementation of DP HDCP2.2 Errata for the communication of stream
424 * type to Receivers. In DP HDCP2.2 Stream type is one of the input to
425 * the HDCP2.2 Cipher for En/De-Cryption. Not applicable for HDMI.
426 */
427 int (*config_stream_type)(struct intel_digital_port *intel_dig_port,
428 bool is_repeater, u8 type);
22ce2d94
R
429
430 /* HDCP2.2 Link Integrity Check */
431 int (*check_2_2_link)(struct intel_digital_port *intel_dig_port);
ee5e5e7a
SP
432};
433
d3dacc70
R
434struct intel_hdcp {
435 const struct intel_hdcp_shim *shim;
436 /* Mutex for hdcp state of the connector */
437 struct mutex mutex;
438 u64 value;
439 struct delayed_work check_work;
440 struct work_struct prop_work;
04707f97 441
09d56393
R
442 /* HDCP1.4 Encryption status */
443 bool hdcp_encrypted;
444
04707f97
R
445 /* HDCP2.2 related definitions */
446 /* Flag indicates whether this connector supports HDCP2.2 or not. */
447 bool hdcp2_supported;
448
49a630b0
R
449 /* HDCP2.2 Encryption status */
450 bool hdcp2_encrypted;
451
04707f97
R
452 /*
453 * Content Stream Type defined by content owner. TYPE0(0x0) content can
454 * flow in the link protected by HDCP2.2 or HDCP1.4, where as TYPE1(0x1)
455 * content can flow only through a link protected by HDCP2.2.
456 */
457 u8 content_type;
9055aac7 458 struct hdcp_port_data port_data;
bd90d7c7
R
459
460 bool is_paired;
461 bool is_repeater;
462
463 /*
464 * Count of ReceiverID_List received. Initialized to 0 at AKE_INIT.
465 * Incremented after processing the RepeaterAuth_Send_ReceiverID_List.
466 * When it rolls over re-auth has to be triggered.
467 */
468 u32 seq_num_v;
469
470 /*
471 * Count of RepeaterAuth_Stream_Manage msg propagated.
472 * Initialized to 0 on AKE_INIT. Incremented after every successful
473 * transmission of RepeaterAuth_Stream_Manage message. When it rolls
474 * over re-Auth has to be triggered.
475 */
476 u32 seq_num_m;
cf9cb35f
R
477
478 /*
479 * Work queue to signal the CP_IRQ. Used for the waiters to read the
480 * available information from HDCP DP sink.
481 */
482 wait_queue_head_t cp_irq_queue;
483 atomic_t cp_irq_count;
484 int cp_irq_count_cached;
d3dacc70
R
485};
486
5daa55eb
ZW
487struct intel_connector {
488 struct drm_connector base;
9a935856
DV
489 /*
490 * The fixed encoder this connector is connected to.
491 */
df0e9248 492 struct intel_encoder *encoder;
9a935856 493
8e1b56a4
JN
494 /* ACPI device id for ACPI and driver cooperation */
495 u32 acpi_device_id;
496
f0947c37
DV
497 /* Reads out the current hw, returning true if the connector is enabled
498 * and active (i.e. dpms ON state). */
499 bool (*get_hw_state)(struct intel_connector *);
1d508706
JN
500
501 /* Panel info for eDP and LVDS */
502 struct intel_panel panel;
9cd300e0
JN
503
504 /* Cached EDID for eDP and LVDS. May hold ERR_PTR for invalid EDID. */
505 struct edid *edid;
beb60608 506 struct edid *detect_edid;
821450c6
EE
507
508 /* since POLL and HPD connectors may use the same HPD line keep the native
509 state of connector->polled in case hotplug storm detection changes it */
510 u8 polled;
0e32b39c
DA
511
512 void *port; /* store this opaque as its illegal to dereference it */
513
514 struct intel_dp *mst_port;
9301397a
MN
515
516 /* Work struct to schedule a uevent on link train failure */
517 struct work_struct modeset_retry_work;
ee5e5e7a 518
d3dacc70 519 struct intel_hdcp hdcp;
5daa55eb
ZW
520};
521
11c1a9ec
ML
522struct intel_digital_connector_state {
523 struct drm_connector_state base;
524
525 enum hdmi_force_audio force_audio;
526 int broadcast_rgb;
527};
528
529#define to_intel_digital_connector_state(x) container_of(x, struct intel_digital_connector_state, base)
530
9e2c8475 531struct dpll {
80ad9206
VS
532 /* given values */
533 int n;
534 int m1, m2;
535 int p1, p2;
536 /* derived values */
537 int dot;
538 int vco;
539 int m;
540 int p;
9e2c8475 541};
80ad9206 542
de419ab6
ML
543struct intel_atomic_state {
544 struct drm_atomic_state base;
545
bb0f4aab
VS
546 struct {
547 /*
548 * Logical state of cdclk (used for all scaling, watermark,
549 * etc. calculations and checks). This is computed as if all
550 * enabled crtcs were active.
551 */
552 struct intel_cdclk_state logical;
553
554 /*
555 * Actual state of cdclk, can be different from the logical
556 * state only when all crtc's are DPMS off.
557 */
558 struct intel_cdclk_state actual;
559 } cdclk;
1a617b77 560
565602d7
ML
561 bool dpll_set, modeset;
562
8b4a7d05
MR
563 /*
564 * Does this transaction change the pipes that are active? This mask
565 * tracks which CRTC's have changed their active state at the end of
566 * the transaction (not counting the temporary disable during modesets).
567 * This mask should only be non-zero when intel_state->modeset is true,
568 * but the converse is not necessarily true; simply changing a mode may
569 * not flip the final active status of any CRTC's
570 */
571 unsigned int active_pipe_changes;
572
565602d7 573 unsigned int active_crtcs;
d305e061
VS
574 /* minimum acceptable cdclk for each pipe */
575 int min_cdclk[I915_MAX_PIPES];
53e9bf5e
VS
576 /* minimum acceptable voltage level for each pipe */
577 u8 min_voltage_level[I915_MAX_PIPES];
565602d7 578
2c42e535 579 struct intel_shared_dpll_state shared_dpll[I915_NUM_PLLS];
ed4a6a7c
MR
580
581 /*
582 * Current watermarks can't be trusted during hardware readout, so
583 * don't bother calculating intermediate watermarks.
584 */
585 bool skip_intermediate_wm;
98d39494 586
60548c55
CW
587 bool rps_interactive;
588
98d39494 589 /* Gen9+ only */
60f8e873 590 struct skl_ddb_values wm_results;
c004a90b
CW
591
592 struct i915_sw_fence commit_ready;
eb955eee
CW
593
594 struct llist_node freed;
de419ab6
ML
595};
596
eeca778a 597struct intel_plane_state {
2b875c22 598 struct drm_plane_state base;
f5929c53 599 struct i915_ggtt_view view;
be1e3415 600 struct i915_vma *vma;
5935485f
CW
601 unsigned long flags;
602#define PLANE_HAS_FENCE BIT(0)
32b7eeec 603
b63a16f6
VS
604 struct {
605 u32 offset;
df79cf44
VS
606 /*
607 * Plane stride in:
608 * bytes for 0/180 degree rotation
609 * pixels for 90/270 degree rotation
610 */
611 u32 stride;
b63a16f6 612 int x, y;
c11ada07 613 } color_plane[2];
b63a16f6 614
a0864d59
VS
615 /* plane control register */
616 u32 ctl;
617
4036c78c
JA
618 /* plane color control register */
619 u32 color_ctl;
620
be41e336
CK
621 /*
622 * scaler_id
623 * = -1 : not using a scaler
624 * >= 0 : using a scalers
625 *
626 * plane requiring a scaler:
627 * - During check_plane, its bit is set in
628 * crtc_state->scaler_state.scaler_users by calling helper function
86adf9d7 629 * update_scaler_plane.
be41e336
CK
630 * - scaler_id indicates the scaler it got assigned.
631 *
632 * plane doesn't require a scaler:
633 * - this can happen when scaling is no more required or plane simply
634 * got disabled.
635 * - During check_plane, corresponding bit is reset in
636 * crtc_state->scaler_state.scaler_users by calling helper function
86adf9d7 637 * update_scaler_plane.
be41e336
CK
638 */
639 int scaler_id;
818ed961 640
1ab554b0
ML
641 /*
642 * linked_plane:
643 *
644 * ICL planar formats require 2 planes that are updated as pairs.
645 * This member is used to make sure the other plane is also updated
646 * when required, and for update_slave() to find the correct
647 * plane_state to pass as argument.
648 */
649 struct intel_plane *linked_plane;
650
651 /*
652 * slave:
653 * If set don't update use the linked plane's state for updating
654 * this plane during atomic commit with the update_slave() callback.
655 *
656 * It's also used by the watermark code to ignore wm calculations on
657 * this plane. They're calculated by the linked plane's wm code.
658 */
659 u32 slave;
660
818ed961 661 struct drm_intel_sprite_colorkey ckey;
eeca778a
GP
662};
663
5724dbd1 664struct intel_initial_plane_config {
2d14030b 665 struct intel_framebuffer *fb;
49af449b 666 unsigned int tiling;
46f297fb
JB
667 int size;
668 u32 base;
f43348a3 669 u8 rotation;
46f297fb
JB
670};
671
be41e336
CK
672#define SKL_MIN_SRC_W 8
673#define SKL_MAX_SRC_W 4096
674#define SKL_MIN_SRC_H 8
6156a456 675#define SKL_MAX_SRC_H 4096
be41e336
CK
676#define SKL_MIN_DST_W 8
677#define SKL_MAX_DST_W 4096
678#define SKL_MIN_DST_H 8
6156a456 679#define SKL_MAX_DST_H 4096
323301af
NM
680#define ICL_MAX_SRC_W 5120
681#define ICL_MAX_SRC_H 4096
682#define ICL_MAX_DST_W 5120
683#define ICL_MAX_DST_H 4096
77224cd5
CK
684#define SKL_MIN_YUV_420_SRC_W 16
685#define SKL_MIN_YUV_420_SRC_H 16
be41e336
CK
686
687struct intel_scaler {
be41e336 688 int in_use;
d25236a3 689 u32 mode;
be41e336
CK
690};
691
692struct intel_crtc_scaler_state {
693#define SKL_NUM_SCALERS 2
694 struct intel_scaler scalers[SKL_NUM_SCALERS];
695
696 /*
697 * scaler_users: keeps track of users requesting scalers on this crtc.
698 *
699 * If a bit is set, a user is using a scaler.
700 * Here user can be a plane or crtc as defined below:
701 * bits 0-30 - plane (bit position is index from drm_plane_index)
702 * bit 31 - crtc
703 *
704 * Instead of creating a new index to cover planes and crtc, using
705 * existing drm_plane_index for planes which is well less than 31
706 * planes and bit 31 for crtc. This should be fine to cover all
707 * our platforms.
708 *
709 * intel_atomic_setup_scalers will setup available scalers to users
710 * requesting scalers. It will gracefully fail if request exceeds
711 * avilability.
712 */
713#define SKL_CRTC_INDEX 31
714 unsigned scaler_users;
715
716 /* scaler used by crtc for panel fitting purpose */
717 int scaler_id;
718};
719
1ed51de9 720/* drm_mode->private_flags */
8a920e24 721#define I915_MODE_FLAG_INHERITED (1<<0)
aec0246f
US
722/* Flag to get scanline using frame time stamps */
723#define I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP (1<<1)
8a920e24
VS
724/* Flag to use the scanline counter instead of the pixel counter */
725#define I915_MODE_FLAG_USE_SCANLINE_COUNTER (1<<2)
1ed51de9 726
4e0963c7
MR
727struct intel_pipe_wm {
728 struct intel_wm_level wm[5];
d25236a3 729 u32 linetime;
4e0963c7
MR
730 bool fbc_wm_enabled;
731 bool pipe_enabled;
732 bool sprites_enabled;
733 bool sprites_scaled;
734};
735
a62163e9 736struct skl_plane_wm {
4e0963c7 737 struct skl_wm_level wm[8];
942aa2d0 738 struct skl_wm_level uv_wm[8];
4e0963c7 739 struct skl_wm_level trans_wm;
b879d58f 740 bool is_planar;
a62163e9
L
741};
742
743struct skl_pipe_wm {
744 struct skl_plane_wm planes[I915_MAX_PLANES];
d25236a3 745 u32 linetime;
4e0963c7
MR
746};
747
855c79f5
VS
748enum vlv_wm_level {
749 VLV_WM_LEVEL_PM2,
750 VLV_WM_LEVEL_PM5,
751 VLV_WM_LEVEL_DDR_DVFS,
752 NUM_VLV_WM_LEVELS,
753};
754
755struct vlv_wm_state {
114d7dc0
VS
756 struct g4x_pipe_wm wm[NUM_VLV_WM_LEVELS];
757 struct g4x_sr_wm sr[NUM_VLV_WM_LEVELS];
d25236a3 758 u8 num_levels;
855c79f5
VS
759 bool cxsr;
760};
761
814e7f0b
VS
762struct vlv_fifo_state {
763 u16 plane[I915_MAX_PLANES];
764};
765
04548cba
VS
766enum g4x_wm_level {
767 G4X_WM_LEVEL_NORMAL,
768 G4X_WM_LEVEL_SR,
769 G4X_WM_LEVEL_HPLL,
770 NUM_G4X_WM_LEVELS,
771};
772
773struct g4x_wm_state {
774 struct g4x_pipe_wm wm;
775 struct g4x_sr_wm sr;
776 struct g4x_sr_wm hpll;
777 bool cxsr;
778 bool hpll_en;
779 bool fbc_en;
780};
781
e8f1f02e
MR
782struct intel_crtc_wm_state {
783 union {
784 struct {
785 /*
786 * Intermediate watermarks; these can be
787 * programmed immediately since they satisfy
788 * both the current configuration we're
789 * switching away from and the new
790 * configuration we're switching to.
791 */
792 struct intel_pipe_wm intermediate;
793
794 /*
795 * Optimal watermarks, programmed post-vblank
796 * when this state is committed.
797 */
798 struct intel_pipe_wm optimal;
799 } ilk;
800
801 struct {
802 /* gen9+ only needs 1-step wm programming */
803 struct skl_pipe_wm optimal;
ce0ba283 804 struct skl_ddb_entry ddb;
ff43bc37
VS
805 struct skl_ddb_entry plane_ddb_y[I915_MAX_PLANES];
806 struct skl_ddb_entry plane_ddb_uv[I915_MAX_PLANES];
e8f1f02e 807 } skl;
855c79f5
VS
808
809 struct {
5012e604 810 /* "raw" watermarks (not inverted) */
114d7dc0 811 struct g4x_pipe_wm raw[NUM_VLV_WM_LEVELS];
4841da51
VS
812 /* intermediate watermarks (inverted) */
813 struct vlv_wm_state intermediate;
855c79f5
VS
814 /* optimal watermarks (inverted) */
815 struct vlv_wm_state optimal;
814e7f0b
VS
816 /* display FIFO split */
817 struct vlv_fifo_state fifo_state;
855c79f5 818 } vlv;
04548cba
VS
819
820 struct {
821 /* "raw" watermarks */
822 struct g4x_pipe_wm raw[NUM_G4X_WM_LEVELS];
823 /* intermediate watermarks */
824 struct g4x_wm_state intermediate;
825 /* optimal watermarks */
826 struct g4x_wm_state optimal;
827 } g4x;
e8f1f02e
MR
828 };
829
830 /*
831 * Platforms with two-step watermark programming will need to
832 * update watermark programming post-vblank to switch from the
833 * safe intermediate watermarks to the optimal final
834 * watermarks.
835 */
836 bool need_postvbl_update;
837};
838
d9facae6
SS
839enum intel_output_format {
840 INTEL_OUTPUT_FORMAT_INVALID,
841 INTEL_OUTPUT_FORMAT_RGB,
33b7f3ee 842 INTEL_OUTPUT_FORMAT_YCBCR420,
8c79f844 843 INTEL_OUTPUT_FORMAT_YCBCR444,
d9facae6
SS
844};
845
5cec258b 846struct intel_crtc_state {
2d112de7
ACO
847 struct drm_crtc_state base;
848
bb760063
DV
849 /**
850 * quirks - bitfield with hw state readout quirks
851 *
852 * For various reasons the hw state readout code might not be able to
853 * completely faithfully read out the current state. These cases are
854 * tracked with quirk flags so that fastboot and state checker can act
855 * accordingly.
856 */
9953599b 857#define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS (1<<0) /* unreliable sync mode.flags */
bb760063
DV
858 unsigned long quirks;
859
cd202f69 860 unsigned fb_bits; /* framebuffers to flip */
ab1d3a0e
ML
861 bool update_pipe; /* can a fast modeset be performed? */
862 bool disable_cxsr;
caed361d 863 bool update_wm_pre, update_wm_post; /* watermarks are updated */
e8861675 864 bool fb_changed; /* fb on any of the planes is changed */
236c48e6 865 bool fifo_changed; /* FIFO split is changed */
bfd16b2a 866
37327abd
VS
867 /* Pipe source size (ie. panel fitter input size)
868 * All planes will be positioned inside this space,
869 * and get clipped at the edges. */
870 int pipe_src_w, pipe_src_h;
871
a7d1b3f4
VS
872 /*
873 * Pipe pixel rate, adjusted for
874 * panel fitter/pipe scaler downscaling.
875 */
876 unsigned int pixel_rate;
877
5bfe2ac0
DV
878 /* Whether to set up the PCH/FDI. Note that we never allow sharing
879 * between pch encoders and cpu encoders. */
880 bool has_pch_encoder;
50f3b016 881
e43823ec
JB
882 /* Are we sending infoframes on the attached port */
883 bool has_infoframe;
884
3b117c8f 885 /* CPU Transcoder for the pipe. Currently this can only differ from the
4d1de975
JN
886 * pipe on Haswell and later (where we have a special eDP transcoder)
887 * and Broxton (where we have special DSI transcoders). */
3b117c8f
DV
888 enum transcoder cpu_transcoder;
889
50f3b016
DV
890 /*
891 * Use reduced/limited/broadcast rbg range, compressing from the full
892 * range fed into the crtcs.
893 */
894 bool limited_color_range;
895
253c84c8
VS
896 /* Bitmask of encoder types (enum intel_output_type)
897 * driven by the pipe.
898 */
899 unsigned int output_types;
900
6897b4b5
DV
901 /* Whether we should send NULL infoframes. Required for audio. */
902 bool has_hdmi_sink;
903
9ed109a7
DV
904 /* Audio enabled on this pipe. Only valid if either has_hdmi_sink or
905 * has_dp_encoder is set. */
906 bool has_audio;
907
d8b32247
DV
908 /*
909 * Enable dithering, used when the selected pipe bpp doesn't match the
910 * plane bpp.
911 */
965e0c48 912 bool dither;
f47709a9 913
611032bf
MN
914 /*
915 * Dither gets enabled for 18bpp which causes CRC mismatch errors for
916 * compliance video pattern tests.
917 * Disable dither only if it is a compliance test request for
918 * 18bpp.
919 */
920 bool dither_force_disable;
921
f47709a9
DV
922 /* Controls for the clock computation, to override various stages. */
923 bool clock_set;
924
09ede541
DV
925 /* SDVO TV has a bunch of special case. To make multifunction encoders
926 * work correctly, we need to track this at runtime.*/
927 bool sdvo_tv_clock;
928
e29c22c0
DV
929 /*
930 * crtc bandwidth limit, don't increase pipe bpp or clock if not really
931 * required. This is set in the 2nd loop of calling encoder's
932 * ->compute_config if the first pick doesn't work out.
933 */
934 bool bw_constrained;
935
f47709a9
DV
936 /* Settings for the intel dpll used on pretty much everything but
937 * haswell. */
80ad9206 938 struct dpll dpll;
f47709a9 939
8106ddbd
ACO
940 /* Selected dpll when shared or NULL. */
941 struct intel_shared_dpll *shared_dpll;
a43f6e0f 942
66e985c0
DV
943 /* Actual register state of the dpll, for shared dpll cross-checking. */
944 struct intel_dpll_hw_state dpll_hw_state;
945
47eacbab
VS
946 /* DSI PLL registers */
947 struct {
948 u32 ctrl, div;
949 } dsi_pll;
950
965e0c48 951 int pipe_bpp;
6cf86a5e 952 struct intel_link_m_n dp_m_n;
ff9a6750 953
439d7ac0
PB
954 /* m2_n2 for eDP downclock */
955 struct intel_link_m_n dp_m2_n2;
f769cd24 956 bool has_drrs;
439d7ac0 957
4d90f2d5
VS
958 bool has_psr;
959 bool has_psr2;
960
ff9a6750
DV
961 /*
962 * Frequence the dpll for the port should run at. Differs from the
3c52f4eb
VS
963 * adjusted dotclock e.g. for DP or 12bpc hdmi mode. This is also
964 * already multiplied by pixel_multiplier.
df92b1e6 965 */
ff9a6750
DV
966 int port_clock;
967
6cc5f341
DV
968 /* Used by SDVO (and if we ever fix it, HDMI). */
969 unsigned pixel_multiplier;
2dd24552 970
d25236a3 971 u8 lane_count;
90a6b7b0 972
95a7a2ae
ID
973 /*
974 * Used by platforms having DP/HDMI PHY with programmable lane
975 * latency optimization.
976 */
d25236a3 977 u8 lane_lat_optim_mask;
95a7a2ae 978
53e9bf5e
VS
979 /* minimum acceptable voltage level */
980 u8 min_voltage_level;
981
2dd24552 982 /* Panel fitter controls for gen2-gen4 + VLV */
b074cec8
JB
983 struct {
984 u32 control;
985 u32 pgm_ratios;
68fc8742 986 u32 lvds_border_bits;
b074cec8
JB
987 } gmch_pfit;
988
989 /* Panel fitter placement and size for Ironlake+ */
990 struct {
991 u32 pos;
992 u32 size;
fd4daa9c 993 bool enabled;
fabf6e51 994 bool force_thru;
b074cec8 995 } pch_pfit;
33d29b14 996
ca3a0ff8 997 /* FDI configuration, only valid if has_pch_encoder is set. */
33d29b14 998 int fdi_lanes;
ca3a0ff8 999 struct intel_link_m_n fdi_m_n;
42db64ef
PZ
1000
1001 bool ips_enabled;
6e644626 1002 bool ips_force_disable;
cf532bb2 1003
f51be2e0
PZ
1004 bool enable_fbc;
1005
cf532bb2 1006 bool double_wide;
0e32b39c 1007
0e32b39c 1008 int pbn;
be41e336
CK
1009
1010 struct intel_crtc_scaler_state scaler_state;
99d736a2
ML
1011
1012 /* w/a for waiting 2 vblanks during crtc enable */
1013 enum pipe hsw_workaround_pipe;
d21fbe87
MR
1014
1015 /* IVB sprite scaling w/a (WaCxSRDisabledForSpriteScaling:ivb) */
1016 bool disable_lp_wm;
4e0963c7 1017
e8f1f02e 1018 struct intel_crtc_wm_state wm;
05dc698c
LL
1019
1020 /* Gamma mode programmed on the pipe */
d25236a3 1021 u32 gamma_mode;
e9728bd8 1022
a91de580
US
1023 /* CSC mode programmed on the pipe */
1024 u32 csc_mode;
1025
e9728bd8
VS
1026 /* bitmask of visible planes (enum plane_id) */
1027 u8 active_planes;
8e021151 1028 u8 nv12_planes;
02c52f1e 1029 u8 c8_planes;
15953637 1030
afbd8a72
VS
1031 /* bitmask of planes that will be updated during the commit */
1032 u8 update_planes;
1033
e5e70d4a
VS
1034 struct {
1035 u32 enable;
fbf08556
VS
1036 u32 gcp;
1037 union hdmi_infoframe avi;
1038 union hdmi_infoframe spd;
1039 union hdmi_infoframe hdmi;
e5e70d4a
VS
1040 } infoframes;
1041
15953637
SS
1042 /* HDMI scrambling status */
1043 bool hdmi_scrambling;
1044
1045 /* HDMI High TMDS char rate ratio */
1046 bool hdmi_high_tmds_clock_ratio;
60436fd4 1047
d9facae6
SS
1048 /* Output format RGB/YCBCR etc */
1049 enum intel_output_format output_format;
668b6c17
SS
1050
1051 /* Output down scaling is done in LSPCON device */
1052 bool lspcon_downsampling;
7b610f1f 1053
5f29ab23
VS
1054 /* enable pipe gamma? */
1055 bool gamma_enable;
1056
8271b2ef
VS
1057 /* enable pipe csc? */
1058 bool csc_enable;
1059
7b610f1f
MN
1060 /* Display Stream compression state */
1061 struct {
1062 bool compression_enable;
1063 bool dsc_split;
1064 u16 compressed_bpp;
1065 u8 slice_count;
1066 } dsc_params;
1067 struct drm_dsc_config dp_dsc_cfg;
240999cf
AS
1068
1069 /* Forward Error correction State */
1070 bool fec_enable;
b8cecdf5
DV
1071};
1072
79e53945
JB
1073struct intel_crtc {
1074 struct drm_crtc base;
80824003 1075 enum pipe pipe;
08a48469
DV
1076 /*
1077 * Whether the crtc and the connected output pipeline is active. Implies
1078 * that crtc->enabled is set, i.e. the current mode configuration has
1079 * some outputs connected to this crtc.
08a48469
DV
1080 */
1081 bool active;
d97d7b48 1082 u8 plane_ids_mask;
d8fc70b7 1083 unsigned long long enabled_power_domains;
02e792fb 1084 struct intel_overlay *overlay;
cda4b7d3 1085
6e3c9717 1086 struct intel_crtc_state *config;
b8cecdf5 1087
8664281b
PZ
1088 /* Access to these should be protected by dev_priv->irq_lock. */
1089 bool cpu_fifo_underrun_disabled;
1090 bool pch_fifo_underrun_disabled;
0b2ae6d7
VS
1091
1092 /* per-pipe watermark state */
1093 struct {
1094 /* watermarks currently being used */
4e0963c7
MR
1095 union {
1096 struct intel_pipe_wm ilk;
7eb4941f 1097 struct vlv_wm_state vlv;
04548cba 1098 struct g4x_wm_state g4x;
4e0963c7 1099 } active;
0b2ae6d7 1100 } wm;
8d7849db 1101
80715b2f 1102 int scanline_offset;
32b7eeec 1103
eb120ef6
JB
1104 struct {
1105 unsigned start_vbl_count;
1106 ktime_t start_vbl_time;
1107 int min_vbl, max_vbl;
1108 int scanline_start;
1109 } debug;
85a62bf9 1110
be41e336
CK
1111 /* scalers available on this crtc */
1112 int num_scalers;
79e53945
JB
1113};
1114
b840d907
JB
1115struct intel_plane {
1116 struct drm_plane base;
ed15030d 1117 enum i9xx_plane_id i9xx_plane;
b14e5848 1118 enum plane_id id;
b840d907 1119 enum pipe pipe;
cf1805e6 1120 bool has_fbc;
a38189c5 1121 bool has_ccs;
d25236a3 1122 u32 frontbuffer_bit;
526682e9 1123
cd5dcbf1
VS
1124 struct {
1125 u32 base, cntl, size;
1126 } cursor;
1127
8e7d688b
MR
1128 /*
1129 * NOTE: Do not place new plane state fields here (e.g., when adding
1130 * new plane properties). New runtime state should now be placed in
2fde1391 1131 * the intel_plane_state structure and accessed via plane_state.
8e7d688b
MR
1132 */
1133
ddd5713d
VS
1134 unsigned int (*max_stride)(struct intel_plane *plane,
1135 u32 pixel_format, u64 modifier,
1136 unsigned int rotation);
282dbf9b 1137 void (*update_plane)(struct intel_plane *plane,
2fde1391
ML
1138 const struct intel_crtc_state *crtc_state,
1139 const struct intel_plane_state *plane_state);
1ab554b0
ML
1140 void (*update_slave)(struct intel_plane *plane,
1141 const struct intel_crtc_state *crtc_state,
1142 const struct intel_plane_state *plane_state);
282dbf9b 1143 void (*disable_plane)(struct intel_plane *plane,
0dd14be3 1144 const struct intel_crtc_state *crtc_state);
eade6c89 1145 bool (*get_hw_state)(struct intel_plane *plane, enum pipe *pipe);
eb0f5044
VS
1146 int (*check_plane)(struct intel_crtc_state *crtc_state,
1147 struct intel_plane_state *plane_state);
b840d907
JB
1148};
1149
b445e3b0 1150struct intel_watermark_params {
ae9400ca
TU
1151 u16 fifo_size;
1152 u16 max_wm;
1153 u8 default_wm;
1154 u8 guard_size;
1155 u8 cacheline_size;
b445e3b0
ED
1156};
1157
1158struct cxsr_latency {
c13fb778
TU
1159 bool is_desktop : 1;
1160 bool is_ddr3 : 1;
44a655ca
TU
1161 u16 fsb_freq;
1162 u16 mem_freq;
1163 u16 display_sr;
1164 u16 display_hpll_disable;
1165 u16 cursor_sr;
1166 u16 cursor_hpll_disable;
b445e3b0
ED
1167};
1168
de419ab6 1169#define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base)
79e53945 1170#define to_intel_crtc(x) container_of(x, struct intel_crtc, base)
10f81c19 1171#define to_intel_crtc_state(x) container_of(x, struct intel_crtc_state, base)
5daa55eb 1172#define to_intel_connector(x) container_of(x, struct intel_connector, base)
4ef69c7a 1173#define to_intel_encoder(x) container_of(x, struct intel_encoder, base)
79e53945 1174#define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base)
b840d907 1175#define to_intel_plane(x) container_of(x, struct intel_plane, base)
ea2c67bb 1176#define to_intel_plane_state(x) container_of(x, struct intel_plane_state, base)
a268bcd7 1177#define intel_fb_obj(x) ((x) ? to_intel_bo((x)->obj[0]) : NULL)
79e53945 1178
f5bbfca3 1179struct intel_hdmi {
f0f59a00 1180 i915_reg_t hdmi_reg;
f5bbfca3 1181 int ddc_bus;
b1ba124d
VS
1182 struct {
1183 enum drm_dp_dual_mode_type type;
1184 int max_tmds_clock;
1185 } dp_dual_mode;
f5bbfca3
ED
1186 bool has_hdmi_sink;
1187 bool has_audio;
d8b4c43a 1188 struct intel_connector *attached_connector;
9c229127 1189 struct cec_notifier *cec_notifier;
f5bbfca3
ED
1190};
1191
0e32b39c 1192struct intel_dp_mst_encoder;
b091cd92 1193#define DP_MAX_DOWNSTREAM_PORTS 0x10
54d63ca6 1194
fe3cd48d
R
1195/*
1196 * enum link_m_n_set:
1197 * When platform provides two set of M_N registers for dp, we can
1198 * program them and switch between them incase of DRRS.
1199 * But When only one such register is provided, we have to program the
1200 * required divider value on that registers itself based on the DRRS state.
1201 *
1202 * M1_N1 : Program dp_m_n on M1_N1 registers
1203 * dp_m2_n2 on M2_N2 registers (If supported)
1204 *
1205 * M2_N2 : Program dp_m2_n2 on M1_N1 registers
1206 * M2_N2 registers are not supported
1207 */
1208
1209enum link_m_n_set {
1210 /* Sets the m1_n1 and m2_n2 */
1211 M1_N1 = 0,
1212 M2_N2
1213};
1214
c1617abc
MN
1215struct intel_dp_compliance_data {
1216 unsigned long edid;
d25236a3
JN
1217 u8 video_pattern;
1218 u16 hdisplay, vdisplay;
1219 u8 bpc;
c1617abc
MN
1220};
1221
1222struct intel_dp_compliance {
1223 unsigned long test_type;
1224 struct intel_dp_compliance_data test_data;
1225 bool test_active;
da15f7cb
MN
1226 int test_link_rate;
1227 u8 test_lane_count;
c1617abc
MN
1228};
1229
54d63ca6 1230struct intel_dp {
f0f59a00 1231 i915_reg_t output_reg;
d25236a3 1232 u32 DP;
901c2daf 1233 int link_rate;
d25236a3
JN
1234 u8 lane_count;
1235 u8 sink_count;
64ee2fd2 1236 bool link_mst;
edb2e530 1237 bool link_trained;
54d63ca6 1238 bool has_audio;
d7e8ef02 1239 bool reset_link_params;
d25236a3
JN
1240 u8 dpcd[DP_RECEIVER_CAP_SIZE];
1241 u8 psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE];
1242 u8 downstream_ports[DP_MAX_DOWNSTREAM_PORTS];
1243 u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
93ac092f 1244 u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE];
08cadae8 1245 u8 fec_capable;
55cfc580
JN
1246 /* source rates */
1247 int num_source_rates;
1248 const int *source_rates;
68f357cb
JN
1249 /* sink rates as reported by DP_MAX_LINK_RATE/DP_SUPPORTED_LINK_RATES */
1250 int num_sink_rates;
94ca719e 1251 int sink_rates[DP_MAX_SUPPORTED_RATES];
68f357cb 1252 bool use_rate_select;
975ee5fc
JN
1253 /* intersection of source and sink rates */
1254 int num_common_rates;
1255 int common_rates[DP_MAX_SUPPORTED_RATES];
e6c0c64a
JN
1256 /* Max lane count for the current link */
1257 int max_link_lane_count;
1258 /* Max rate for the current link */
1259 int max_link_rate;
7b3fc170 1260 /* sink or branch descriptor */
84c36753 1261 struct drm_dp_desc desc;
9d1a1031 1262 struct drm_dp_aux aux;
d25236a3 1263 u8 train_set[4];
54d63ca6
SK
1264 int panel_power_up_delay;
1265 int panel_power_down_delay;
1266 int panel_power_cycle_delay;
1267 int backlight_on_delay;
1268 int backlight_off_delay;
54d63ca6
SK
1269 struct delayed_work panel_vdd_work;
1270 bool want_panel_vdd;
dce56b3c
PZ
1271 unsigned long last_power_on;
1272 unsigned long last_backlight_off;
d28d4731 1273 ktime_t panel_power_off_time;
5d42f82a 1274
01527b31
CT
1275 struct notifier_block edp_notifier;
1276
a4a5d2f8
VS
1277 /*
1278 * Pipe whose power sequencer is currently locked into
1279 * this port. Only relevant on VLV/CHV.
1280 */
1281 enum pipe pps_pipe;
9f2bdb00
VS
1282 /*
1283 * Pipe currently driving the port. Used for preventing
1284 * the use of the PPS for any pipe currentrly driving
1285 * external DP as that will mess things up on VLV.
1286 */
1287 enum pipe active_pipe;
78597996
ID
1288 /*
1289 * Set if the sequencer may be reset due to a power transition,
1290 * requiring a reinitialization. Only relevant on BXT.
1291 */
1292 bool pps_reset;
36b5f425 1293 struct edp_power_seq pps_delays;
a4a5d2f8 1294
0e32b39c
DA
1295 bool can_mst; /* this port supports mst */
1296 bool is_mst;
19e0b4ca 1297 int active_mst_links;
0e32b39c 1298 /* connector directly attached - won't be use for modeset in mst world */
dd06f90e 1299 struct intel_connector *attached_connector;
ec5b01dd 1300
0e32b39c
DA
1301 /* mst connector list */
1302 struct intel_dp_mst_encoder *mst_encoders[I915_MAX_PIPES];
1303 struct drm_dp_mst_topology_mgr mst_mgr;
1304
d25236a3 1305 u32 (*get_aux_clock_divider)(struct intel_dp *dp, int index);
153b1100
DL
1306 /*
1307 * This function returns the value we have to program the AUX_CTL
1308 * register with to kick off an AUX transaction.
1309 */
d25236a3
JN
1310 u32 (*get_aux_send_ctl)(struct intel_dp *dp, int send_bytes,
1311 u32 aux_clock_divider);
ad64217b 1312
4904fa66
VS
1313 i915_reg_t (*aux_ch_ctl_reg)(struct intel_dp *dp);
1314 i915_reg_t (*aux_ch_data_reg)(struct intel_dp *dp, int index);
1315
ad64217b
ACO
1316 /* This is called before a link training is starterd */
1317 void (*prepare_link_retrain)(struct intel_dp *intel_dp);
1318
c5d5ab7a 1319 /* Displayport compliance testing */
c1617abc 1320 struct intel_dp_compliance compliance;
e845f099
MN
1321
1322 /* Display stream compression testing */
1323 bool force_dsc_en;
54d63ca6
SK
1324};
1325
96e35598
SS
1326enum lspcon_vendor {
1327 LSPCON_VENDOR_MCA,
1328 LSPCON_VENDOR_PARADE
1329};
1330
dbe9e61b
SS
1331struct intel_lspcon {
1332 bool active;
1333 enum drm_lspcon_mode mode;
96e35598 1334 enum lspcon_vendor vendor;
dbe9e61b
SS
1335};
1336
da63a9f2
PZ
1337struct intel_digital_port {
1338 struct intel_encoder base;
bcf53de4 1339 u32 saved_port_bits;
da63a9f2
PZ
1340 struct intel_dp dp;
1341 struct intel_hdmi hdmi;
dbe9e61b 1342 struct intel_lspcon lspcon;
b2c5c181 1343 enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool);
b0b33846 1344 bool release_cl2_override;
d25236a3 1345 u8 max_lanes;
563d22a0
ID
1346 /* Used for DP and ICL+ TypeC/DP and TypeC/HDMI ports. */
1347 enum aux_ch aux_ch;
62b69566 1348 enum intel_display_power_domain ddi_io_power_domain;
f6bff60e 1349 bool tc_legacy_port:1;
6075546f 1350 enum tc_port_type tc_type;
f99be1b3 1351
790ea70c 1352 void (*write_infoframe)(struct intel_encoder *encoder,
f99be1b3 1353 const struct intel_crtc_state *crtc_state,
1d776538 1354 unsigned int type,
f99be1b3 1355 const void *frame, ssize_t len);
790ea70c 1356 void (*set_infoframes)(struct intel_encoder *encoder,
f99be1b3
VS
1357 bool enable,
1358 const struct intel_crtc_state *crtc_state,
1359 const struct drm_connector_state *conn_state);
509efa2b 1360 u32 (*infoframes_enabled)(struct intel_encoder *encoder,
f99be1b3 1361 const struct intel_crtc_state *pipe_config);
da63a9f2
PZ
1362};
1363
0e32b39c
DA
1364struct intel_dp_mst_encoder {
1365 struct intel_encoder base;
1366 enum pipe pipe;
1367 struct intel_digital_port *primary;
0552f765 1368 struct intel_connector *connector;
0e32b39c
DA
1369};
1370
65d64cc5 1371static inline enum dpio_channel
89b667f8
JB
1372vlv_dport_to_channel(struct intel_digital_port *dport)
1373{
8f4f2797 1374 switch (dport->base.port) {
89b667f8 1375 case PORT_B:
00fc31b7 1376 case PORT_D:
e4607fcf 1377 return DPIO_CH0;
89b667f8 1378 case PORT_C:
e4607fcf 1379 return DPIO_CH1;
89b667f8
JB
1380 default:
1381 BUG();
1382 }
1383}
1384
65d64cc5
VS
1385static inline enum dpio_phy
1386vlv_dport_to_phy(struct intel_digital_port *dport)
1387{
8f4f2797 1388 switch (dport->base.port) {
65d64cc5
VS
1389 case PORT_B:
1390 case PORT_C:
1391 return DPIO_PHY0;
1392 case PORT_D:
1393 return DPIO_PHY1;
1394 default:
1395 BUG();
1396 }
1397}
1398
1399static inline enum dpio_channel
eb69b0e5
CML
1400vlv_pipe_to_channel(enum pipe pipe)
1401{
1402 switch (pipe) {
1403 case PIPE_A:
1404 case PIPE_C:
1405 return DPIO_CH0;
1406 case PIPE_B:
1407 return DPIO_CH1;
1408 default:
1409 BUG();
1410 }
1411}
1412
e2af48c6 1413static inline struct intel_crtc *
b91eb5cc 1414intel_get_crtc_for_pipe(struct drm_i915_private *dev_priv, enum pipe pipe)
f875c15a 1415{
f875c15a
CW
1416 return dev_priv->pipe_to_crtc_mapping[pipe];
1417}
1418
e2af48c6 1419static inline struct intel_crtc *
ed15030d 1420intel_get_crtc_for_plane(struct drm_i915_private *dev_priv, enum i9xx_plane_id plane)
417ae147 1421{
417ae147
CW
1422 return dev_priv->plane_to_crtc_mapping[plane];
1423}
1424
5f1aae65 1425struct intel_load_detect_pipe {
edde3617 1426 struct drm_atomic_state *restore_state;
5f1aae65 1427};
79e53945 1428
5f1aae65
PZ
1429static inline struct intel_encoder *
1430intel_attached_encoder(struct drm_connector *connector)
df0e9248
CW
1431{
1432 return to_intel_connector(connector)->encoder;
1433}
1434
4ef03f83 1435static inline bool intel_encoder_is_dig_port(struct intel_encoder *encoder)
da63a9f2 1436{
4ef03f83 1437 switch (encoder->type) {
7e732cac 1438 case INTEL_OUTPUT_DDI:
9a5da00b
ACO
1439 case INTEL_OUTPUT_DP:
1440 case INTEL_OUTPUT_EDP:
1441 case INTEL_OUTPUT_HDMI:
4ef03f83
VS
1442 return true;
1443 default:
1444 return false;
1445 }
1446}
1447
1448static inline struct intel_digital_port *
1449enc_to_dig_port(struct drm_encoder *encoder)
1450{
1451 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
1452
1453 if (intel_encoder_is_dig_port(intel_encoder))
9a5da00b
ACO
1454 return container_of(encoder, struct intel_digital_port,
1455 base.base);
4ef03f83 1456 else
9a5da00b 1457 return NULL;
9ff8c9ba
ID
1458}
1459
bdc93fe0
R
1460static inline struct intel_digital_port *
1461conn_to_dig_port(struct intel_connector *connector)
1462{
1463 return enc_to_dig_port(&intel_attached_encoder(&connector->base)->base);
1464}
1465
0e32b39c
DA
1466static inline struct intel_dp_mst_encoder *
1467enc_to_mst(struct drm_encoder *encoder)
1468{
1469 return container_of(encoder, struct intel_dp_mst_encoder, base.base);
1470}
1471
9ff8c9ba
ID
1472static inline struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
1473{
1474 return &enc_to_dig_port(encoder)->dp;
da63a9f2
PZ
1475}
1476
14aa521c
VS
1477static inline bool intel_encoder_is_dp(struct intel_encoder *encoder)
1478{
1479 switch (encoder->type) {
1480 case INTEL_OUTPUT_DP:
1481 case INTEL_OUTPUT_EDP:
1482 return true;
1483 case INTEL_OUTPUT_DDI:
1484 /* Skip pure HDMI/DVI DDI encoders */
1485 return i915_mmio_reg_valid(enc_to_intel_dp(&encoder->base)->output_reg);
1486 default:
1487 return false;
1488 }
1489}
1490
06c812d7
SS
1491static inline struct intel_lspcon *
1492enc_to_intel_lspcon(struct drm_encoder *encoder)
1493{
1494 return &enc_to_dig_port(encoder)->lspcon;
1495}
1496
da63a9f2
PZ
1497static inline struct intel_digital_port *
1498dp_to_dig_port(struct intel_dp *intel_dp)
1499{
1500 return container_of(intel_dp, struct intel_digital_port, dp);
1501}
1502
dd75f6dd
ID
1503static inline struct intel_lspcon *
1504dp_to_lspcon(struct intel_dp *intel_dp)
1505{
1506 return &dp_to_dig_port(intel_dp)->lspcon;
1507}
1508
de25eb7f
RV
1509static inline struct drm_i915_private *
1510dp_to_i915(struct intel_dp *intel_dp)
1511{
1512 return to_i915(dp_to_dig_port(intel_dp)->base.base.dev);
1513}
1514
da63a9f2
PZ
1515static inline struct intel_digital_port *
1516hdmi_to_dig_port(struct intel_hdmi *intel_hdmi)
1517{
1518 return container_of(intel_hdmi, struct intel_digital_port, hdmi);
7739c33b
PZ
1519}
1520
1ab554b0
ML
1521static inline struct intel_plane_state *
1522intel_atomic_get_plane_state(struct intel_atomic_state *state,
1523 struct intel_plane *plane)
1524{
1525 struct drm_plane_state *ret =
1526 drm_atomic_get_plane_state(&state->base, &plane->base);
1527
1528 if (IS_ERR(ret))
1529 return ERR_CAST(ret);
1530
1531 return to_intel_plane_state(ret);
1532}
1533
1534static inline struct intel_plane_state *
1535intel_atomic_get_old_plane_state(struct intel_atomic_state *state,
1536 struct intel_plane *plane)
1537{
1538 return to_intel_plane_state(drm_atomic_get_old_plane_state(&state->base,
1539 &plane->base));
1540}
1541
b2b55502
VS
1542static inline struct intel_plane_state *
1543intel_atomic_get_new_plane_state(struct intel_atomic_state *state,
1544 struct intel_plane *plane)
1545{
1546 return to_intel_plane_state(drm_atomic_get_new_plane_state(&state->base,
1547 &plane->base));
1548}
1549
7b510451
VS
1550static inline struct intel_crtc_state *
1551intel_atomic_get_old_crtc_state(struct intel_atomic_state *state,
1552 struct intel_crtc *crtc)
1553{
1554 return to_intel_crtc_state(drm_atomic_get_old_crtc_state(&state->base,
1555 &crtc->base));
1556}
1557
d3a8fb32
VS
1558static inline struct intel_crtc_state *
1559intel_atomic_get_new_crtc_state(struct intel_atomic_state *state,
1560 struct intel_crtc *crtc)
1561{
1562 return to_intel_crtc_state(drm_atomic_get_new_crtc_state(&state->base,
1563 &crtc->base));
1564}
1565
47339cd9 1566/* intel_fifo_underrun.c */
a72e4c9f 1567bool intel_set_cpu_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
87440425 1568 enum pipe pipe, bool enable);
a72e4c9f 1569bool intel_set_pch_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
a2196033 1570 enum pipe pch_transcoder,
87440425 1571 bool enable);
1f7247c0
DV
1572void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
1573 enum pipe pipe);
1574void intel_pch_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
a2196033 1575 enum pipe pch_transcoder);
aca7b684
VS
1576void intel_check_cpu_fifo_underruns(struct drm_i915_private *dev_priv);
1577void intel_check_pch_fifo_underruns(struct drm_i915_private *dev_priv);
47339cd9
DV
1578
1579/* i915_irq.c */
d25236a3
JN
1580void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, u32 mask);
1581void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, u32 mask);
f4e9af4f
AG
1582void gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
1583void gen6_unmask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
d02b98b8 1584void gen11_reset_rps_interrupts(struct drm_i915_private *dev_priv);
dc97997a 1585void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv);
91d14251
TU
1586void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv);
1587void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv);
1300b4f8
CW
1588
1589static inline u32 gen6_sanitize_rps_pm_mask(const struct drm_i915_private *i915,
1590 u32 mask)
1591{
562d9bae 1592 return mask & ~i915->gt_pm.rps.pm_intrmsk_mbz;
1300b4f8
CW
1593}
1594
b963291c
DV
1595void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv);
1596void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv);
9df7575f
JB
1597static inline bool intel_irqs_enabled(struct drm_i915_private *dev_priv)
1598{
1599 /*
1600 * We only use drm_irq_uninstall() at unload and VT switch, so
1601 * this is the only thing we need to check.
1602 */
ad1443f0 1603 return dev_priv->runtime_pm.irqs_enabled;
9df7575f
JB
1604}
1605
a225f079 1606int intel_get_crtc_scanline(struct intel_crtc *crtc);
4c6c03be 1607void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
001bd2cb 1608 u8 pipe_mask);
aae8ba84 1609void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
001bd2cb 1610 u8 pipe_mask);
26705e20
SAK
1611void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv);
1612void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv);
1613void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv);
5f1aae65 1614
5f1aae65 1615/* intel_crt.c */
6102a8ee
VS
1616bool intel_crt_port_enabled(struct drm_i915_private *dev_priv,
1617 i915_reg_t adpa_reg, enum pipe *pipe);
c39055b0 1618void intel_crt_init(struct drm_i915_private *dev_priv);
9504a892 1619void intel_crt_reset(struct drm_encoder *encoder);
5f1aae65
PZ
1620
1621/* intel_ddi.c */
b7076546 1622void intel_ddi_fdi_post_disable(struct intel_encoder *intel_encoder,
5f88a9c6
VS
1623 const struct intel_crtc_state *old_crtc_state,
1624 const struct drm_connector_state *old_conn_state);
dc4a1094
ACO
1625void hsw_fdi_link_train(struct intel_crtc *crtc,
1626 const struct intel_crtc_state *crtc_state);
c39055b0 1627void intel_ddi_init(struct drm_i915_private *dev_priv, enum port port);
87440425 1628bool intel_ddi_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe);
3dc38eea 1629void intel_ddi_enable_transcoder_func(const struct intel_crtc_state *crtc_state);
90c3e219 1630void intel_ddi_disable_transcoder_func(const struct intel_crtc_state *crtc_state);
3dc38eea
ACO
1631void intel_ddi_enable_pipe_clock(const struct intel_crtc_state *crtc_state);
1632void intel_ddi_disable_pipe_clock(const struct intel_crtc_state *crtc_state);
3dc38eea 1633void intel_ddi_set_pipe_settings(const struct intel_crtc_state *crtc_state);
ad64217b 1634void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp);
87440425 1635bool intel_ddi_connector_get_hw_state(struct intel_connector *intel_connector);
87440425 1636void intel_ddi_get_config(struct intel_encoder *encoder,
5cec258b 1637 struct intel_crtc_state *pipe_config);
5f1aae65 1638
3dc38eea
ACO
1639void intel_ddi_set_vc_payload_alloc(const struct intel_crtc_state *crtc_state,
1640 bool state);
53e9bf5e
VS
1641void intel_ddi_compute_min_voltage_level(struct drm_i915_private *dev_priv,
1642 struct intel_crtc_state *crtc_state);
d509af6c 1643u32 bxt_signal_levels(struct intel_dp *intel_dp);
d25236a3 1644u32 ddi_signal_levels(struct intel_dp *intel_dp);
ffe5111e 1645u8 intel_ddi_dp_voltage_max(struct intel_encoder *encoder);
4718a365
VS
1646u8 intel_ddi_dp_pre_emphasis_max(struct intel_encoder *encoder,
1647 u8 voltage_swing);
2320175f
SP
1648int intel_ddi_toggle_hdcp_signalling(struct intel_encoder *intel_encoder,
1649 bool enable);
70332ac5 1650void icl_sanitize_encoder_pll_mapping(struct intel_encoder *encoder);
8327af28
VK
1651int cnl_calc_wrpll_link(struct drm_i915_private *dev_priv,
1652 enum intel_dpll_id pll_id);
ffe5111e 1653
d88c4afd 1654unsigned int intel_fb_align_height(const struct drm_framebuffer *fb,
5d2a1950 1655 int color_plane, unsigned int height);
b680c37a 1656
7c10a2b5 1657/* intel_audio.c */
88212941 1658void intel_init_audio_hooks(struct drm_i915_private *dev_priv);
bbf35e9d
ML
1659void intel_audio_codec_enable(struct intel_encoder *encoder,
1660 const struct intel_crtc_state *crtc_state,
1661 const struct drm_connector_state *conn_state);
8ec47de2
VS
1662void intel_audio_codec_disable(struct intel_encoder *encoder,
1663 const struct intel_crtc_state *old_crtc_state,
1664 const struct drm_connector_state *old_conn_state);
58fddc28
ID
1665void i915_audio_component_init(struct drm_i915_private *dev_priv);
1666void i915_audio_component_cleanup(struct drm_i915_private *dev_priv);
eef57324
JA
1667void intel_audio_init(struct drm_i915_private *dev_priv);
1668void intel_audio_deinit(struct drm_i915_private *dev_priv);
7c10a2b5 1669
7ff89ca2 1670/* intel_cdclk.c */
d305e061 1671int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state);
e1cd3325
PZ
1672void skl_init_cdclk(struct drm_i915_private *dev_priv);
1673void skl_uninit_cdclk(struct drm_i915_private *dev_priv);
d8d4a512
VS
1674void cnl_init_cdclk(struct drm_i915_private *dev_priv);
1675void cnl_uninit_cdclk(struct drm_i915_private *dev_priv);
e1cd3325
PZ
1676void bxt_init_cdclk(struct drm_i915_private *dev_priv);
1677void bxt_uninit_cdclk(struct drm_i915_private *dev_priv);
186a277e
PZ
1678void icl_init_cdclk(struct drm_i915_private *dev_priv);
1679void icl_uninit_cdclk(struct drm_i915_private *dev_priv);
7ff89ca2
VS
1680void intel_init_cdclk_hooks(struct drm_i915_private *dev_priv);
1681void intel_update_max_cdclk(struct drm_i915_private *dev_priv);
1682void intel_update_cdclk(struct drm_i915_private *dev_priv);
1683void intel_update_rawclk(struct drm_i915_private *dev_priv);
64600bd5 1684bool intel_cdclk_needs_modeset(const struct intel_cdclk_state *a,
49cd97a3 1685 const struct intel_cdclk_state *b);
64600bd5
VS
1686bool intel_cdclk_changed(const struct intel_cdclk_state *a,
1687 const struct intel_cdclk_state *b);
b0587e4d
VS
1688void intel_set_cdclk(struct drm_i915_private *dev_priv,
1689 const struct intel_cdclk_state *cdclk_state);
cfddadc9
VS
1690void intel_dump_cdclk_state(const struct intel_cdclk_state *cdclk_state,
1691 const char *context);
7ff89ca2 1692
b680c37a 1693/* intel_display.c */
2ee0da16
VS
1694void i830_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
1695void i830_disable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
a2196033 1696enum pipe intel_crtc_pch_transcoder(struct intel_crtc *crtc);
49cd97a3 1697int vlv_get_hpll_vco(struct drm_i915_private *dev_priv);
c30fec65
VS
1698int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
1699 const char *name, u32 reg, int ref_freq);
7ff89ca2
VS
1700int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
1701 const char *name, u32 reg);
b7076546
ML
1702void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv);
1703void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
88212941 1704void intel_init_display_hooks(struct drm_i915_private *dev_priv);
6687c906 1705unsigned int intel_fb_xy_to_linear(int x, int y,
2949056c
VS
1706 const struct intel_plane_state *state,
1707 int plane);
6687c906 1708void intel_add_fb_offsets(int *x, int *y,
2949056c 1709 const struct intel_plane_state *state, int plane);
1663b9d6 1710unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info);
49d73912 1711bool intel_has_pending_fb_unpin(struct drm_i915_private *dev_priv);
7d993739
TU
1712void intel_mark_busy(struct drm_i915_private *dev_priv);
1713void intel_mark_idle(struct drm_i915_private *dev_priv);
70e0bd74 1714int intel_display_suspend(struct drm_device *dev);
8090ba8c 1715void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv);
87440425 1716void intel_encoder_destroy(struct drm_encoder *encoder);
de330815
VS
1717struct drm_display_mode *
1718intel_encoder_current_mode(struct intel_encoder *encoder);
176597a1 1719bool intel_port_is_combophy(struct drm_i915_private *dev_priv, enum port port);
ac213c1b
PZ
1720bool intel_port_is_tc(struct drm_i915_private *dev_priv, enum port port);
1721enum tc_port intel_port_to_tc(struct drm_i915_private *dev_priv,
1722 enum port port);
6a20fe7b
VS
1723int intel_get_pipe_from_crtc_id_ioctl(struct drm_device *dev, void *data,
1724 struct drm_file *file_priv);
87440425
PZ
1725enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1726 enum pipe pipe);
2d84d2b3
VS
1727static inline bool
1728intel_crtc_has_type(const struct intel_crtc_state *crtc_state,
1729 enum intel_output_type type)
1730{
1731 return crtc_state->output_types & (1 << type);
1732}
37a5650b
VS
1733static inline bool
1734intel_crtc_has_dp_encoder(const struct intel_crtc_state *crtc_state)
1735{
1736 return crtc_state->output_types &
cca0502b 1737 ((1 << INTEL_OUTPUT_DP) |
37a5650b
VS
1738 (1 << INTEL_OUTPUT_DP_MST) |
1739 (1 << INTEL_OUTPUT_EDP));
1740}
4f905cf9 1741static inline void
0f0f74bc 1742intel_wait_for_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
4f905cf9 1743{
0f0f74bc 1744 drm_wait_one_vblank(&dev_priv->drm, pipe);
4f905cf9 1745}
0c241d5b 1746static inline void
0f0f74bc 1747intel_wait_for_vblank_if_active(struct drm_i915_private *dev_priv, int pipe)
0c241d5b 1748{
b91eb5cc 1749 const struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
0c241d5b
VS
1750
1751 if (crtc->active)
0f0f74bc 1752 intel_wait_for_vblank(dev_priv, pipe);
0c241d5b 1753}
a2991414
ML
1754
1755u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc);
1756
87440425 1757int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp);
e4607fcf 1758void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1759 struct intel_digital_port *dport,
1760 unsigned int expected_mask);
6c5ed5ae 1761int intel_get_load_detect_pipe(struct drm_connector *connector,
bacdcd55 1762 const struct drm_display_mode *mode,
6c5ed5ae
ML
1763 struct intel_load_detect_pipe *old,
1764 struct drm_modeset_acquire_ctx *ctx);
87440425 1765void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
1766 struct intel_load_detect_pipe *old,
1767 struct drm_modeset_acquire_ctx *ctx);
058d88c4 1768struct i915_vma *
5935485f 1769intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
f5929c53 1770 const struct i915_ggtt_view *view,
f7a02ad7 1771 bool uses_fence,
5935485f
CW
1772 unsigned long *out_flags);
1773void intel_unpin_fb_vma(struct i915_vma *vma, unsigned long flags);
a8bb6818 1774struct drm_framebuffer *
24dbf51a
CW
1775intel_framebuffer_create(struct drm_i915_gem_object *obj,
1776 struct drm_mode_fb_cmd2 *mode_cmd);
6beb8c23 1777int intel_prepare_plane_fb(struct drm_plane *plane,
1832040d 1778 struct drm_plane_state *new_state);
38f3ce3a 1779void intel_cleanup_plane_fb(struct drm_plane *plane,
1832040d 1780 struct drm_plane_state *old_state);
a98b3431
MR
1781int intel_plane_atomic_get_property(struct drm_plane *plane,
1782 const struct drm_plane_state *state,
1783 struct drm_property *property,
d25236a3 1784 u64 *val);
a98b3431
MR
1785int intel_plane_atomic_set_property(struct drm_plane *plane,
1786 struct drm_plane_state *state,
1787 struct drm_property *property,
d25236a3 1788 u64 val);
b2b55502
VS
1789int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_crtc_state,
1790 struct drm_crtc_state *crtc_state,
1791 const struct intel_plane_state *old_plane_state,
da20eabd 1792 struct drm_plane_state *plane_state);
716c2e55 1793
7abd4b35
ACO
1794void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1795 enum pipe pipe);
1796
30ad9814 1797int vlv_force_pll_on(struct drm_i915_private *dev_priv, enum pipe pipe,
3f36b937 1798 const struct dpll *dpll);
30ad9814 1799void vlv_force_pll_off(struct drm_i915_private *dev_priv, enum pipe pipe);
8802e5b6 1800int lpt_get_iclkip(struct drm_i915_private *dev_priv);
d288f65f 1801
716c2e55 1802/* modesetting asserts */
b680c37a
DV
1803void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1804 enum pipe pipe);
55607e8a
DV
1805void assert_pll(struct drm_i915_private *dev_priv,
1806 enum pipe pipe, bool state);
1807#define assert_pll_enabled(d, p) assert_pll(d, p, true)
1808#define assert_pll_disabled(d, p) assert_pll(d, p, false)
8563b1e8
LL
1809void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state);
1810#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1811#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
55607e8a
DV
1812void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1813 enum pipe pipe, bool state);
1814#define assert_fdi_rx_pll_enabled(d, p) assert_fdi_rx_pll(d, p, true)
1815#define assert_fdi_rx_pll_disabled(d, p) assert_fdi_rx_pll(d, p, false)
87440425 1816void assert_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, bool state);
b840d907
JB
1817#define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
1818#define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
c033666a
CW
1819void intel_prepare_reset(struct drm_i915_private *dev_priv);
1820void intel_finish_reset(struct drm_i915_private *dev_priv);
a14cb6fc
PZ
1821void hsw_enable_pc8(struct drm_i915_private *dev_priv);
1822void hsw_disable_pc8(struct drm_i915_private *dev_priv);
da2f41d1 1823void gen9_sanitize_dc_state(struct drm_i915_private *dev_priv);
664326f8
SK
1824void bxt_enable_dc9(struct drm_i915_private *dev_priv);
1825void bxt_disable_dc9(struct drm_i915_private *dev_priv);
f62c79b3 1826void gen9_enable_dc5(struct drm_i915_private *dev_priv);
c89e39f3 1827unsigned int skl_cdclk_get_vco(unsigned int freq);
3e68928b 1828void skl_enable_dc6(struct drm_i915_private *dev_priv);
87440425 1829void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 1830 struct intel_crtc_state *pipe_config);
4c354754
ML
1831void intel_dp_set_m_n(const struct intel_crtc_state *crtc_state,
1832 enum link_m_n_set m_n);
87440425 1833int intel_dotclock_calculate(int link_freq, const struct intel_link_m_n *m_n);
5ab7b0b7 1834bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
9e2c8475
ACO
1835 struct dpll *best_clock);
1836int chv_calc_dpll_params(int refclk, struct dpll *pll_clock);
dccbea3b 1837
525b9311 1838bool intel_crtc_active(struct intel_crtc *crtc);
24f28450 1839bool hsw_crtc_state_ips_capable(const struct intel_crtc_state *crtc_state);
199ea381
ML
1840void hsw_enable_ips(const struct intel_crtc_state *crtc_state);
1841void hsw_disable_ips(const struct intel_crtc_state *crtc_state);
79f255a0 1842enum intel_display_power_domain intel_port_to_power_domain(enum port port);
337837ac
ID
1843enum intel_display_power_domain
1844intel_aux_power_domain(struct intel_digital_port *dig_port);
f6a83288 1845void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 1846 struct intel_crtc_state *pipe_config);
d52ad9cb
ML
1847void intel_crtc_arm_fifo_underrun(struct intel_crtc *crtc,
1848 struct intel_crtc_state *crtc_state);
86adf9d7 1849
e7a278a3 1850u16 skl_scaler_calc_phase(int sub, int scale, bool chroma_center);
e435d6e5 1851int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state);
4e0b83a5
VS
1852int skl_max_scale(const struct intel_crtc_state *crtc_state,
1853 u32 pixel_format);
8ea30864 1854
be1e3415
CW
1855static inline u32 intel_plane_ggtt_offset(const struct intel_plane_state *state)
1856{
1857 return i915_ggtt_offset(state->vma);
1858}
dedf278c 1859
4036c78c
JA
1860u32 glk_plane_color_ctl(const struct intel_crtc_state *crtc_state,
1861 const struct intel_plane_state *plane_state);
7eb31a0b 1862u32 glk_plane_color_ctl_crtc(const struct intel_crtc_state *crtc_state);
2e881264
VS
1863u32 skl_plane_ctl(const struct intel_crtc_state *crtc_state,
1864 const struct intel_plane_state *plane_state);
7eb31a0b 1865u32 skl_plane_ctl_crtc(const struct intel_crtc_state *crtc_state);
df79cf44
VS
1866u32 skl_plane_stride(const struct intel_plane_state *plane_state,
1867 int plane);
73266595 1868int skl_check_plane_surface(struct intel_plane_state *plane_state);
f9407ae1 1869int i9xx_check_plane_surface(struct intel_plane_state *plane_state);
ddf34319 1870int skl_format_to_fourcc(int format, bool rgb_order, bool alpha);
ddd5713d
VS
1871unsigned int i9xx_plane_max_stride(struct intel_plane *plane,
1872 u32 pixel_format, u64 modifier,
1873 unsigned int rotation);
121920fa 1874
360fa66a 1875/* intel_connector.c */
1c21348d
JN
1876int intel_connector_init(struct intel_connector *connector);
1877struct intel_connector *intel_connector_alloc(void);
1878void intel_connector_free(struct intel_connector *connector);
1879void intel_connector_destroy(struct drm_connector *connector);
1880int intel_connector_register(struct drm_connector *connector);
1881void intel_connector_unregister(struct drm_connector *connector);
1882void intel_connector_attach_encoder(struct intel_connector *connector,
1883 struct intel_encoder *encoder);
1884bool intel_connector_get_hw_state(struct intel_connector *connector);
046c9bca 1885enum pipe intel_connector_get_pipe(struct intel_connector *connector);
360fa66a
JN
1886int intel_connector_update_modes(struct drm_connector *connector,
1887 struct edid *edid);
1888int intel_ddc_get_modes(struct drm_connector *c, struct i2c_adapter *adapter);
1889void intel_attach_force_audio_property(struct drm_connector *connector);
1890void intel_attach_broadcast_rgb_property(struct drm_connector *connector);
1891void intel_attach_aspect_ratio_property(struct drm_connector *connector);
1892
eb805623 1893/* intel_csr.c */
f4448375 1894void intel_csr_ucode_init(struct drm_i915_private *);
2abc525b 1895void intel_csr_load_program(struct drm_i915_private *);
f4448375 1896void intel_csr_ucode_fini(struct drm_i915_private *);
f74ed08d
ID
1897void intel_csr_ucode_suspend(struct drm_i915_private *);
1898void intel_csr_ucode_resume(struct drm_i915_private *);
eb805623 1899
5f1aae65 1900/* intel_dp.c */
59b74c49
VS
1901bool intel_dp_port_enabled(struct drm_i915_private *dev_priv,
1902 i915_reg_t dp_reg, enum port port,
1903 enum pipe *pipe);
c39055b0
ACO
1904bool intel_dp_init(struct drm_i915_private *dev_priv, i915_reg_t output_reg,
1905 enum port port);
87440425
PZ
1906bool intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
1907 struct intel_connector *intel_connector);
901c2daf 1908void intel_dp_set_link_params(struct intel_dp *intel_dp,
d25236a3 1909 int link_rate, u8 lane_count,
dfa10480 1910 bool link_mst);
fdb14d33 1911int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
d25236a3 1912 int link_rate, u8 lane_count);
87440425 1913void intel_dp_start_link_train(struct intel_dp *intel_dp);
87440425 1914void intel_dp_stop_link_train(struct intel_dp *intel_dp);
c85d200e
VS
1915int intel_dp_retrain_link(struct intel_encoder *encoder,
1916 struct drm_modeset_acquire_ctx *ctx);
87440425 1917void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode);
2279298d
GS
1918void intel_dp_sink_set_decompression_state(struct intel_dp *intel_dp,
1919 const struct intel_crtc_state *crtc_state,
1920 bool enable);
bf93ba67
ID
1921void intel_dp_encoder_reset(struct drm_encoder *encoder);
1922void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder);
f6bff60e 1923void intel_dp_encoder_flush_work(struct drm_encoder *encoder);
204474a6
LP
1924int intel_dp_compute_config(struct intel_encoder *encoder,
1925 struct intel_crtc_state *pipe_config,
1926 struct drm_connector_state *conn_state);
1853a9da 1927bool intel_dp_is_edp(struct intel_dp *intel_dp);
7b91bf7f 1928bool intel_dp_is_port_edp(struct drm_i915_private *dev_priv, enum port port);
b2c5c181
DV
1929enum irqreturn intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port,
1930 bool long_hpd);
b037d58f
ML
1931void intel_edp_backlight_on(const struct intel_crtc_state *crtc_state,
1932 const struct drm_connector_state *conn_state);
1933void intel_edp_backlight_off(const struct drm_connector_state *conn_state);
24f3e092 1934void intel_edp_panel_vdd_on(struct intel_dp *intel_dp);
4be73780
DV
1935void intel_edp_panel_on(struct intel_dp *intel_dp);
1936void intel_edp_panel_off(struct intel_dp *intel_dp);
1a4313d1
VS
1937void intel_dp_mst_suspend(struct drm_i915_private *dev_priv);
1938void intel_dp_mst_resume(struct drm_i915_private *dev_priv);
50fec21a 1939int intel_dp_max_link_rate(struct intel_dp *intel_dp);
3d65a735 1940int intel_dp_max_lane_count(struct intel_dp *intel_dp);
ed4e9c1d 1941int intel_dp_rate_select(struct intel_dp *intel_dp, int rate);
0e32b39c 1942void intel_dp_hot_plug(struct intel_encoder *intel_encoder);
78597996 1943void intel_power_sequencer_reset(struct drm_i915_private *dev_priv);
d25236a3 1944u32 intel_dp_pack_aux(const u8 *src, int src_bytes);
4a3b8769 1945void intel_plane_destroy(struct drm_plane *plane);
85cb48a1 1946void intel_edp_drrs_enable(struct intel_dp *intel_dp,
5f88a9c6 1947 const struct intel_crtc_state *crtc_state);
85cb48a1 1948void intel_edp_drrs_disable(struct intel_dp *intel_dp,
5f88a9c6 1949 const struct intel_crtc_state *crtc_state);
5748b6a1
CW
1950void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
1951 unsigned int frontbuffer_bits);
1952void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
1953 unsigned int frontbuffer_bits);
0bc12bcb 1954
94223d04
ACO
1955void
1956intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
d25236a3 1957 u8 dp_train_pat);
94223d04
ACO
1958void
1959intel_dp_set_signal_levels(struct intel_dp *intel_dp);
1960void intel_dp_set_idle_link_train(struct intel_dp *intel_dp);
d25236a3 1961u8
94223d04 1962intel_dp_voltage_max(struct intel_dp *intel_dp);
d25236a3
JN
1963u8
1964intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, u8 voltage_swing);
94223d04 1965void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
d25236a3 1966 u8 *link_bw, u8 *rate_select);
e588fa18 1967bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp);
2edd5327 1968bool intel_dp_source_supports_hbr3(struct intel_dp *intel_dp);
94223d04 1969bool
d25236a3
JN
1970intel_dp_get_link_status(struct intel_dp *intel_dp, u8 link_status[DP_LINK_STATUS_SIZE]);
1971u16 intel_dp_dsc_get_output_bpp(int link_clock, u8 lane_count,
1972 int mode_clock, int mode_hdisplay);
1973u8 intel_dp_dsc_get_slice_count(struct intel_dp *intel_dp, int mode_clock,
1974 int mode_hdisplay);
94223d04 1975
168243c1
GS
1976/* intel_vdsc.c */
1977int intel_dp_compute_dsc_params(struct intel_dp *intel_dp,
1978 struct intel_crtc_state *pipe_config);
a24c62f9
MN
1979enum intel_display_power_domain
1980intel_dsc_power_domain(const struct intel_crtc_state *crtc_state);
168243c1 1981
419b1b7a
ACO
1982static inline unsigned int intel_dp_unused_lane_mask(int lane_count)
1983{
1984 return ~((1 << lane_count) - 1) & 0xf;
1985}
1986
24e807e7 1987bool intel_dp_read_dpcd(struct intel_dp *intel_dp);
22a2c8e0
DP
1988int intel_dp_link_required(int pixel_clock, int bpp);
1989int intel_dp_max_data_rate(int max_link_clock, int max_lanes);
7533eb4f 1990bool intel_digital_port_connected(struct intel_encoder *encoder);
f6bff60e
ID
1991void icl_tc_phy_disconnect(struct drm_i915_private *dev_priv,
1992 struct intel_digital_port *dig_port);
24e807e7 1993
e7156c83
YA
1994/* intel_dp_aux_backlight.c */
1995int intel_dp_aux_init_backlight_funcs(struct intel_connector *intel_connector);
1996
0e32b39c
DA
1997/* intel_dp_mst.c */
1998int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id);
1999void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port);
ca3589c1 2000/* vlv_dsi.c */
e518634b 2001void vlv_dsi_init(struct drm_i915_private *dev_priv);
5f1aae65 2002
bf4d57ff
MC
2003/* icl_dsi.c */
2004void icl_dsi_init(struct drm_i915_private *dev_priv);
2005
90198355
JN
2006/* intel_dsi_dcs_backlight.c */
2007int intel_dsi_dcs_init_backlight_funcs(struct intel_connector *intel_connector);
5f1aae65
PZ
2008
2009/* intel_dvo.c */
c39055b0 2010void intel_dvo_init(struct drm_i915_private *dev_priv);
19625e85
L
2011/* intel_hotplug.c */
2012void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
dba14b27
VS
2013bool intel_encoder_hotplug(struct intel_encoder *encoder,
2014 struct intel_connector *connector);
5f1aae65 2015
0632fef6 2016/* legacy fbdev emulation in intel_fbdev.c */
0695726e 2017#ifdef CONFIG_DRM_FBDEV_EMULATION
4520f53a 2018extern int intel_fbdev_init(struct drm_device *dev);
e00bf696 2019extern void intel_fbdev_initial_config_async(struct drm_device *dev);
4f256d82
DV
2020extern void intel_fbdev_unregister(struct drm_i915_private *dev_priv);
2021extern void intel_fbdev_fini(struct drm_i915_private *dev_priv);
82e3b8c1 2022extern void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
0632fef6
DV
2023extern void intel_fbdev_output_poll_changed(struct drm_device *dev);
2024extern void intel_fbdev_restore_mode(struct drm_device *dev);
4520f53a
DV
2025#else
2026static inline int intel_fbdev_init(struct drm_device *dev)
2027{
2028 return 0;
2029}
5f1aae65 2030
e00bf696 2031static inline void intel_fbdev_initial_config_async(struct drm_device *dev)
4520f53a
DV
2032{
2033}
2034
4f256d82
DV
2035static inline void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
2036{
2037}
2038
2039static inline void intel_fbdev_fini(struct drm_i915_private *dev_priv)
4520f53a
DV
2040{
2041}
2042
82e3b8c1 2043static inline void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
4520f53a
DV
2044{
2045}
2046
d9c409d6
JN
2047static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
2048{
2049}
2050
0632fef6 2051static inline void intel_fbdev_restore_mode(struct drm_device *dev)
4520f53a
DV
2052{
2053}
2054#endif
5f1aae65 2055
7ff0ebcc 2056/* intel_fbc.c */
f51be2e0 2057void intel_fbc_choose_crtc(struct drm_i915_private *dev_priv,
dd57602e 2058 struct intel_atomic_state *state);
0e631adc 2059bool intel_fbc_is_active(struct drm_i915_private *dev_priv);
faf68d92
ML
2060void intel_fbc_pre_update(struct intel_crtc *crtc,
2061 struct intel_crtc_state *crtc_state,
2062 struct intel_plane_state *plane_state);
1eb52238 2063void intel_fbc_post_update(struct intel_crtc *crtc);
7ff0ebcc 2064void intel_fbc_init(struct drm_i915_private *dev_priv);
010cf73d 2065void intel_fbc_init_pipe_state(struct drm_i915_private *dev_priv);
faf68d92
ML
2066void intel_fbc_enable(struct intel_crtc *crtc,
2067 struct intel_crtc_state *crtc_state,
2068 struct intel_plane_state *plane_state);
c937ab3e
PZ
2069void intel_fbc_disable(struct intel_crtc *crtc);
2070void intel_fbc_global_disable(struct drm_i915_private *dev_priv);
dbef0f15
PZ
2071void intel_fbc_invalidate(struct drm_i915_private *dev_priv,
2072 unsigned int frontbuffer_bits,
2073 enum fb_op_origin origin);
2074void intel_fbc_flush(struct drm_i915_private *dev_priv,
6f4551fe 2075 unsigned int frontbuffer_bits, enum fb_op_origin origin);
7733b49b 2076void intel_fbc_cleanup_cfb(struct drm_i915_private *dev_priv);
61a585d6 2077void intel_fbc_handle_fifo_underrun_irq(struct drm_i915_private *dev_priv);
d52ad9cb 2078int intel_fbc_reset_underrun(struct drm_i915_private *dev_priv);
7ff0ebcc 2079
5f1aae65 2080/* intel_hdmi.c */
c39055b0
ACO
2081void intel_hdmi_init(struct drm_i915_private *dev_priv, i915_reg_t hdmi_reg,
2082 enum port port);
87440425
PZ
2083void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
2084 struct intel_connector *intel_connector);
2085struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder);
204474a6
LP
2086int intel_hdmi_compute_config(struct intel_encoder *encoder,
2087 struct intel_crtc_state *pipe_config,
2088 struct drm_connector_state *conn_state);
277ab5ab 2089bool intel_hdmi_handle_sink_scrambling(struct intel_encoder *encoder,
15953637
SS
2090 struct drm_connector *connector,
2091 bool high_tmds_clock_ratio,
2092 bool scrambling);
b2ccb822 2093void intel_dp_dual_mode_set_tmds_output(struct intel_hdmi *hdmi, bool enable);
385e4de0 2094void intel_infoframe_init(struct intel_digital_port *intel_dig_port);
509efa2b
VS
2095u32 intel_hdmi_infoframes_enabled(struct intel_encoder *encoder,
2096 const struct intel_crtc_state *crtc_state);
fbf08556 2097u32 intel_hdmi_infoframe_enable(unsigned int type);
5f1aae65 2098
5f1aae65 2099/* intel_lvds.c */
a44628b9
VS
2100bool intel_lvds_port_enabled(struct drm_i915_private *dev_priv,
2101 i915_reg_t lvds_reg, enum pipe *pipe);
c39055b0 2102void intel_lvds_init(struct drm_i915_private *dev_priv);
97a824e1 2103struct intel_encoder *intel_get_lvds_encoder(struct drm_device *dev);
87440425 2104bool intel_is_dual_link_lvds(struct drm_device *dev);
5f1aae65 2105
5f1aae65 2106/* intel_overlay.c */
58db08a7
JRS
2107void intel_overlay_setup(struct drm_i915_private *dev_priv);
2108void intel_overlay_cleanup(struct drm_i915_private *dev_priv);
87440425 2109int intel_overlay_switch_off(struct intel_overlay *overlay);
1ee8da6d
CW
2110int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
2111 struct drm_file *file_priv);
2112int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
2113 struct drm_file *file_priv);
1362b776 2114void intel_overlay_reset(struct drm_i915_private *dev_priv);
5f1aae65
PZ
2115
2116
2117/* intel_panel.c */
87440425 2118int intel_panel_init(struct intel_panel *panel,
4b6ed685
VK
2119 struct drm_display_mode *fixed_mode,
2120 struct drm_display_mode *downclock_mode);
87440425
PZ
2121void intel_panel_fini(struct intel_panel *panel);
2122void intel_fixed_panel_mode(const struct drm_display_mode *fixed_mode,
2123 struct drm_display_mode *adjusted_mode);
2124void intel_pch_panel_fitting(struct intel_crtc *crtc,
5cec258b 2125 struct intel_crtc_state *pipe_config,
87440425
PZ
2126 int fitting_mode);
2127void intel_gmch_panel_fitting(struct intel_crtc *crtc,
5cec258b 2128 struct intel_crtc_state *pipe_config,
87440425 2129 int fitting_mode);
90d7cd24 2130void intel_panel_set_backlight_acpi(const struct drm_connector_state *conn_state,
6dda730e 2131 u32 level, u32 max);
fda9ee98
CW
2132int intel_panel_setup_backlight(struct drm_connector *connector,
2133 enum pipe pipe);
b037d58f
ML
2134void intel_panel_enable_backlight(const struct intel_crtc_state *crtc_state,
2135 const struct drm_connector_state *conn_state);
63a23d24
ML
2136void intel_panel_update_backlight(struct intel_encoder *encoder,
2137 const struct intel_crtc_state *crtc_state,
2138 const struct drm_connector_state *conn_state);
b037d58f 2139void intel_panel_disable_backlight(const struct drm_connector_state *old_conn_state);
ec9ed197 2140extern struct drm_display_mode *intel_find_panel_downclock(
a318b4c4 2141 struct drm_i915_private *dev_priv,
ec9ed197
VK
2142 struct drm_display_mode *fixed_mode,
2143 struct drm_connector *connector);
e63d87c0
CW
2144
2145#if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE)
1ebaa0b9 2146int intel_backlight_device_register(struct intel_connector *connector);
e63d87c0
CW
2147void intel_backlight_device_unregister(struct intel_connector *connector);
2148#else /* CONFIG_BACKLIGHT_CLASS_DEVICE */
2de2d0b0 2149static inline int intel_backlight_device_register(struct intel_connector *connector)
1ebaa0b9
CW
2150{
2151 return 0;
2152}
e63d87c0
CW
2153static inline void intel_backlight_device_unregister(struct intel_connector *connector)
2154{
2155}
2156#endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */
0962c3c9 2157
ee5e5e7a
SP
2158/* intel_hdcp.c */
2159void intel_hdcp_atomic_check(struct drm_connector *connector,
2160 struct drm_connector_state *old_state,
2161 struct drm_connector_state *new_state);
2162int intel_hdcp_init(struct intel_connector *connector,
2163 const struct intel_hdcp_shim *hdcp_shim);
2164int intel_hdcp_enable(struct intel_connector *connector);
2165int intel_hdcp_disable(struct intel_connector *connector);
fdddd08c 2166bool is_hdcp_supported(struct drm_i915_private *dev_priv, enum port port);
bdc93fe0 2167bool intel_hdcp_capable(struct intel_connector *connector);
9055aac7
R
2168void intel_hdcp_component_init(struct drm_i915_private *dev_priv);
2169void intel_hdcp_component_fini(struct drm_i915_private *dev_priv);
2170void intel_hdcp_cleanup(struct intel_connector *connector);
09d56393 2171void intel_hdcp_handle_cp_irq(struct intel_connector *connector);
5f1aae65 2172
0bc12bcb 2173/* intel_psr.c */
4371d896 2174#define CAN_PSR(dev_priv) (HAS_PSR(dev_priv) && dev_priv->psr.sink_support)
77fe36ff 2175void intel_psr_init_dpcd(struct intel_dp *intel_dp);
d2419ffc
VS
2176void intel_psr_enable(struct intel_dp *intel_dp,
2177 const struct intel_crtc_state *crtc_state);
2178void intel_psr_disable(struct intel_dp *intel_dp,
2179 const struct intel_crtc_state *old_crtc_state);
23ec9f52
JRS
2180void intel_psr_update(struct intel_dp *intel_dp,
2181 const struct intel_crtc_state *crtc_state);
2182int intel_psr_debug_set(struct drm_i915_private *dev_priv, u64 value);
5748b6a1 2183void intel_psr_invalidate(struct drm_i915_private *dev_priv,
5baf63cc
RV
2184 unsigned frontbuffer_bits,
2185 enum fb_op_origin origin);
5748b6a1 2186void intel_psr_flush(struct drm_i915_private *dev_priv,
169de131
RV
2187 unsigned frontbuffer_bits,
2188 enum fb_op_origin origin);
c39055b0 2189void intel_psr_init(struct drm_i915_private *dev_priv);
4d90f2d5
VS
2190void intel_psr_compute_config(struct intel_dp *intel_dp,
2191 struct intel_crtc_state *crtc_state);
1aeb1b5f 2192void intel_psr_irq_control(struct drm_i915_private *dev_priv, u32 debug);
54fd3149 2193void intel_psr_irq_handler(struct drm_i915_private *dev_priv, u32 psr_iir);
cc3054ff 2194void intel_psr_short_pulse(struct intel_dp *intel_dp);
63ec132d
DP
2195int intel_psr_wait_for_idle(const struct intel_crtc_state *new_crtc_state,
2196 u32 *out_value);
2f8e7ea9 2197bool intel_psr_enabled(struct intel_dp *intel_dp);
0bc12bcb 2198
593a21a0 2199/* intel_quirks.c */
27a981b6 2200void intel_init_quirks(struct drm_i915_private *dev_priv);
593a21a0 2201
9c065a7d 2202/* intel_runtime_pm.c */
bd780f37 2203void intel_runtime_pm_init_early(struct drm_i915_private *dev_priv);
9c065a7d 2204int intel_power_domains_init(struct drm_i915_private *);
f28ec6f4 2205void intel_power_domains_cleanup(struct drm_i915_private *dev_priv);
73dfc227 2206void intel_power_domains_init_hw(struct drm_i915_private *dev_priv, bool resume);
48a287ed 2207void intel_power_domains_fini_hw(struct drm_i915_private *dev_priv);
3e68928b
AM
2208void icl_display_core_init(struct drm_i915_private *dev_priv, bool resume);
2209void icl_display_core_uninit(struct drm_i915_private *dev_priv);
2cd9a689
ID
2210void intel_power_domains_enable(struct drm_i915_private *dev_priv);
2211void intel_power_domains_disable(struct drm_i915_private *dev_priv);
2212
2213enum i915_drm_suspend_mode {
2214 I915_DRM_SUSPEND_IDLE,
2215 I915_DRM_SUSPEND_MEM,
2216 I915_DRM_SUSPEND_HIBERNATE,
2217};
2218
2219void intel_power_domains_suspend(struct drm_i915_private *dev_priv,
2220 enum i915_drm_suspend_mode);
2221void intel_power_domains_resume(struct drm_i915_private *dev_priv);
d7d7c9ee
ID
2222void bxt_display_core_init(struct drm_i915_private *dev_priv, bool resume);
2223void bxt_display_core_uninit(struct drm_i915_private *dev_priv);
f458ebbc 2224void intel_runtime_pm_enable(struct drm_i915_private *dev_priv);
07d80572 2225void intel_runtime_pm_disable(struct drm_i915_private *dev_priv);
bd780f37 2226void intel_runtime_pm_cleanup(struct drm_i915_private *dev_priv);
9895ad03
DS
2227const char *
2228intel_display_power_domain_str(enum intel_display_power_domain domain);
9c065a7d 2229
f458ebbc
DV
2230bool intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
2231 enum intel_display_power_domain domain);
2232bool __intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
2233 enum intel_display_power_domain domain);
0e6e0be4 2234intel_wakeref_t intel_display_power_get(struct drm_i915_private *dev_priv,
09731280 2235 enum intel_display_power_domain domain);
0e6e0be4
CW
2236intel_wakeref_t
2237intel_display_power_get_if_enabled(struct drm_i915_private *dev_priv,
2238 enum intel_display_power_domain domain);
2239void intel_display_power_put_unchecked(struct drm_i915_private *dev_priv,
2240 enum intel_display_power_domain domain);
2241#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM)
9c065a7d 2242void intel_display_power_put(struct drm_i915_private *dev_priv,
0e6e0be4
CW
2243 enum intel_display_power_domain domain,
2244 intel_wakeref_t wakeref);
2245#else
2246#define intel_display_power_put(i915, domain, wakeref) \
2247 intel_display_power_put_unchecked(i915, domain)
2248#endif
aa9664ff
MK
2249void icl_dbuf_slices_update(struct drm_i915_private *dev_priv,
2250 u8 req_slices);
da5827c3
ID
2251
2252static inline void
bd780f37 2253assert_rpm_device_not_suspended(struct drm_i915_private *i915)
da5827c3 2254{
bd780f37 2255 WARN_ONCE(i915->runtime_pm.suspended,
da5827c3
ID
2256 "Device suspended during HW access\n");
2257}
2258
2259static inline void
bd780f37 2260assert_rpm_wakelock_held(struct drm_i915_private *i915)
da5827c3 2261{
bd780f37
CW
2262 assert_rpm_device_not_suspended(i915);
2263 WARN_ONCE(!atomic_read(&i915->runtime_pm.wakeref_count),
1f58c8e7 2264 "RPM wakelock ref not held during HW access");
da5827c3
ID
2265}
2266
1f814dac
ID
2267/**
2268 * disable_rpm_wakeref_asserts - disable the RPM assert checks
bd780f37 2269 * @i915: i915 device instance
1f814dac
ID
2270 *
2271 * This function disable asserts that check if we hold an RPM wakelock
2272 * reference, while keeping the device-not-suspended checks still enabled.
2273 * It's meant to be used only in special circumstances where our rule about
2274 * the wakelock refcount wrt. the device power state doesn't hold. According
2275 * to this rule at any point where we access the HW or want to keep the HW in
2276 * an active state we must hold an RPM wakelock reference acquired via one of
2277 * the intel_runtime_pm_get() helpers. Currently there are a few special spots
2278 * where this rule doesn't hold: the IRQ and suspend/resume handlers, the
2279 * forcewake release timer, and the GPU RPS and hangcheck works. All other
2280 * users should avoid using this function.
2281 *
2282 * Any calls to this function must have a symmetric call to
2283 * enable_rpm_wakeref_asserts().
2284 */
2285static inline void
bd780f37 2286disable_rpm_wakeref_asserts(struct drm_i915_private *i915)
1f814dac 2287{
bd780f37 2288 atomic_inc(&i915->runtime_pm.wakeref_count);
1f814dac
ID
2289}
2290
2291/**
2292 * enable_rpm_wakeref_asserts - re-enable the RPM assert checks
bd780f37 2293 * @i915: i915 device instance
1f814dac
ID
2294 *
2295 * This function re-enables the RPM assert checks after disabling them with
2296 * disable_rpm_wakeref_asserts. It's meant to be used only in special
2297 * circumstances otherwise its use should be avoided.
2298 *
2299 * Any calls to this function must have a symmetric call to
2300 * disable_rpm_wakeref_asserts().
2301 */
2302static inline void
bd780f37 2303enable_rpm_wakeref_asserts(struct drm_i915_private *i915)
1f814dac 2304{
bd780f37 2305 atomic_dec(&i915->runtime_pm.wakeref_count);
1f814dac
ID
2306}
2307
16e4dd03
CW
2308intel_wakeref_t intel_runtime_pm_get(struct drm_i915_private *i915);
2309intel_wakeref_t intel_runtime_pm_get_if_in_use(struct drm_i915_private *i915);
2310intel_wakeref_t intel_runtime_pm_get_noresume(struct drm_i915_private *i915);
2311
d4225a53
CW
2312#define with_intel_runtime_pm(i915, wf) \
2313 for ((wf) = intel_runtime_pm_get(i915); (wf); \
2314 intel_runtime_pm_put((i915), (wf)), (wf) = 0)
2315
2316#define with_intel_runtime_pm_if_in_use(i915, wf) \
2317 for ((wf) = intel_runtime_pm_get_if_in_use(i915); (wf); \
2318 intel_runtime_pm_put((i915), (wf)), (wf) = 0)
2319
16e4dd03
CW
2320void intel_runtime_pm_put_unchecked(struct drm_i915_private *i915);
2321#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM)
2322void intel_runtime_pm_put(struct drm_i915_private *i915, intel_wakeref_t wref);
2323#else
2324#define intel_runtime_pm_put(i915, wref) intel_runtime_pm_put_unchecked(i915)
2325#endif
bd780f37
CW
2326
2327#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM)
2328void print_intel_runtime_pm_wakeref(struct drm_i915_private *i915,
2329 struct drm_printer *p);
2330#else
2331static inline void print_intel_runtime_pm_wakeref(struct drm_i915_private *i915,
2332 struct drm_printer *p)
2333{
2334}
2335#endif
9c065a7d 2336
e0fce78f
VS
2337void chv_phy_powergate_lanes(struct intel_encoder *encoder,
2338 bool override, unsigned int mask);
b0b33846
VS
2339bool chv_phy_powergate_ch(struct drm_i915_private *dev_priv, enum dpio_phy phy,
2340 enum dpio_channel ch, bool override);
e0fce78f
VS
2341
2342
5f1aae65 2343/* intel_pm.c */
46f16e63 2344void intel_init_clock_gating(struct drm_i915_private *dev_priv);
712bf364 2345void intel_suspend_hw(struct drm_i915_private *dev_priv);
5db94019 2346int ilk_wm_max_level(const struct drm_i915_private *dev_priv);
432081bc 2347void intel_update_watermarks(struct intel_crtc *crtc);
62d75df7 2348void intel_init_pm(struct drm_i915_private *dev_priv);
bb400da9 2349void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv);
192aa181 2350void intel_pm_setup(struct drm_i915_private *dev_priv);
87440425
PZ
2351void intel_gpu_ips_init(struct drm_i915_private *dev_priv);
2352void intel_gpu_ips_teardown(void);
dc97997a 2353void intel_init_gt_powersave(struct drm_i915_private *dev_priv);
54b4f68f
CW
2354void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv);
2355void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv);
dc97997a
CW
2356void intel_enable_gt_powersave(struct drm_i915_private *dev_priv);
2357void intel_disable_gt_powersave(struct drm_i915_private *dev_priv);
54b4f68f 2358void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv);
43cf3bf0
CW
2359void gen6_rps_busy(struct drm_i915_private *dev_priv);
2360void gen6_rps_reset_ei(struct drm_i915_private *dev_priv);
076e29f2 2361void gen6_rps_idle(struct drm_i915_private *dev_priv);
62eb3c24 2362void gen6_rps_boost(struct i915_request *rq);
cd1d3ee9
MR
2363void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv);
2364void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv);
2365void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv);
2366void skl_wm_get_hw_state(struct drm_i915_private *dev_priv);
ff43bc37
VS
2367void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc,
2368 struct skl_ddb_entry *ddb_y,
2369 struct skl_ddb_entry *ddb_uv);
08db6652
DL
2370void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2371 struct skl_ddb_allocation *ddb /* out */);
cd1d3ee9 2372void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
bf9d99ad 2373 struct skl_pipe_wm *out);
04548cba 2374void g4x_wm_sanitize(struct drm_i915_private *dev_priv);
602ae835 2375void vlv_wm_sanitize(struct drm_i915_private *dev_priv);
16dcdc4e
PZ
2376bool intel_can_enable_sagv(struct drm_atomic_state *state);
2377int intel_enable_sagv(struct drm_i915_private *dev_priv);
2378int intel_disable_sagv(struct drm_i915_private *dev_priv);
45ece230 2379bool skl_wm_level_equals(const struct skl_wm_level *l1,
2380 const struct skl_wm_level *l2);
53cc6880
VS
2381bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb,
2382 const struct skl_ddb_entry entries[],
2383 int num_entries, int ignore_idx);
ff43bc37
VS
2384void skl_write_plane_wm(struct intel_plane *plane,
2385 const struct intel_crtc_state *crtc_state);
2386void skl_write_cursor_wm(struct intel_plane *plane,
2387 const struct intel_crtc_state *crtc_state);
ed4a6a7c 2388bool ilk_disable_lp_wm(struct drm_device *dev);
73b0ca8e
MK
2389int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
2390 struct intel_crtc_state *cstate);
2503a0fe
KM
2391void intel_init_ipc(struct drm_i915_private *dev_priv);
2392void intel_enable_ipc(struct drm_i915_private *dev_priv);
72662e10 2393
5f1aae65 2394/* intel_sdvo.c */
76203467
VS
2395bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
2396 i915_reg_t sdvo_reg, enum pipe *pipe);
c39055b0 2397bool intel_sdvo_init(struct drm_i915_private *dev_priv,
f0f59a00 2398 i915_reg_t reg, enum port port);
96a02917 2399
2b28bb1b 2400
5f1aae65 2401/* intel_sprite.c */
dfd2e9ab
VS
2402int intel_usecs_to_scanlines(const struct drm_display_mode *adjusted_mode,
2403 int usecs);
580503c7 2404struct intel_plane *intel_sprite_plane_create(struct drm_i915_private *dev_priv,
b079bd17 2405 enum pipe pipe, int plane);
6a20fe7b
VS
2406int intel_sprite_set_colorkey_ioctl(struct drm_device *dev, void *data,
2407 struct drm_file *file_priv);
d3a8fb32
VS
2408void intel_pipe_update_start(const struct intel_crtc_state *new_crtc_state);
2409void intel_pipe_update_end(struct intel_crtc_state *new_crtc_state);
fc3fed5d 2410int intel_plane_check_stride(const struct intel_plane_state *plane_state);
4e0b83a5 2411int intel_plane_check_src_coordinates(struct intel_plane_state *plane_state);
25721f82 2412int chv_plane_check_rotation(const struct intel_plane_state *plane_state);
b7c80600
VS
2413struct intel_plane *
2414skl_universal_plane_create(struct drm_i915_private *dev_priv,
2415 enum pipe pipe, enum plane_id plane_id);
5f1aae65 2416
1ab554b0
ML
2417static inline bool icl_is_nv12_y_plane(enum plane_id id)
2418{
2419 /* Don't need to do a gen check, these planes are only available on gen11 */
2420 if (id == PLANE_SPRITE4 || id == PLANE_SPRITE5)
2421 return true;
2422
2423 return false;
2424}
2425
b1554e23
ML
2426static inline bool icl_is_hdr_plane(struct intel_plane *plane)
2427{
2428 if (INTEL_GEN(to_i915(plane->base.dev)) < 11)
2429 return false;
2430
2431 return plane->id < PLANE_SPRITE2;
2432}
2433
5f1aae65 2434/* intel_tv.c */
c39055b0 2435void intel_tv_init(struct drm_i915_private *dev_priv);
20ddf665 2436
ea2c67bb 2437/* intel_atomic.c */
11c1a9ec
ML
2438int intel_digital_connector_atomic_get_property(struct drm_connector *connector,
2439 const struct drm_connector_state *state,
2440 struct drm_property *property,
d25236a3 2441 u64 *val);
11c1a9ec
ML
2442int intel_digital_connector_atomic_set_property(struct drm_connector *connector,
2443 struct drm_connector_state *state,
2444 struct drm_property *property,
d25236a3 2445 u64 val);
11c1a9ec
ML
2446int intel_digital_connector_atomic_check(struct drm_connector *conn,
2447 struct drm_connector_state *new_state);
2448struct drm_connector_state *
2449intel_digital_connector_duplicate_state(struct drm_connector *connector);
2450
1356837e
MR
2451struct drm_crtc_state *intel_crtc_duplicate_state(struct drm_crtc *crtc);
2452void intel_crtc_destroy_state(struct drm_crtc *crtc,
2453 struct drm_crtc_state *state);
de419ab6
ML
2454struct drm_atomic_state *intel_atomic_state_alloc(struct drm_device *dev);
2455void intel_atomic_state_clear(struct drm_atomic_state *);
de419ab6 2456
10f81c19
ACO
2457static inline struct intel_crtc_state *
2458intel_atomic_get_crtc_state(struct drm_atomic_state *state,
2459 struct intel_crtc *crtc)
2460{
2461 struct drm_crtc_state *crtc_state;
2462 crtc_state = drm_atomic_get_crtc_state(state, &crtc->base);
2463 if (IS_ERR(crtc_state))
0b6cc188 2464 return ERR_CAST(crtc_state);
10f81c19
ACO
2465
2466 return to_intel_crtc_state(crtc_state);
2467}
e3bddded 2468
6ebc6923
ACO
2469int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
2470 struct intel_crtc *intel_crtc,
2471 struct intel_crtc_state *crtc_state);
5ee67f1c
MR
2472
2473/* intel_atomic_plane.c */
c48b86f9
VS
2474void intel_update_plane(struct intel_plane *plane,
2475 const struct intel_crtc_state *crtc_state,
2476 const struct intel_plane_state *plane_state);
2477void intel_update_slave(struct intel_plane *plane,
2478 const struct intel_crtc_state *crtc_state,
2479 const struct intel_plane_state *plane_state);
2480void intel_disable_plane(struct intel_plane *plane,
2481 const struct intel_crtc_state *crtc_state);
87b94026
ML
2482struct intel_plane *intel_plane_alloc(void);
2483void intel_plane_free(struct intel_plane *plane);
ea2c67bb
MR
2484struct drm_plane_state *intel_plane_duplicate_state(struct drm_plane *plane);
2485void intel_plane_destroy_state(struct drm_plane *plane,
2486 struct drm_plane_state *state);
2487extern const struct drm_plane_helper_funcs intel_plane_helper_funcs;
5f2e5112
VS
2488void skl_update_planes_on_crtc(struct intel_atomic_state *state,
2489 struct intel_crtc *crtc);
2490void i9xx_update_planes_on_crtc(struct intel_atomic_state *state,
2491 struct intel_crtc *crtc);
b2b55502
VS
2492int intel_plane_atomic_check_with_state(const struct intel_crtc_state *old_crtc_state,
2493 struct intel_crtc_state *crtc_state,
2494 const struct intel_plane_state *old_plane_state,
f79f2692 2495 struct intel_plane_state *intel_state);
ea2c67bb 2496
8563b1e8 2497/* intel_color.c */
302da0cd
MR
2498void intel_color_init(struct intel_crtc *crtc);
2499int intel_color_check(struct intel_crtc_state *crtc_state);
4d8ed54c 2500void intel_color_commit(const struct intel_crtc_state *crtc_state);
23b03a27 2501void intel_color_load_luts(const struct intel_crtc_state *crtc_state);
8563b1e8 2502
dbe9e61b
SS
2503/* intel_lspcon.c */
2504bool lspcon_init(struct intel_digital_port *intel_dig_port);
910530c0 2505void lspcon_resume(struct intel_lspcon *lspcon);
357c0ae9 2506void lspcon_wait_pcon_mode(struct intel_lspcon *lspcon);
7cbf19fd
SS
2507void lspcon_write_infoframe(struct intel_encoder *encoder,
2508 const struct intel_crtc_state *crtc_state,
2509 unsigned int type,
2510 const void *buf, ssize_t len);
06c812d7
SS
2511void lspcon_set_infoframes(struct intel_encoder *encoder,
2512 bool enable,
2513 const struct intel_crtc_state *crtc_state,
2514 const struct drm_connector_state *conn_state);
509efa2b 2515u32 lspcon_infoframes_enabled(struct intel_encoder *encoder,
06c812d7 2516 const struct intel_crtc_state *pipe_config);
668b6c17
SS
2517void lspcon_ycbcr420_config(struct drm_connector *connector,
2518 struct intel_crtc_state *crtc_state);
731035fe
TV
2519
2520/* intel_pipe_crc.c */
8c6b709d 2521#ifdef CONFIG_DEBUG_FS
c0811a7d 2522int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name);
a8c20833
MK
2523int intel_crtc_verify_crc_source(struct drm_crtc *crtc,
2524 const char *source_name, size_t *values_cnt);
260bc551
MK
2525const char *const *intel_crtc_get_crc_sources(struct drm_crtc *crtc,
2526 size_t *count);
033b7a23
ML
2527void intel_crtc_disable_pipe_crc(struct intel_crtc *crtc);
2528void intel_crtc_enable_pipe_crc(struct intel_crtc *crtc);
8c6b709d
TV
2529#else
2530#define intel_crtc_set_crc_source NULL
a8c20833 2531#define intel_crtc_verify_crc_source NULL
260bc551 2532#define intel_crtc_get_crc_sources NULL
033b7a23
ML
2533static inline void intel_crtc_disable_pipe_crc(struct intel_crtc *crtc)
2534{
2535}
2536
2537static inline void intel_crtc_enable_pipe_crc(struct intel_crtc *crtc)
2538{
2539}
8c6b709d 2540#endif
79e53945 2541#endif /* __INTEL_DRV_H__ */