Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / gpu / drm / i915 / intel_drv.h
blob30f791f89d6494f3e24e344dfd3beb26d30c1a5b
1 /*
2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright (c) 2007-2008 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
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:
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.
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.
25 #ifndef __INTEL_DRV_H__
26 #define __INTEL_DRV_H__
28 #include <linux/async.h>
29 #include <linux/i2c.h>
30 #include <linux/hdmi.h>
31 #include <linux/sched/clock.h>
32 #include <drm/i915_drm.h>
33 #include "i915_drv.h"
34 #include <drm/drm_crtc.h>
35 #include <drm/drm_crtc_helper.h>
36 #include <drm/drm_encoder.h>
37 #include <drm/drm_fb_helper.h>
38 #include <drm/drm_dp_dual_mode_helper.h>
39 #include <drm/drm_dp_mst_helper.h>
40 #include <drm/drm_rect.h>
41 #include <drm/drm_atomic.h>
43 /**
44 * _wait_for - magic (register) wait macro
46 * Does the right thing for modeset paths when run under kdgb or similar atomic
47 * contexts. Note that it's important that we check the condition again after
48 * having timed out, since the timeout could be due to preemption or similar and
49 * we've never had a chance to check the condition before the timeout.
51 #define _wait_for(COND, US, Wmin, Wmax) ({ \
52 unsigned long timeout__ = jiffies + usecs_to_jiffies(US) + 1; \
53 long wait__ = (Wmin); /* recommended min for usleep is 10 us */ \
54 int ret__; \
55 might_sleep(); \
56 for (;;) { \
57 bool expired__ = time_after(jiffies, timeout__); \
58 if (COND) { \
59 ret__ = 0; \
60 break; \
61 } \
62 if (expired__) { \
63 ret__ = -ETIMEDOUT; \
64 break; \
65 } \
66 usleep_range(wait__, wait__ * 2); \
67 if (wait__ < (Wmax)) \
68 wait__ <<= 1; \
69 } \
70 ret__; \
73 #define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 10, 1000)
75 /* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */
76 #if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT)
77 # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic())
78 #else
79 # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
80 #endif
82 #define _wait_for_atomic(COND, US, ATOMIC) \
83 ({ \
84 int cpu, ret, timeout = (US) * 1000; \
85 u64 base; \
86 _WAIT_FOR_ATOMIC_CHECK(ATOMIC); \
87 if (!(ATOMIC)) { \
88 preempt_disable(); \
89 cpu = smp_processor_id(); \
90 } \
91 base = local_clock(); \
92 for (;;) { \
93 u64 now = local_clock(); \
94 if (!(ATOMIC)) \
95 preempt_enable(); \
96 if (COND) { \
97 ret = 0; \
98 break; \
99 } \
100 if (now - base >= timeout) { \
101 ret = -ETIMEDOUT; \
102 break; \
104 cpu_relax(); \
105 if (!(ATOMIC)) { \
106 preempt_disable(); \
107 if (unlikely(cpu != smp_processor_id())) { \
108 timeout -= now - base; \
109 cpu = smp_processor_id(); \
110 base = local_clock(); \
114 ret; \
117 #define wait_for_us(COND, US) \
118 ({ \
119 int ret__; \
120 BUILD_BUG_ON(!__builtin_constant_p(US)); \
121 if ((US) > 10) \
122 ret__ = _wait_for((COND), (US), 10, 10); \
123 else \
124 ret__ = _wait_for_atomic((COND), (US), 0); \
125 ret__; \
128 #define wait_for_atomic_us(COND, US) \
129 ({ \
130 BUILD_BUG_ON(!__builtin_constant_p(US)); \
131 BUILD_BUG_ON((US) > 50000); \
132 _wait_for_atomic((COND), (US), 1); \
135 #define wait_for_atomic(COND, MS) wait_for_atomic_us((COND), (MS) * 1000)
137 #define KHz(x) (1000 * (x))
138 #define MHz(x) KHz(1000 * (x))
141 * Display related stuff
144 /* store information about an Ixxx DVO */
145 /* The i830->i865 use multiple DVOs with multiple i2cs */
146 /* the i915, i945 have a single sDVO i2c bus - which is different */
147 #define MAX_OUTPUTS 6
148 /* maximum connectors per crtcs in the mode set */
150 /* Maximum cursor sizes */
151 #define GEN2_CURSOR_WIDTH 64
152 #define GEN2_CURSOR_HEIGHT 64
153 #define MAX_CURSOR_WIDTH 256
154 #define MAX_CURSOR_HEIGHT 256
156 #define INTEL_I2C_BUS_DVO 1
157 #define INTEL_I2C_BUS_SDVO 2
159 /* these are outputs from the chip - integrated only
160 external chips are via DVO or SDVO output */
161 enum intel_output_type {
162 INTEL_OUTPUT_UNUSED = 0,
163 INTEL_OUTPUT_ANALOG = 1,
164 INTEL_OUTPUT_DVO = 2,
165 INTEL_OUTPUT_SDVO = 3,
166 INTEL_OUTPUT_LVDS = 4,
167 INTEL_OUTPUT_TVOUT = 5,
168 INTEL_OUTPUT_HDMI = 6,
169 INTEL_OUTPUT_DP = 7,
170 INTEL_OUTPUT_EDP = 8,
171 INTEL_OUTPUT_DSI = 9,
172 INTEL_OUTPUT_DDI = 10,
173 INTEL_OUTPUT_DP_MST = 11,
176 #define INTEL_DVO_CHIP_NONE 0
177 #define INTEL_DVO_CHIP_LVDS 1
178 #define INTEL_DVO_CHIP_TMDS 2
179 #define INTEL_DVO_CHIP_TVOUT 4
181 #define INTEL_DSI_VIDEO_MODE 0
182 #define INTEL_DSI_COMMAND_MODE 1
184 struct intel_framebuffer {
185 struct drm_framebuffer base;
186 struct drm_i915_gem_object *obj;
187 struct intel_rotation_info rot_info;
189 /* for each plane in the normal GTT view */
190 struct {
191 unsigned int x, y;
192 } normal[2];
193 /* for each plane in the rotated GTT view */
194 struct {
195 unsigned int x, y;
196 unsigned int pitch; /* pixels */
197 } rotated[2];
200 struct intel_fbdev {
201 struct drm_fb_helper helper;
202 struct intel_framebuffer *fb;
203 struct i915_vma *vma;
204 async_cookie_t cookie;
205 int preferred_bpp;
208 struct intel_encoder {
209 struct drm_encoder base;
211 enum intel_output_type type;
212 enum port port;
213 unsigned int cloneable;
214 void (*hot_plug)(struct intel_encoder *);
215 enum intel_output_type (*compute_output_type)(struct intel_encoder *,
216 struct intel_crtc_state *,
217 struct drm_connector_state *);
218 bool (*compute_config)(struct intel_encoder *,
219 struct intel_crtc_state *,
220 struct drm_connector_state *);
221 void (*pre_pll_enable)(struct intel_encoder *,
222 const struct intel_crtc_state *,
223 const struct drm_connector_state *);
224 void (*pre_enable)(struct intel_encoder *,
225 const struct intel_crtc_state *,
226 const struct drm_connector_state *);
227 void (*enable)(struct intel_encoder *,
228 const struct intel_crtc_state *,
229 const struct drm_connector_state *);
230 void (*disable)(struct intel_encoder *,
231 const struct intel_crtc_state *,
232 const struct drm_connector_state *);
233 void (*post_disable)(struct intel_encoder *,
234 const struct intel_crtc_state *,
235 const struct drm_connector_state *);
236 void (*post_pll_disable)(struct intel_encoder *,
237 const struct intel_crtc_state *,
238 const struct drm_connector_state *);
239 /* Read out the current hw state of this connector, returning true if
240 * the encoder is active. If the encoder is enabled it also set the pipe
241 * it is connected to in the pipe parameter. */
242 bool (*get_hw_state)(struct intel_encoder *, enum pipe *pipe);
243 /* Reconstructs the equivalent mode flags for the current hardware
244 * state. This must be called _after_ display->get_pipe_config has
245 * pre-filled the pipe config. Note that intel_encoder->base.crtc must
246 * be set correctly before calling this function. */
247 void (*get_config)(struct intel_encoder *,
248 struct intel_crtc_state *pipe_config);
249 /* Returns a mask of power domains that need to be referenced as part
250 * of the hardware state readout code. */
251 u64 (*get_power_domains)(struct intel_encoder *encoder);
253 * Called during system suspend after all pending requests for the
254 * encoder are flushed (for example for DP AUX transactions) and
255 * device interrupts are disabled.
257 void (*suspend)(struct intel_encoder *);
258 int crtc_mask;
259 enum hpd_pin hpd_pin;
260 enum intel_display_power_domain power_domain;
261 /* for communication with audio component; protected by av_mutex */
262 const struct drm_connector *audio_connector;
265 struct intel_panel {
266 struct drm_display_mode *fixed_mode;
267 struct drm_display_mode *alt_fixed_mode;
268 struct drm_display_mode *downclock_mode;
270 /* backlight */
271 struct {
272 bool present;
273 u32 level;
274 u32 min;
275 u32 max;
276 bool enabled;
277 bool combination_mode; /* gen 2/4 only */
278 bool active_low_pwm;
279 bool alternate_pwm_increment; /* lpt+ */
281 /* PWM chip */
282 bool util_pin_active_low; /* bxt+ */
283 u8 controller; /* bxt+ only */
284 struct pwm_device *pwm;
286 struct backlight_device *device;
288 /* Connector and platform specific backlight functions */
289 int (*setup)(struct intel_connector *connector, enum pipe pipe);
290 uint32_t (*get)(struct intel_connector *connector);
291 void (*set)(const struct drm_connector_state *conn_state, uint32_t level);
292 void (*disable)(const struct drm_connector_state *conn_state);
293 void (*enable)(const struct intel_crtc_state *crtc_state,
294 const struct drm_connector_state *conn_state);
295 uint32_t (*hz_to_pwm)(struct intel_connector *connector,
296 uint32_t hz);
297 void (*power)(struct intel_connector *, bool enable);
298 } backlight;
301 struct intel_connector {
302 struct drm_connector base;
304 * The fixed encoder this connector is connected to.
306 struct intel_encoder *encoder;
308 /* ACPI device id for ACPI and driver cooperation */
309 u32 acpi_device_id;
311 /* Reads out the current hw, returning true if the connector is enabled
312 * and active (i.e. dpms ON state). */
313 bool (*get_hw_state)(struct intel_connector *);
315 /* Panel info for eDP and LVDS */
316 struct intel_panel panel;
318 /* Cached EDID for eDP and LVDS. May hold ERR_PTR for invalid EDID. */
319 struct edid *edid;
320 struct edid *detect_edid;
322 /* since POLL and HPD connectors may use the same HPD line keep the native
323 state of connector->polled in case hotplug storm detection changes it */
324 u8 polled;
326 void *port; /* store this opaque as its illegal to dereference it */
328 struct intel_dp *mst_port;
330 /* Work struct to schedule a uevent on link train failure */
331 struct work_struct modeset_retry_work;
334 struct intel_digital_connector_state {
335 struct drm_connector_state base;
337 enum hdmi_force_audio force_audio;
338 int broadcast_rgb;
341 #define to_intel_digital_connector_state(x) container_of(x, struct intel_digital_connector_state, base)
343 struct dpll {
344 /* given values */
345 int n;
346 int m1, m2;
347 int p1, p2;
348 /* derived values */
349 int dot;
350 int vco;
351 int m;
352 int p;
355 struct intel_atomic_state {
356 struct drm_atomic_state base;
358 struct {
360 * Logical state of cdclk (used for all scaling, watermark,
361 * etc. calculations and checks). This is computed as if all
362 * enabled crtcs were active.
364 struct intel_cdclk_state logical;
367 * Actual state of cdclk, can be different from the logical
368 * state only when all crtc's are DPMS off.
370 struct intel_cdclk_state actual;
371 } cdclk;
373 bool dpll_set, modeset;
376 * Does this transaction change the pipes that are active? This mask
377 * tracks which CRTC's have changed their active state at the end of
378 * the transaction (not counting the temporary disable during modesets).
379 * This mask should only be non-zero when intel_state->modeset is true,
380 * but the converse is not necessarily true; simply changing a mode may
381 * not flip the final active status of any CRTC's
383 unsigned int active_pipe_changes;
385 unsigned int active_crtcs;
386 /* minimum acceptable cdclk for each pipe */
387 int min_cdclk[I915_MAX_PIPES];
388 /* minimum acceptable voltage level for each pipe */
389 u8 min_voltage_level[I915_MAX_PIPES];
391 struct intel_shared_dpll_state shared_dpll[I915_NUM_PLLS];
394 * Current watermarks can't be trusted during hardware readout, so
395 * don't bother calculating intermediate watermarks.
397 bool skip_intermediate_wm;
399 /* Gen9+ only */
400 struct skl_wm_values wm_results;
402 struct i915_sw_fence commit_ready;
404 struct llist_node freed;
407 struct intel_plane_state {
408 struct drm_plane_state base;
409 struct drm_rect clip;
410 struct i915_vma *vma;
412 struct {
413 u32 offset;
414 int x, y;
415 } main;
416 struct {
417 u32 offset;
418 int x, y;
419 } aux;
421 /* plane control register */
422 u32 ctl;
424 /* plane color control register */
425 u32 color_ctl;
428 * scaler_id
429 * = -1 : not using a scaler
430 * >= 0 : using a scalers
432 * plane requiring a scaler:
433 * - During check_plane, its bit is set in
434 * crtc_state->scaler_state.scaler_users by calling helper function
435 * update_scaler_plane.
436 * - scaler_id indicates the scaler it got assigned.
438 * plane doesn't require a scaler:
439 * - this can happen when scaling is no more required or plane simply
440 * got disabled.
441 * - During check_plane, corresponding bit is reset in
442 * crtc_state->scaler_state.scaler_users by calling helper function
443 * update_scaler_plane.
445 int scaler_id;
447 struct drm_intel_sprite_colorkey ckey;
450 struct intel_initial_plane_config {
451 struct intel_framebuffer *fb;
452 unsigned int tiling;
453 int size;
454 u32 base;
457 #define SKL_MIN_SRC_W 8
458 #define SKL_MAX_SRC_W 4096
459 #define SKL_MIN_SRC_H 8
460 #define SKL_MAX_SRC_H 4096
461 #define SKL_MIN_DST_W 8
462 #define SKL_MAX_DST_W 4096
463 #define SKL_MIN_DST_H 8
464 #define SKL_MAX_DST_H 4096
466 struct intel_scaler {
467 int in_use;
468 uint32_t mode;
471 struct intel_crtc_scaler_state {
472 #define SKL_NUM_SCALERS 2
473 struct intel_scaler scalers[SKL_NUM_SCALERS];
476 * scaler_users: keeps track of users requesting scalers on this crtc.
478 * If a bit is set, a user is using a scaler.
479 * Here user can be a plane or crtc as defined below:
480 * bits 0-30 - plane (bit position is index from drm_plane_index)
481 * bit 31 - crtc
483 * Instead of creating a new index to cover planes and crtc, using
484 * existing drm_plane_index for planes which is well less than 31
485 * planes and bit 31 for crtc. This should be fine to cover all
486 * our platforms.
488 * intel_atomic_setup_scalers will setup available scalers to users
489 * requesting scalers. It will gracefully fail if request exceeds
490 * avilability.
492 #define SKL_CRTC_INDEX 31
493 unsigned scaler_users;
495 /* scaler used by crtc for panel fitting purpose */
496 int scaler_id;
499 /* drm_mode->private_flags */
500 #define I915_MODE_FLAG_INHERITED 1
501 /* Flag to get scanline using frame time stamps */
502 #define I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP (1<<1)
504 struct intel_pipe_wm {
505 struct intel_wm_level wm[5];
506 uint32_t linetime;
507 bool fbc_wm_enabled;
508 bool pipe_enabled;
509 bool sprites_enabled;
510 bool sprites_scaled;
513 struct skl_plane_wm {
514 struct skl_wm_level wm[8];
515 struct skl_wm_level trans_wm;
518 struct skl_pipe_wm {
519 struct skl_plane_wm planes[I915_MAX_PLANES];
520 uint32_t linetime;
523 enum vlv_wm_level {
524 VLV_WM_LEVEL_PM2,
525 VLV_WM_LEVEL_PM5,
526 VLV_WM_LEVEL_DDR_DVFS,
527 NUM_VLV_WM_LEVELS,
530 struct vlv_wm_state {
531 struct g4x_pipe_wm wm[NUM_VLV_WM_LEVELS];
532 struct g4x_sr_wm sr[NUM_VLV_WM_LEVELS];
533 uint8_t num_levels;
534 bool cxsr;
537 struct vlv_fifo_state {
538 u16 plane[I915_MAX_PLANES];
541 enum g4x_wm_level {
542 G4X_WM_LEVEL_NORMAL,
543 G4X_WM_LEVEL_SR,
544 G4X_WM_LEVEL_HPLL,
545 NUM_G4X_WM_LEVELS,
548 struct g4x_wm_state {
549 struct g4x_pipe_wm wm;
550 struct g4x_sr_wm sr;
551 struct g4x_sr_wm hpll;
552 bool cxsr;
553 bool hpll_en;
554 bool fbc_en;
557 struct intel_crtc_wm_state {
558 union {
559 struct {
561 * Intermediate watermarks; these can be
562 * programmed immediately since they satisfy
563 * both the current configuration we're
564 * switching away from and the new
565 * configuration we're switching to.
567 struct intel_pipe_wm intermediate;
570 * Optimal watermarks, programmed post-vblank
571 * when this state is committed.
573 struct intel_pipe_wm optimal;
574 } ilk;
576 struct {
577 /* gen9+ only needs 1-step wm programming */
578 struct skl_pipe_wm optimal;
579 struct skl_ddb_entry ddb;
580 } skl;
582 struct {
583 /* "raw" watermarks (not inverted) */
584 struct g4x_pipe_wm raw[NUM_VLV_WM_LEVELS];
585 /* intermediate watermarks (inverted) */
586 struct vlv_wm_state intermediate;
587 /* optimal watermarks (inverted) */
588 struct vlv_wm_state optimal;
589 /* display FIFO split */
590 struct vlv_fifo_state fifo_state;
591 } vlv;
593 struct {
594 /* "raw" watermarks */
595 struct g4x_pipe_wm raw[NUM_G4X_WM_LEVELS];
596 /* intermediate watermarks */
597 struct g4x_wm_state intermediate;
598 /* optimal watermarks */
599 struct g4x_wm_state optimal;
600 } g4x;
604 * Platforms with two-step watermark programming will need to
605 * update watermark programming post-vblank to switch from the
606 * safe intermediate watermarks to the optimal final
607 * watermarks.
609 bool need_postvbl_update;
612 struct intel_crtc_state {
613 struct drm_crtc_state base;
616 * quirks - bitfield with hw state readout quirks
618 * For various reasons the hw state readout code might not be able to
619 * completely faithfully read out the current state. These cases are
620 * tracked with quirk flags so that fastboot and state checker can act
621 * accordingly.
623 #define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS (1<<0) /* unreliable sync mode.flags */
624 unsigned long quirks;
626 unsigned fb_bits; /* framebuffers to flip */
627 bool update_pipe; /* can a fast modeset be performed? */
628 bool disable_cxsr;
629 bool update_wm_pre, update_wm_post; /* watermarks are updated */
630 bool fb_changed; /* fb on any of the planes is changed */
631 bool fifo_changed; /* FIFO split is changed */
633 /* Pipe source size (ie. panel fitter input size)
634 * All planes will be positioned inside this space,
635 * and get clipped at the edges. */
636 int pipe_src_w, pipe_src_h;
639 * Pipe pixel rate, adjusted for
640 * panel fitter/pipe scaler downscaling.
642 unsigned int pixel_rate;
644 /* Whether to set up the PCH/FDI. Note that we never allow sharing
645 * between pch encoders and cpu encoders. */
646 bool has_pch_encoder;
648 /* Are we sending infoframes on the attached port */
649 bool has_infoframe;
651 /* CPU Transcoder for the pipe. Currently this can only differ from the
652 * pipe on Haswell and later (where we have a special eDP transcoder)
653 * and Broxton (where we have special DSI transcoders). */
654 enum transcoder cpu_transcoder;
657 * Use reduced/limited/broadcast rbg range, compressing from the full
658 * range fed into the crtcs.
660 bool limited_color_range;
662 /* Bitmask of encoder types (enum intel_output_type)
663 * driven by the pipe.
665 unsigned int output_types;
667 /* Whether we should send NULL infoframes. Required for audio. */
668 bool has_hdmi_sink;
670 /* Audio enabled on this pipe. Only valid if either has_hdmi_sink or
671 * has_dp_encoder is set. */
672 bool has_audio;
675 * Enable dithering, used when the selected pipe bpp doesn't match the
676 * plane bpp.
678 bool dither;
681 * Dither gets enabled for 18bpp which causes CRC mismatch errors for
682 * compliance video pattern tests.
683 * Disable dither only if it is a compliance test request for
684 * 18bpp.
686 bool dither_force_disable;
688 /* Controls for the clock computation, to override various stages. */
689 bool clock_set;
691 /* SDVO TV has a bunch of special case. To make multifunction encoders
692 * work correctly, we need to track this at runtime.*/
693 bool sdvo_tv_clock;
696 * crtc bandwidth limit, don't increase pipe bpp or clock if not really
697 * required. This is set in the 2nd loop of calling encoder's
698 * ->compute_config if the first pick doesn't work out.
700 bool bw_constrained;
702 /* Settings for the intel dpll used on pretty much everything but
703 * haswell. */
704 struct dpll dpll;
706 /* Selected dpll when shared or NULL. */
707 struct intel_shared_dpll *shared_dpll;
709 /* Actual register state of the dpll, for shared dpll cross-checking. */
710 struct intel_dpll_hw_state dpll_hw_state;
712 /* DSI PLL registers */
713 struct {
714 u32 ctrl, div;
715 } dsi_pll;
717 int pipe_bpp;
718 struct intel_link_m_n dp_m_n;
720 /* m2_n2 for eDP downclock */
721 struct intel_link_m_n dp_m2_n2;
722 bool has_drrs;
724 bool has_psr;
725 bool has_psr2;
728 * Frequence the dpll for the port should run at. Differs from the
729 * adjusted dotclock e.g. for DP or 12bpc hdmi mode. This is also
730 * already multiplied by pixel_multiplier.
732 int port_clock;
734 /* Used by SDVO (and if we ever fix it, HDMI). */
735 unsigned pixel_multiplier;
737 uint8_t lane_count;
740 * Used by platforms having DP/HDMI PHY with programmable lane
741 * latency optimization.
743 uint8_t lane_lat_optim_mask;
745 /* minimum acceptable voltage level */
746 u8 min_voltage_level;
748 /* Panel fitter controls for gen2-gen4 + VLV */
749 struct {
750 u32 control;
751 u32 pgm_ratios;
752 u32 lvds_border_bits;
753 } gmch_pfit;
755 /* Panel fitter placement and size for Ironlake+ */
756 struct {
757 u32 pos;
758 u32 size;
759 bool enabled;
760 bool force_thru;
761 } pch_pfit;
763 /* FDI configuration, only valid if has_pch_encoder is set. */
764 int fdi_lanes;
765 struct intel_link_m_n fdi_m_n;
767 bool ips_enabled;
768 bool ips_force_disable;
770 bool enable_fbc;
772 bool double_wide;
774 int pbn;
776 struct intel_crtc_scaler_state scaler_state;
778 /* w/a for waiting 2 vblanks during crtc enable */
779 enum pipe hsw_workaround_pipe;
781 /* IVB sprite scaling w/a (WaCxSRDisabledForSpriteScaling:ivb) */
782 bool disable_lp_wm;
784 struct intel_crtc_wm_state wm;
786 /* Gamma mode programmed on the pipe */
787 uint32_t gamma_mode;
789 /* bitmask of visible planes (enum plane_id) */
790 u8 active_planes;
792 /* HDMI scrambling status */
793 bool hdmi_scrambling;
795 /* HDMI High TMDS char rate ratio */
796 bool hdmi_high_tmds_clock_ratio;
798 /* output format is YCBCR 4:2:0 */
799 bool ycbcr420;
802 struct intel_crtc {
803 struct drm_crtc base;
804 enum pipe pipe;
806 * Whether the crtc and the connected output pipeline is active. Implies
807 * that crtc->enabled is set, i.e. the current mode configuration has
808 * some outputs connected to this crtc.
810 bool active;
811 u8 plane_ids_mask;
812 unsigned long long enabled_power_domains;
813 struct intel_overlay *overlay;
815 struct intel_crtc_state *config;
817 /* global reset count when the last flip was submitted */
818 unsigned int reset_count;
820 /* Access to these should be protected by dev_priv->irq_lock. */
821 bool cpu_fifo_underrun_disabled;
822 bool pch_fifo_underrun_disabled;
824 /* per-pipe watermark state */
825 struct {
826 /* watermarks currently being used */
827 union {
828 struct intel_pipe_wm ilk;
829 struct vlv_wm_state vlv;
830 struct g4x_wm_state g4x;
831 } active;
832 } wm;
834 int scanline_offset;
836 struct {
837 unsigned start_vbl_count;
838 ktime_t start_vbl_time;
839 int min_vbl, max_vbl;
840 int scanline_start;
841 } debug;
843 /* scalers available on this crtc */
844 int num_scalers;
847 struct intel_plane {
848 struct drm_plane base;
849 enum i9xx_plane_id i9xx_plane;
850 enum plane_id id;
851 enum pipe pipe;
852 bool can_scale;
853 int max_downscale;
854 uint32_t frontbuffer_bit;
856 struct {
857 u32 base, cntl, size;
858 } cursor;
861 * NOTE: Do not place new plane state fields here (e.g., when adding
862 * new plane properties). New runtime state should now be placed in
863 * the intel_plane_state structure and accessed via plane_state.
866 void (*update_plane)(struct intel_plane *plane,
867 const struct intel_crtc_state *crtc_state,
868 const struct intel_plane_state *plane_state);
869 void (*disable_plane)(struct intel_plane *plane,
870 struct intel_crtc *crtc);
871 bool (*get_hw_state)(struct intel_plane *plane);
872 int (*check_plane)(struct intel_plane *plane,
873 struct intel_crtc_state *crtc_state,
874 struct intel_plane_state *state);
877 struct intel_watermark_params {
878 u16 fifo_size;
879 u16 max_wm;
880 u8 default_wm;
881 u8 guard_size;
882 u8 cacheline_size;
885 struct cxsr_latency {
886 bool is_desktop : 1;
887 bool is_ddr3 : 1;
888 u16 fsb_freq;
889 u16 mem_freq;
890 u16 display_sr;
891 u16 display_hpll_disable;
892 u16 cursor_sr;
893 u16 cursor_hpll_disable;
896 #define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base)
897 #define to_intel_crtc(x) container_of(x, struct intel_crtc, base)
898 #define to_intel_crtc_state(x) container_of(x, struct intel_crtc_state, base)
899 #define to_intel_connector(x) container_of(x, struct intel_connector, base)
900 #define to_intel_encoder(x) container_of(x, struct intel_encoder, base)
901 #define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base)
902 #define to_intel_plane(x) container_of(x, struct intel_plane, base)
903 #define to_intel_plane_state(x) container_of(x, struct intel_plane_state, base)
904 #define intel_fb_obj(x) (x ? to_intel_framebuffer(x)->obj : NULL)
906 struct intel_hdmi {
907 i915_reg_t hdmi_reg;
908 int ddc_bus;
909 struct {
910 enum drm_dp_dual_mode_type type;
911 int max_tmds_clock;
912 } dp_dual_mode;
913 bool has_hdmi_sink;
914 bool has_audio;
915 bool rgb_quant_range_selectable;
916 struct intel_connector *attached_connector;
919 struct intel_dp_mst_encoder;
920 #define DP_MAX_DOWNSTREAM_PORTS 0x10
923 * enum link_m_n_set:
924 * When platform provides two set of M_N registers for dp, we can
925 * program them and switch between them incase of DRRS.
926 * But When only one such register is provided, we have to program the
927 * required divider value on that registers itself based on the DRRS state.
929 * M1_N1 : Program dp_m_n on M1_N1 registers
930 * dp_m2_n2 on M2_N2 registers (If supported)
932 * M2_N2 : Program dp_m2_n2 on M1_N1 registers
933 * M2_N2 registers are not supported
936 enum link_m_n_set {
937 /* Sets the m1_n1 and m2_n2 */
938 M1_N1 = 0,
939 M2_N2
942 struct intel_dp_compliance_data {
943 unsigned long edid;
944 uint8_t video_pattern;
945 uint16_t hdisplay, vdisplay;
946 uint8_t bpc;
949 struct intel_dp_compliance {
950 unsigned long test_type;
951 struct intel_dp_compliance_data test_data;
952 bool test_active;
953 int test_link_rate;
954 u8 test_lane_count;
957 struct intel_dp {
958 i915_reg_t output_reg;
959 i915_reg_t aux_ch_ctl_reg;
960 i915_reg_t aux_ch_data_reg[5];
961 uint32_t DP;
962 int link_rate;
963 uint8_t lane_count;
964 uint8_t sink_count;
965 bool link_mst;
966 bool has_audio;
967 bool detect_done;
968 bool channel_eq_status;
969 bool reset_link_params;
970 uint8_t dpcd[DP_RECEIVER_CAP_SIZE];
971 uint8_t psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE];
972 uint8_t downstream_ports[DP_MAX_DOWNSTREAM_PORTS];
973 uint8_t edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
974 /* source rates */
975 int num_source_rates;
976 const int *source_rates;
977 /* sink rates as reported by DP_MAX_LINK_RATE/DP_SUPPORTED_LINK_RATES */
978 int num_sink_rates;
979 int sink_rates[DP_MAX_SUPPORTED_RATES];
980 bool use_rate_select;
981 /* intersection of source and sink rates */
982 int num_common_rates;
983 int common_rates[DP_MAX_SUPPORTED_RATES];
984 /* Max lane count for the current link */
985 int max_link_lane_count;
986 /* Max rate for the current link */
987 int max_link_rate;
988 /* sink or branch descriptor */
989 struct drm_dp_desc desc;
990 struct drm_dp_aux aux;
991 enum intel_display_power_domain aux_power_domain;
992 uint8_t train_set[4];
993 int panel_power_up_delay;
994 int panel_power_down_delay;
995 int panel_power_cycle_delay;
996 int backlight_on_delay;
997 int backlight_off_delay;
998 struct delayed_work panel_vdd_work;
999 bool want_panel_vdd;
1000 unsigned long last_power_on;
1001 unsigned long last_backlight_off;
1002 ktime_t panel_power_off_time;
1004 struct notifier_block edp_notifier;
1007 * Pipe whose power sequencer is currently locked into
1008 * this port. Only relevant on VLV/CHV.
1010 enum pipe pps_pipe;
1012 * Pipe currently driving the port. Used for preventing
1013 * the use of the PPS for any pipe currentrly driving
1014 * external DP as that will mess things up on VLV.
1016 enum pipe active_pipe;
1018 * Set if the sequencer may be reset due to a power transition,
1019 * requiring a reinitialization. Only relevant on BXT.
1021 bool pps_reset;
1022 struct edp_power_seq pps_delays;
1024 bool can_mst; /* this port supports mst */
1025 bool is_mst;
1026 int active_mst_links;
1027 /* connector directly attached - won't be use for modeset in mst world */
1028 struct intel_connector *attached_connector;
1030 /* mst connector list */
1031 struct intel_dp_mst_encoder *mst_encoders[I915_MAX_PIPES];
1032 struct drm_dp_mst_topology_mgr mst_mgr;
1034 uint32_t (*get_aux_clock_divider)(struct intel_dp *dp, int index);
1036 * This function returns the value we have to program the AUX_CTL
1037 * register with to kick off an AUX transaction.
1039 uint32_t (*get_aux_send_ctl)(struct intel_dp *dp,
1040 bool has_aux_irq,
1041 int send_bytes,
1042 uint32_t aux_clock_divider);
1044 /* This is called before a link training is starterd */
1045 void (*prepare_link_retrain)(struct intel_dp *intel_dp);
1047 /* Displayport compliance testing */
1048 struct intel_dp_compliance compliance;
1051 struct intel_lspcon {
1052 bool active;
1053 enum drm_lspcon_mode mode;
1056 struct intel_digital_port {
1057 struct intel_encoder base;
1058 u32 saved_port_bits;
1059 struct intel_dp dp;
1060 struct intel_hdmi hdmi;
1061 struct intel_lspcon lspcon;
1062 enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool);
1063 bool release_cl2_override;
1064 uint8_t max_lanes;
1065 enum intel_display_power_domain ddi_io_power_domain;
1067 void (*write_infoframe)(struct drm_encoder *encoder,
1068 const struct intel_crtc_state *crtc_state,
1069 unsigned int type,
1070 const void *frame, ssize_t len);
1071 void (*set_infoframes)(struct drm_encoder *encoder,
1072 bool enable,
1073 const struct intel_crtc_state *crtc_state,
1074 const struct drm_connector_state *conn_state);
1075 bool (*infoframe_enabled)(struct drm_encoder *encoder,
1076 const struct intel_crtc_state *pipe_config);
1079 struct intel_dp_mst_encoder {
1080 struct intel_encoder base;
1081 enum pipe pipe;
1082 struct intel_digital_port *primary;
1083 struct intel_connector *connector;
1086 static inline enum dpio_channel
1087 vlv_dport_to_channel(struct intel_digital_port *dport)
1089 switch (dport->base.port) {
1090 case PORT_B:
1091 case PORT_D:
1092 return DPIO_CH0;
1093 case PORT_C:
1094 return DPIO_CH1;
1095 default:
1096 BUG();
1100 static inline enum dpio_phy
1101 vlv_dport_to_phy(struct intel_digital_port *dport)
1103 switch (dport->base.port) {
1104 case PORT_B:
1105 case PORT_C:
1106 return DPIO_PHY0;
1107 case PORT_D:
1108 return DPIO_PHY1;
1109 default:
1110 BUG();
1114 static inline enum dpio_channel
1115 vlv_pipe_to_channel(enum pipe pipe)
1117 switch (pipe) {
1118 case PIPE_A:
1119 case PIPE_C:
1120 return DPIO_CH0;
1121 case PIPE_B:
1122 return DPIO_CH1;
1123 default:
1124 BUG();
1128 static inline struct intel_crtc *
1129 intel_get_crtc_for_pipe(struct drm_i915_private *dev_priv, enum pipe pipe)
1131 return dev_priv->pipe_to_crtc_mapping[pipe];
1134 static inline struct intel_crtc *
1135 intel_get_crtc_for_plane(struct drm_i915_private *dev_priv, enum i9xx_plane_id plane)
1137 return dev_priv->plane_to_crtc_mapping[plane];
1140 struct intel_load_detect_pipe {
1141 struct drm_atomic_state *restore_state;
1144 static inline struct intel_encoder *
1145 intel_attached_encoder(struct drm_connector *connector)
1147 return to_intel_connector(connector)->encoder;
1150 static inline struct intel_digital_port *
1151 enc_to_dig_port(struct drm_encoder *encoder)
1153 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
1155 switch (intel_encoder->type) {
1156 case INTEL_OUTPUT_DDI:
1157 WARN_ON(!HAS_DDI(to_i915(encoder->dev)));
1158 case INTEL_OUTPUT_DP:
1159 case INTEL_OUTPUT_EDP:
1160 case INTEL_OUTPUT_HDMI:
1161 return container_of(encoder, struct intel_digital_port,
1162 base.base);
1163 default:
1164 return NULL;
1168 static inline struct intel_dp_mst_encoder *
1169 enc_to_mst(struct drm_encoder *encoder)
1171 return container_of(encoder, struct intel_dp_mst_encoder, base.base);
1174 static inline struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
1176 return &enc_to_dig_port(encoder)->dp;
1179 static inline struct intel_digital_port *
1180 dp_to_dig_port(struct intel_dp *intel_dp)
1182 return container_of(intel_dp, struct intel_digital_port, dp);
1185 static inline struct intel_lspcon *
1186 dp_to_lspcon(struct intel_dp *intel_dp)
1188 return &dp_to_dig_port(intel_dp)->lspcon;
1191 static inline struct intel_digital_port *
1192 hdmi_to_dig_port(struct intel_hdmi *intel_hdmi)
1194 return container_of(intel_hdmi, struct intel_digital_port, hdmi);
1197 static inline struct intel_plane_state *
1198 intel_atomic_get_new_plane_state(struct intel_atomic_state *state,
1199 struct intel_plane *plane)
1201 return to_intel_plane_state(drm_atomic_get_new_plane_state(&state->base,
1202 &plane->base));
1205 static inline struct intel_crtc_state *
1206 intel_atomic_get_old_crtc_state(struct intel_atomic_state *state,
1207 struct intel_crtc *crtc)
1209 return to_intel_crtc_state(drm_atomic_get_old_crtc_state(&state->base,
1210 &crtc->base));
1213 static inline struct intel_crtc_state *
1214 intel_atomic_get_new_crtc_state(struct intel_atomic_state *state,
1215 struct intel_crtc *crtc)
1217 return to_intel_crtc_state(drm_atomic_get_new_crtc_state(&state->base,
1218 &crtc->base));
1221 /* intel_fifo_underrun.c */
1222 bool intel_set_cpu_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
1223 enum pipe pipe, bool enable);
1224 bool intel_set_pch_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
1225 enum pipe pch_transcoder,
1226 bool enable);
1227 void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
1228 enum pipe pipe);
1229 void intel_pch_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
1230 enum pipe pch_transcoder);
1231 void intel_check_cpu_fifo_underruns(struct drm_i915_private *dev_priv);
1232 void intel_check_pch_fifo_underruns(struct drm_i915_private *dev_priv);
1234 /* i915_irq.c */
1235 void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask);
1236 void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask);
1237 void gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
1238 void gen6_unmask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
1239 void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv);
1240 void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv);
1241 void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv);
1243 static inline u32 gen6_sanitize_rps_pm_mask(const struct drm_i915_private *i915,
1244 u32 mask)
1246 return mask & ~i915->gt_pm.rps.pm_intrmsk_mbz;
1249 void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv);
1250 void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv);
1251 static inline bool intel_irqs_enabled(struct drm_i915_private *dev_priv)
1254 * We only use drm_irq_uninstall() at unload and VT switch, so
1255 * this is the only thing we need to check.
1257 return dev_priv->runtime_pm.irqs_enabled;
1260 int intel_get_crtc_scanline(struct intel_crtc *crtc);
1261 void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
1262 u8 pipe_mask);
1263 void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
1264 u8 pipe_mask);
1265 void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv);
1266 void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv);
1267 void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv);
1269 /* intel_crt.c */
1270 void intel_crt_init(struct drm_i915_private *dev_priv);
1271 void intel_crt_reset(struct drm_encoder *encoder);
1273 /* intel_ddi.c */
1274 void intel_ddi_fdi_post_disable(struct intel_encoder *intel_encoder,
1275 const struct intel_crtc_state *old_crtc_state,
1276 const struct drm_connector_state *old_conn_state);
1277 void hsw_fdi_link_train(struct intel_crtc *crtc,
1278 const struct intel_crtc_state *crtc_state);
1279 void intel_ddi_init(struct drm_i915_private *dev_priv, enum port port);
1280 bool intel_ddi_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe);
1281 void intel_ddi_enable_transcoder_func(const struct intel_crtc_state *crtc_state);
1282 void intel_ddi_disable_transcoder_func(struct drm_i915_private *dev_priv,
1283 enum transcoder cpu_transcoder);
1284 void intel_ddi_enable_pipe_clock(const struct intel_crtc_state *crtc_state);
1285 void intel_ddi_disable_pipe_clock(const struct intel_crtc_state *crtc_state);
1286 struct intel_encoder *
1287 intel_ddi_get_crtc_new_encoder(struct intel_crtc_state *crtc_state);
1288 void intel_ddi_set_pipe_settings(const struct intel_crtc_state *crtc_state);
1289 void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp);
1290 bool intel_ddi_connector_get_hw_state(struct intel_connector *intel_connector);
1291 void intel_ddi_get_config(struct intel_encoder *encoder,
1292 struct intel_crtc_state *pipe_config);
1294 void intel_ddi_set_vc_payload_alloc(const struct intel_crtc_state *crtc_state,
1295 bool state);
1296 void intel_ddi_compute_min_voltage_level(struct drm_i915_private *dev_priv,
1297 struct intel_crtc_state *crtc_state);
1298 u32 bxt_signal_levels(struct intel_dp *intel_dp);
1299 uint32_t ddi_signal_levels(struct intel_dp *intel_dp);
1300 u8 intel_ddi_dp_voltage_max(struct intel_encoder *encoder);
1302 unsigned int intel_fb_align_height(const struct drm_framebuffer *fb,
1303 int plane, unsigned int height);
1305 /* intel_audio.c */
1306 void intel_init_audio_hooks(struct drm_i915_private *dev_priv);
1307 void intel_audio_codec_enable(struct intel_encoder *encoder,
1308 const struct intel_crtc_state *crtc_state,
1309 const struct drm_connector_state *conn_state);
1310 void intel_audio_codec_disable(struct intel_encoder *encoder,
1311 const struct intel_crtc_state *old_crtc_state,
1312 const struct drm_connector_state *old_conn_state);
1313 void i915_audio_component_init(struct drm_i915_private *dev_priv);
1314 void i915_audio_component_cleanup(struct drm_i915_private *dev_priv);
1315 void intel_audio_init(struct drm_i915_private *dev_priv);
1316 void intel_audio_deinit(struct drm_i915_private *dev_priv);
1318 /* intel_cdclk.c */
1319 int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state);
1320 void skl_init_cdclk(struct drm_i915_private *dev_priv);
1321 void skl_uninit_cdclk(struct drm_i915_private *dev_priv);
1322 void cnl_init_cdclk(struct drm_i915_private *dev_priv);
1323 void cnl_uninit_cdclk(struct drm_i915_private *dev_priv);
1324 void bxt_init_cdclk(struct drm_i915_private *dev_priv);
1325 void bxt_uninit_cdclk(struct drm_i915_private *dev_priv);
1326 void intel_init_cdclk_hooks(struct drm_i915_private *dev_priv);
1327 void intel_update_max_cdclk(struct drm_i915_private *dev_priv);
1328 void intel_update_cdclk(struct drm_i915_private *dev_priv);
1329 void intel_update_rawclk(struct drm_i915_private *dev_priv);
1330 bool intel_cdclk_needs_modeset(const struct intel_cdclk_state *a,
1331 const struct intel_cdclk_state *b);
1332 bool intel_cdclk_changed(const struct intel_cdclk_state *a,
1333 const struct intel_cdclk_state *b);
1334 void intel_set_cdclk(struct drm_i915_private *dev_priv,
1335 const struct intel_cdclk_state *cdclk_state);
1336 void intel_dump_cdclk_state(const struct intel_cdclk_state *cdclk_state,
1337 const char *context);
1339 /* intel_display.c */
1340 void i830_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
1341 void i830_disable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
1342 enum pipe intel_crtc_pch_transcoder(struct intel_crtc *crtc);
1343 void intel_update_rawclk(struct drm_i915_private *dev_priv);
1344 int vlv_get_hpll_vco(struct drm_i915_private *dev_priv);
1345 int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
1346 const char *name, u32 reg, int ref_freq);
1347 int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
1348 const char *name, u32 reg);
1349 void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv);
1350 void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
1351 void intel_init_display_hooks(struct drm_i915_private *dev_priv);
1352 unsigned int intel_fb_xy_to_linear(int x, int y,
1353 const struct intel_plane_state *state,
1354 int plane);
1355 void intel_add_fb_offsets(int *x, int *y,
1356 const struct intel_plane_state *state, int plane);
1357 unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info);
1358 bool intel_has_pending_fb_unpin(struct drm_i915_private *dev_priv);
1359 void intel_mark_busy(struct drm_i915_private *dev_priv);
1360 void intel_mark_idle(struct drm_i915_private *dev_priv);
1361 int intel_display_suspend(struct drm_device *dev);
1362 void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv);
1363 void intel_encoder_destroy(struct drm_encoder *encoder);
1364 int intel_connector_init(struct intel_connector *);
1365 struct intel_connector *intel_connector_alloc(void);
1366 void intel_connector_free(struct intel_connector *connector);
1367 bool intel_connector_get_hw_state(struct intel_connector *connector);
1368 void intel_connector_attach_encoder(struct intel_connector *connector,
1369 struct intel_encoder *encoder);
1370 struct drm_display_mode *
1371 intel_encoder_current_mode(struct intel_encoder *encoder);
1373 enum pipe intel_get_pipe_from_connector(struct intel_connector *connector);
1374 int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
1375 struct drm_file *file_priv);
1376 enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1377 enum pipe pipe);
1378 static inline bool
1379 intel_crtc_has_type(const struct intel_crtc_state *crtc_state,
1380 enum intel_output_type type)
1382 return crtc_state->output_types & (1 << type);
1384 static inline bool
1385 intel_crtc_has_dp_encoder(const struct intel_crtc_state *crtc_state)
1387 return crtc_state->output_types &
1388 ((1 << INTEL_OUTPUT_DP) |
1389 (1 << INTEL_OUTPUT_DP_MST) |
1390 (1 << INTEL_OUTPUT_EDP));
1392 static inline void
1393 intel_wait_for_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
1395 drm_wait_one_vblank(&dev_priv->drm, pipe);
1397 static inline void
1398 intel_wait_for_vblank_if_active(struct drm_i915_private *dev_priv, int pipe)
1400 const struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1402 if (crtc->active)
1403 intel_wait_for_vblank(dev_priv, pipe);
1406 u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc);
1408 int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp);
1409 void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1410 struct intel_digital_port *dport,
1411 unsigned int expected_mask);
1412 int intel_get_load_detect_pipe(struct drm_connector *connector,
1413 const struct drm_display_mode *mode,
1414 struct intel_load_detect_pipe *old,
1415 struct drm_modeset_acquire_ctx *ctx);
1416 void intel_release_load_detect_pipe(struct drm_connector *connector,
1417 struct intel_load_detect_pipe *old,
1418 struct drm_modeset_acquire_ctx *ctx);
1419 struct i915_vma *
1420 intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, unsigned int rotation);
1421 void intel_unpin_fb_vma(struct i915_vma *vma);
1422 struct drm_framebuffer *
1423 intel_framebuffer_create(struct drm_i915_gem_object *obj,
1424 struct drm_mode_fb_cmd2 *mode_cmd);
1425 int intel_prepare_plane_fb(struct drm_plane *plane,
1426 struct drm_plane_state *new_state);
1427 void intel_cleanup_plane_fb(struct drm_plane *plane,
1428 struct drm_plane_state *old_state);
1429 int intel_plane_atomic_get_property(struct drm_plane *plane,
1430 const struct drm_plane_state *state,
1431 struct drm_property *property,
1432 uint64_t *val);
1433 int intel_plane_atomic_set_property(struct drm_plane *plane,
1434 struct drm_plane_state *state,
1435 struct drm_property *property,
1436 uint64_t val);
1437 int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_crtc_state,
1438 struct drm_crtc_state *crtc_state,
1439 const struct intel_plane_state *old_plane_state,
1440 struct drm_plane_state *plane_state);
1442 void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1443 enum pipe pipe);
1445 int vlv_force_pll_on(struct drm_i915_private *dev_priv, enum pipe pipe,
1446 const struct dpll *dpll);
1447 void vlv_force_pll_off(struct drm_i915_private *dev_priv, enum pipe pipe);
1448 int lpt_get_iclkip(struct drm_i915_private *dev_priv);
1450 /* modesetting asserts */
1451 void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1452 enum pipe pipe);
1453 void assert_pll(struct drm_i915_private *dev_priv,
1454 enum pipe pipe, bool state);
1455 #define assert_pll_enabled(d, p) assert_pll(d, p, true)
1456 #define assert_pll_disabled(d, p) assert_pll(d, p, false)
1457 void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state);
1458 #define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1459 #define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1460 void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1461 enum pipe pipe, bool state);
1462 #define assert_fdi_rx_pll_enabled(d, p) assert_fdi_rx_pll(d, p, true)
1463 #define assert_fdi_rx_pll_disabled(d, p) assert_fdi_rx_pll(d, p, false)
1464 void assert_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, bool state);
1465 #define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
1466 #define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
1467 u32 intel_compute_tile_offset(int *x, int *y,
1468 const struct intel_plane_state *state, int plane);
1469 void intel_prepare_reset(struct drm_i915_private *dev_priv);
1470 void intel_finish_reset(struct drm_i915_private *dev_priv);
1471 void hsw_enable_pc8(struct drm_i915_private *dev_priv);
1472 void hsw_disable_pc8(struct drm_i915_private *dev_priv);
1473 void gen9_sanitize_dc_state(struct drm_i915_private *dev_priv);
1474 void bxt_enable_dc9(struct drm_i915_private *dev_priv);
1475 void bxt_disable_dc9(struct drm_i915_private *dev_priv);
1476 void gen9_enable_dc5(struct drm_i915_private *dev_priv);
1477 unsigned int skl_cdclk_get_vco(unsigned int freq);
1478 void skl_enable_dc6(struct drm_i915_private *dev_priv);
1479 void skl_disable_dc6(struct drm_i915_private *dev_priv);
1480 void intel_dp_get_m_n(struct intel_crtc *crtc,
1481 struct intel_crtc_state *pipe_config);
1482 void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n);
1483 int intel_dotclock_calculate(int link_freq, const struct intel_link_m_n *m_n);
1484 bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1485 struct dpll *best_clock);
1486 int chv_calc_dpll_params(int refclk, struct dpll *pll_clock);
1488 bool intel_crtc_active(struct intel_crtc *crtc);
1489 bool hsw_crtc_state_ips_capable(const struct intel_crtc_state *crtc_state);
1490 void hsw_enable_ips(const struct intel_crtc_state *crtc_state);
1491 void hsw_disable_ips(const struct intel_crtc_state *crtc_state);
1492 enum intel_display_power_domain intel_port_to_power_domain(enum port port);
1493 void intel_mode_from_pipe_config(struct drm_display_mode *mode,
1494 struct intel_crtc_state *pipe_config);
1496 int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state);
1497 int skl_max_scale(struct intel_crtc *crtc, struct intel_crtc_state *crtc_state);
1499 static inline u32 intel_plane_ggtt_offset(const struct intel_plane_state *state)
1501 return i915_ggtt_offset(state->vma);
1504 u32 glk_plane_color_ctl(const struct intel_crtc_state *crtc_state,
1505 const struct intel_plane_state *plane_state);
1506 u32 skl_plane_ctl(const struct intel_crtc_state *crtc_state,
1507 const struct intel_plane_state *plane_state);
1508 u32 skl_plane_stride(const struct drm_framebuffer *fb, int plane,
1509 unsigned int rotation);
1510 int skl_check_plane_surface(struct intel_plane_state *plane_state);
1511 int i9xx_check_plane_surface(struct intel_plane_state *plane_state);
1513 /* intel_csr.c */
1514 void intel_csr_ucode_init(struct drm_i915_private *);
1515 void intel_csr_load_program(struct drm_i915_private *);
1516 void intel_csr_ucode_fini(struct drm_i915_private *);
1517 void intel_csr_ucode_suspend(struct drm_i915_private *);
1518 void intel_csr_ucode_resume(struct drm_i915_private *);
1520 /* intel_dp.c */
1521 bool intel_dp_init(struct drm_i915_private *dev_priv, i915_reg_t output_reg,
1522 enum port port);
1523 bool intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
1524 struct intel_connector *intel_connector);
1525 void intel_dp_set_link_params(struct intel_dp *intel_dp,
1526 int link_rate, uint8_t lane_count,
1527 bool link_mst);
1528 int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
1529 int link_rate, uint8_t lane_count);
1530 void intel_dp_start_link_train(struct intel_dp *intel_dp);
1531 void intel_dp_stop_link_train(struct intel_dp *intel_dp);
1532 void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode);
1533 void intel_dp_encoder_reset(struct drm_encoder *encoder);
1534 void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder);
1535 void intel_dp_encoder_destroy(struct drm_encoder *encoder);
1536 int intel_dp_sink_crc(struct intel_dp *intel_dp,
1537 struct intel_crtc_state *crtc_state, u8 *crc);
1538 bool intel_dp_compute_config(struct intel_encoder *encoder,
1539 struct intel_crtc_state *pipe_config,
1540 struct drm_connector_state *conn_state);
1541 bool intel_dp_is_edp(struct intel_dp *intel_dp);
1542 bool intel_dp_is_port_edp(struct drm_i915_private *dev_priv, enum port port);
1543 enum irqreturn intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port,
1544 bool long_hpd);
1545 void intel_edp_backlight_on(const struct intel_crtc_state *crtc_state,
1546 const struct drm_connector_state *conn_state);
1547 void intel_edp_backlight_off(const struct drm_connector_state *conn_state);
1548 void intel_edp_panel_vdd_on(struct intel_dp *intel_dp);
1549 void intel_edp_panel_on(struct intel_dp *intel_dp);
1550 void intel_edp_panel_off(struct intel_dp *intel_dp);
1551 void intel_dp_mst_suspend(struct drm_device *dev);
1552 void intel_dp_mst_resume(struct drm_device *dev);
1553 int intel_dp_max_link_rate(struct intel_dp *intel_dp);
1554 int intel_dp_max_lane_count(struct intel_dp *intel_dp);
1555 int intel_dp_rate_select(struct intel_dp *intel_dp, int rate);
1556 void intel_dp_hot_plug(struct intel_encoder *intel_encoder);
1557 void intel_power_sequencer_reset(struct drm_i915_private *dev_priv);
1558 uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes);
1559 void intel_plane_destroy(struct drm_plane *plane);
1560 void intel_edp_drrs_enable(struct intel_dp *intel_dp,
1561 const struct intel_crtc_state *crtc_state);
1562 void intel_edp_drrs_disable(struct intel_dp *intel_dp,
1563 const struct intel_crtc_state *crtc_state);
1564 void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
1565 unsigned int frontbuffer_bits);
1566 void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
1567 unsigned int frontbuffer_bits);
1569 void
1570 intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
1571 uint8_t dp_train_pat);
1572 void
1573 intel_dp_set_signal_levels(struct intel_dp *intel_dp);
1574 void intel_dp_set_idle_link_train(struct intel_dp *intel_dp);
1575 uint8_t
1576 intel_dp_voltage_max(struct intel_dp *intel_dp);
1577 uint8_t
1578 intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing);
1579 void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
1580 uint8_t *link_bw, uint8_t *rate_select);
1581 bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp);
1582 bool
1583 intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE]);
1585 static inline unsigned int intel_dp_unused_lane_mask(int lane_count)
1587 return ~((1 << lane_count) - 1) & 0xf;
1590 bool intel_dp_read_dpcd(struct intel_dp *intel_dp);
1591 int intel_dp_link_required(int pixel_clock, int bpp);
1592 int intel_dp_max_data_rate(int max_link_clock, int max_lanes);
1593 bool intel_digital_port_connected(struct drm_i915_private *dev_priv,
1594 struct intel_digital_port *port);
1596 /* intel_dp_aux_backlight.c */
1597 int intel_dp_aux_init_backlight_funcs(struct intel_connector *intel_connector);
1599 /* intel_dp_mst.c */
1600 int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id);
1601 void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port);
1602 /* intel_dsi.c */
1603 void intel_dsi_init(struct drm_i915_private *dev_priv);
1605 /* intel_dsi_dcs_backlight.c */
1606 int intel_dsi_dcs_init_backlight_funcs(struct intel_connector *intel_connector);
1608 /* intel_dvo.c */
1609 void intel_dvo_init(struct drm_i915_private *dev_priv);
1610 /* intel_hotplug.c */
1611 void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
1614 /* legacy fbdev emulation in intel_fbdev.c */
1615 #ifdef CONFIG_DRM_FBDEV_EMULATION
1616 extern int intel_fbdev_init(struct drm_device *dev);
1617 extern void intel_fbdev_initial_config_async(struct drm_device *dev);
1618 extern void intel_fbdev_unregister(struct drm_i915_private *dev_priv);
1619 extern void intel_fbdev_fini(struct drm_i915_private *dev_priv);
1620 extern void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
1621 extern void intel_fbdev_output_poll_changed(struct drm_device *dev);
1622 extern void intel_fbdev_restore_mode(struct drm_device *dev);
1623 #else
1624 static inline int intel_fbdev_init(struct drm_device *dev)
1626 return 0;
1629 static inline void intel_fbdev_initial_config_async(struct drm_device *dev)
1633 static inline void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
1637 static inline void intel_fbdev_fini(struct drm_i915_private *dev_priv)
1641 static inline void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
1645 static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
1649 static inline void intel_fbdev_restore_mode(struct drm_device *dev)
1652 #endif
1654 /* intel_fbc.c */
1655 void intel_fbc_choose_crtc(struct drm_i915_private *dev_priv,
1656 struct intel_atomic_state *state);
1657 bool intel_fbc_is_active(struct drm_i915_private *dev_priv);
1658 void intel_fbc_pre_update(struct intel_crtc *crtc,
1659 struct intel_crtc_state *crtc_state,
1660 struct intel_plane_state *plane_state);
1661 void intel_fbc_post_update(struct intel_crtc *crtc);
1662 void intel_fbc_init(struct drm_i915_private *dev_priv);
1663 void intel_fbc_init_pipe_state(struct drm_i915_private *dev_priv);
1664 void intel_fbc_enable(struct intel_crtc *crtc,
1665 struct intel_crtc_state *crtc_state,
1666 struct intel_plane_state *plane_state);
1667 void intel_fbc_disable(struct intel_crtc *crtc);
1668 void intel_fbc_global_disable(struct drm_i915_private *dev_priv);
1669 void intel_fbc_invalidate(struct drm_i915_private *dev_priv,
1670 unsigned int frontbuffer_bits,
1671 enum fb_op_origin origin);
1672 void intel_fbc_flush(struct drm_i915_private *dev_priv,
1673 unsigned int frontbuffer_bits, enum fb_op_origin origin);
1674 void intel_fbc_cleanup_cfb(struct drm_i915_private *dev_priv);
1675 void intel_fbc_handle_fifo_underrun_irq(struct drm_i915_private *dev_priv);
1677 /* intel_hdmi.c */
1678 void intel_hdmi_init(struct drm_i915_private *dev_priv, i915_reg_t hdmi_reg,
1679 enum port port);
1680 void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1681 struct intel_connector *intel_connector);
1682 struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder);
1683 bool intel_hdmi_compute_config(struct intel_encoder *encoder,
1684 struct intel_crtc_state *pipe_config,
1685 struct drm_connector_state *conn_state);
1686 void intel_hdmi_handle_sink_scrambling(struct intel_encoder *intel_encoder,
1687 struct drm_connector *connector,
1688 bool high_tmds_clock_ratio,
1689 bool scrambling);
1690 void intel_dp_dual_mode_set_tmds_output(struct intel_hdmi *hdmi, bool enable);
1691 void intel_infoframe_init(struct intel_digital_port *intel_dig_port);
1694 /* intel_lvds.c */
1695 void intel_lvds_init(struct drm_i915_private *dev_priv);
1696 struct intel_encoder *intel_get_lvds_encoder(struct drm_device *dev);
1697 bool intel_is_dual_link_lvds(struct drm_device *dev);
1700 /* intel_modes.c */
1701 int intel_connector_update_modes(struct drm_connector *connector,
1702 struct edid *edid);
1703 int intel_ddc_get_modes(struct drm_connector *c, struct i2c_adapter *adapter);
1704 void intel_attach_force_audio_property(struct drm_connector *connector);
1705 void intel_attach_broadcast_rgb_property(struct drm_connector *connector);
1706 void intel_attach_aspect_ratio_property(struct drm_connector *connector);
1709 /* intel_overlay.c */
1710 void intel_setup_overlay(struct drm_i915_private *dev_priv);
1711 void intel_cleanup_overlay(struct drm_i915_private *dev_priv);
1712 int intel_overlay_switch_off(struct intel_overlay *overlay);
1713 int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1714 struct drm_file *file_priv);
1715 int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1716 struct drm_file *file_priv);
1717 void intel_overlay_reset(struct drm_i915_private *dev_priv);
1720 /* intel_panel.c */
1721 int intel_panel_init(struct intel_panel *panel,
1722 struct drm_display_mode *fixed_mode,
1723 struct drm_display_mode *alt_fixed_mode,
1724 struct drm_display_mode *downclock_mode);
1725 void intel_panel_fini(struct intel_panel *panel);
1726 void intel_fixed_panel_mode(const struct drm_display_mode *fixed_mode,
1727 struct drm_display_mode *adjusted_mode);
1728 void intel_pch_panel_fitting(struct intel_crtc *crtc,
1729 struct intel_crtc_state *pipe_config,
1730 int fitting_mode);
1731 void intel_gmch_panel_fitting(struct intel_crtc *crtc,
1732 struct intel_crtc_state *pipe_config,
1733 int fitting_mode);
1734 void intel_panel_set_backlight_acpi(const struct drm_connector_state *conn_state,
1735 u32 level, u32 max);
1736 int intel_panel_setup_backlight(struct drm_connector *connector,
1737 enum pipe pipe);
1738 void intel_panel_enable_backlight(const struct intel_crtc_state *crtc_state,
1739 const struct drm_connector_state *conn_state);
1740 void intel_panel_disable_backlight(const struct drm_connector_state *old_conn_state);
1741 void intel_panel_destroy_backlight(struct drm_connector *connector);
1742 enum drm_connector_status intel_panel_detect(struct drm_i915_private *dev_priv);
1743 extern struct drm_display_mode *intel_find_panel_downclock(
1744 struct drm_i915_private *dev_priv,
1745 struct drm_display_mode *fixed_mode,
1746 struct drm_connector *connector);
1748 #if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE)
1749 int intel_backlight_device_register(struct intel_connector *connector);
1750 void intel_backlight_device_unregister(struct intel_connector *connector);
1751 #else /* CONFIG_BACKLIGHT_CLASS_DEVICE */
1752 static inline int intel_backlight_device_register(struct intel_connector *connector)
1754 return 0;
1756 static inline void intel_backlight_device_unregister(struct intel_connector *connector)
1759 #endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */
1762 /* intel_psr.c */
1763 void intel_psr_enable(struct intel_dp *intel_dp,
1764 const struct intel_crtc_state *crtc_state);
1765 void intel_psr_disable(struct intel_dp *intel_dp,
1766 const struct intel_crtc_state *old_crtc_state);
1767 void intel_psr_invalidate(struct drm_i915_private *dev_priv,
1768 unsigned frontbuffer_bits);
1769 void intel_psr_flush(struct drm_i915_private *dev_priv,
1770 unsigned frontbuffer_bits,
1771 enum fb_op_origin origin);
1772 void intel_psr_init(struct drm_i915_private *dev_priv);
1773 void intel_psr_single_frame_update(struct drm_i915_private *dev_priv,
1774 unsigned frontbuffer_bits);
1775 void intel_psr_compute_config(struct intel_dp *intel_dp,
1776 struct intel_crtc_state *crtc_state);
1778 /* intel_runtime_pm.c */
1779 int intel_power_domains_init(struct drm_i915_private *);
1780 void intel_power_domains_fini(struct drm_i915_private *);
1781 void intel_power_domains_init_hw(struct drm_i915_private *dev_priv, bool resume);
1782 void intel_power_domains_suspend(struct drm_i915_private *dev_priv);
1783 void intel_power_domains_verify_state(struct drm_i915_private *dev_priv);
1784 void bxt_display_core_init(struct drm_i915_private *dev_priv, bool resume);
1785 void bxt_display_core_uninit(struct drm_i915_private *dev_priv);
1786 void intel_runtime_pm_enable(struct drm_i915_private *dev_priv);
1787 const char *
1788 intel_display_power_domain_str(enum intel_display_power_domain domain);
1790 bool intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
1791 enum intel_display_power_domain domain);
1792 bool __intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
1793 enum intel_display_power_domain domain);
1794 void intel_display_power_get(struct drm_i915_private *dev_priv,
1795 enum intel_display_power_domain domain);
1796 bool intel_display_power_get_if_enabled(struct drm_i915_private *dev_priv,
1797 enum intel_display_power_domain domain);
1798 void intel_display_power_put(struct drm_i915_private *dev_priv,
1799 enum intel_display_power_domain domain);
1801 static inline void
1802 assert_rpm_device_not_suspended(struct drm_i915_private *dev_priv)
1804 WARN_ONCE(dev_priv->runtime_pm.suspended,
1805 "Device suspended during HW access\n");
1808 static inline void
1809 assert_rpm_wakelock_held(struct drm_i915_private *dev_priv)
1811 assert_rpm_device_not_suspended(dev_priv);
1812 WARN_ONCE(!atomic_read(&dev_priv->runtime_pm.wakeref_count),
1813 "RPM wakelock ref not held during HW access");
1817 * disable_rpm_wakeref_asserts - disable the RPM assert checks
1818 * @dev_priv: i915 device instance
1820 * This function disable asserts that check if we hold an RPM wakelock
1821 * reference, while keeping the device-not-suspended checks still enabled.
1822 * It's meant to be used only in special circumstances where our rule about
1823 * the wakelock refcount wrt. the device power state doesn't hold. According
1824 * to this rule at any point where we access the HW or want to keep the HW in
1825 * an active state we must hold an RPM wakelock reference acquired via one of
1826 * the intel_runtime_pm_get() helpers. Currently there are a few special spots
1827 * where this rule doesn't hold: the IRQ and suspend/resume handlers, the
1828 * forcewake release timer, and the GPU RPS and hangcheck works. All other
1829 * users should avoid using this function.
1831 * Any calls to this function must have a symmetric call to
1832 * enable_rpm_wakeref_asserts().
1834 static inline void
1835 disable_rpm_wakeref_asserts(struct drm_i915_private *dev_priv)
1837 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
1841 * enable_rpm_wakeref_asserts - re-enable the RPM assert checks
1842 * @dev_priv: i915 device instance
1844 * This function re-enables the RPM assert checks after disabling them with
1845 * disable_rpm_wakeref_asserts. It's meant to be used only in special
1846 * circumstances otherwise its use should be avoided.
1848 * Any calls to this function must have a symmetric call to
1849 * disable_rpm_wakeref_asserts().
1851 static inline void
1852 enable_rpm_wakeref_asserts(struct drm_i915_private *dev_priv)
1854 atomic_dec(&dev_priv->runtime_pm.wakeref_count);
1857 void intel_runtime_pm_get(struct drm_i915_private *dev_priv);
1858 bool intel_runtime_pm_get_if_in_use(struct drm_i915_private *dev_priv);
1859 void intel_runtime_pm_get_noresume(struct drm_i915_private *dev_priv);
1860 void intel_runtime_pm_put(struct drm_i915_private *dev_priv);
1862 void intel_display_set_init_power(struct drm_i915_private *dev, bool enable);
1864 void chv_phy_powergate_lanes(struct intel_encoder *encoder,
1865 bool override, unsigned int mask);
1866 bool chv_phy_powergate_ch(struct drm_i915_private *dev_priv, enum dpio_phy phy,
1867 enum dpio_channel ch, bool override);
1870 /* intel_pm.c */
1871 void intel_init_clock_gating(struct drm_i915_private *dev_priv);
1872 void intel_suspend_hw(struct drm_i915_private *dev_priv);
1873 int ilk_wm_max_level(const struct drm_i915_private *dev_priv);
1874 void intel_update_watermarks(struct intel_crtc *crtc);
1875 void intel_init_pm(struct drm_i915_private *dev_priv);
1876 void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv);
1877 void intel_pm_setup(struct drm_i915_private *dev_priv);
1878 void intel_gpu_ips_init(struct drm_i915_private *dev_priv);
1879 void intel_gpu_ips_teardown(void);
1880 void intel_init_gt_powersave(struct drm_i915_private *dev_priv);
1881 void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv);
1882 void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv);
1883 void intel_enable_gt_powersave(struct drm_i915_private *dev_priv);
1884 void intel_disable_gt_powersave(struct drm_i915_private *dev_priv);
1885 void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv);
1886 void gen6_rps_busy(struct drm_i915_private *dev_priv);
1887 void gen6_rps_reset_ei(struct drm_i915_private *dev_priv);
1888 void gen6_rps_idle(struct drm_i915_private *dev_priv);
1889 void gen6_rps_boost(struct drm_i915_gem_request *rq,
1890 struct intel_rps_client *rps);
1891 void g4x_wm_get_hw_state(struct drm_device *dev);
1892 void vlv_wm_get_hw_state(struct drm_device *dev);
1893 void ilk_wm_get_hw_state(struct drm_device *dev);
1894 void skl_wm_get_hw_state(struct drm_device *dev);
1895 void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
1896 struct skl_ddb_allocation *ddb /* out */);
1897 void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
1898 struct skl_pipe_wm *out);
1899 void g4x_wm_sanitize(struct drm_i915_private *dev_priv);
1900 void vlv_wm_sanitize(struct drm_i915_private *dev_priv);
1901 bool intel_can_enable_sagv(struct drm_atomic_state *state);
1902 int intel_enable_sagv(struct drm_i915_private *dev_priv);
1903 int intel_disable_sagv(struct drm_i915_private *dev_priv);
1904 bool skl_wm_level_equals(const struct skl_wm_level *l1,
1905 const struct skl_wm_level *l2);
1906 bool skl_ddb_allocation_overlaps(struct drm_i915_private *dev_priv,
1907 const struct skl_ddb_entry **entries,
1908 const struct skl_ddb_entry *ddb,
1909 int ignore);
1910 bool ilk_disable_lp_wm(struct drm_device *dev);
1911 int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
1912 struct intel_crtc_state *cstate);
1913 void intel_init_ipc(struct drm_i915_private *dev_priv);
1914 void intel_enable_ipc(struct drm_i915_private *dev_priv);
1916 /* intel_sdvo.c */
1917 bool intel_sdvo_init(struct drm_i915_private *dev_priv,
1918 i915_reg_t reg, enum port port);
1921 /* intel_sprite.c */
1922 int intel_usecs_to_scanlines(const struct drm_display_mode *adjusted_mode,
1923 int usecs);
1924 struct intel_plane *intel_sprite_plane_create(struct drm_i915_private *dev_priv,
1925 enum pipe pipe, int plane);
1926 int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
1927 struct drm_file *file_priv);
1928 void intel_pipe_update_start(const struct intel_crtc_state *new_crtc_state);
1929 void intel_pipe_update_end(struct intel_crtc_state *new_crtc_state);
1930 void skl_update_plane(struct intel_plane *plane,
1931 const struct intel_crtc_state *crtc_state,
1932 const struct intel_plane_state *plane_state);
1933 void skl_disable_plane(struct intel_plane *plane, struct intel_crtc *crtc);
1934 bool skl_plane_get_hw_state(struct intel_plane *plane);
1936 /* intel_tv.c */
1937 void intel_tv_init(struct drm_i915_private *dev_priv);
1939 /* intel_atomic.c */
1940 int intel_digital_connector_atomic_get_property(struct drm_connector *connector,
1941 const struct drm_connector_state *state,
1942 struct drm_property *property,
1943 uint64_t *val);
1944 int intel_digital_connector_atomic_set_property(struct drm_connector *connector,
1945 struct drm_connector_state *state,
1946 struct drm_property *property,
1947 uint64_t val);
1948 int intel_digital_connector_atomic_check(struct drm_connector *conn,
1949 struct drm_connector_state *new_state);
1950 struct drm_connector_state *
1951 intel_digital_connector_duplicate_state(struct drm_connector *connector);
1953 struct drm_crtc_state *intel_crtc_duplicate_state(struct drm_crtc *crtc);
1954 void intel_crtc_destroy_state(struct drm_crtc *crtc,
1955 struct drm_crtc_state *state);
1956 struct drm_atomic_state *intel_atomic_state_alloc(struct drm_device *dev);
1957 void intel_atomic_state_clear(struct drm_atomic_state *);
1959 static inline struct intel_crtc_state *
1960 intel_atomic_get_crtc_state(struct drm_atomic_state *state,
1961 struct intel_crtc *crtc)
1963 struct drm_crtc_state *crtc_state;
1964 crtc_state = drm_atomic_get_crtc_state(state, &crtc->base);
1965 if (IS_ERR(crtc_state))
1966 return ERR_CAST(crtc_state);
1968 return to_intel_crtc_state(crtc_state);
1971 static inline struct intel_crtc_state *
1972 intel_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
1973 struct intel_crtc *crtc)
1975 struct drm_crtc_state *crtc_state;
1977 crtc_state = drm_atomic_get_existing_crtc_state(state, &crtc->base);
1979 if (crtc_state)
1980 return to_intel_crtc_state(crtc_state);
1981 else
1982 return NULL;
1985 static inline struct intel_plane_state *
1986 intel_atomic_get_existing_plane_state(struct drm_atomic_state *state,
1987 struct intel_plane *plane)
1989 struct drm_plane_state *plane_state;
1991 plane_state = drm_atomic_get_existing_plane_state(state, &plane->base);
1993 return to_intel_plane_state(plane_state);
1996 int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
1997 struct intel_crtc *intel_crtc,
1998 struct intel_crtc_state *crtc_state);
2000 /* intel_atomic_plane.c */
2001 struct intel_plane_state *intel_create_plane_state(struct drm_plane *plane);
2002 struct drm_plane_state *intel_plane_duplicate_state(struct drm_plane *plane);
2003 void intel_plane_destroy_state(struct drm_plane *plane,
2004 struct drm_plane_state *state);
2005 extern const struct drm_plane_helper_funcs intel_plane_helper_funcs;
2006 int intel_plane_atomic_check_with_state(const struct intel_crtc_state *old_crtc_state,
2007 struct intel_crtc_state *crtc_state,
2008 const struct intel_plane_state *old_plane_state,
2009 struct intel_plane_state *intel_state);
2011 /* intel_color.c */
2012 void intel_color_init(struct drm_crtc *crtc);
2013 int intel_color_check(struct drm_crtc *crtc, struct drm_crtc_state *state);
2014 void intel_color_set_csc(struct drm_crtc_state *crtc_state);
2015 void intel_color_load_luts(struct drm_crtc_state *crtc_state);
2017 /* intel_lspcon.c */
2018 bool lspcon_init(struct intel_digital_port *intel_dig_port);
2019 void lspcon_resume(struct intel_lspcon *lspcon);
2020 void lspcon_wait_pcon_mode(struct intel_lspcon *lspcon);
2022 /* intel_pipe_crc.c */
2023 int intel_pipe_crc_create(struct drm_minor *minor);
2024 #ifdef CONFIG_DEBUG_FS
2025 int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name,
2026 size_t *values_cnt);
2027 #else
2028 #define intel_crtc_set_crc_source NULL
2029 #endif
2030 extern const struct file_operations i915_display_crc_ctl_fops;
2031 #endif /* __INTEL_DRV_H__ */