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
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
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>
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>
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 */ \
57 bool expired__ = time_after(jiffies, timeout__); \
66 usleep_range(wait__, wait__ * 2); \
67 if (wait__ < (Wmax)) \
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())
79 # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
82 #define _wait_for_atomic(COND, US, ATOMIC) \
84 int cpu, ret, timeout = (US) * 1000; \
86 _WAIT_FOR_ATOMIC_CHECK(ATOMIC); \
89 cpu = smp_processor_id(); \
91 base = local_clock(); \
93 u64 now = local_clock(); \
100 if (now - base >= timeout) { \
107 if (unlikely(cpu != smp_processor_id())) { \
108 timeout -= now - base; \
109 cpu = smp_processor_id(); \
110 base = local_clock(); \
117 #define wait_for_us(COND, US) \
120 BUILD_BUG_ON(!__builtin_constant_p(US)); \
122 ret__ = _wait_for((COND), (US), 10, 10); \
124 ret__ = _wait_for_atomic((COND), (US), 0); \
128 #define wait_for_atomic_us(COND, US) \
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,
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 */
193 /* for each plane in the rotated GTT view */
196 unsigned int pitch
; /* pixels */
201 struct drm_fb_helper helper
;
202 struct intel_framebuffer
*fb
;
203 struct i915_vma
*vma
;
204 async_cookie_t cookie
;
208 struct intel_encoder
{
209 struct drm_encoder base
;
211 enum intel_output_type type
;
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
*);
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
;
266 struct drm_display_mode
*fixed_mode
;
267 struct drm_display_mode
*alt_fixed_mode
;
268 struct drm_display_mode
*downclock_mode
;
277 bool combination_mode
; /* gen 2/4 only */
279 bool alternate_pwm_increment
; /* lpt+ */
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
,
297 void (*power
)(struct intel_connector
*, bool enable
);
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 */
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. */
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 */
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
;
341 #define to_intel_digital_connector_state(x) container_of(x, struct intel_digital_connector_state, base)
355 struct intel_atomic_state
{
356 struct drm_atomic_state base
;
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
;
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
;
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
;
421 /* plane control register */
424 /* plane color control register */
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
441 * - During check_plane, corresponding bit is reset in
442 * crtc_state->scaler_state.scaler_users by calling helper function
443 * update_scaler_plane.
447 struct drm_intel_sprite_colorkey ckey
;
450 struct intel_initial_plane_config
{
451 struct intel_framebuffer
*fb
;
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
{
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)
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
488 * intel_atomic_setup_scalers will setup available scalers to users
489 * requesting scalers. It will gracefully fail if request exceeds
492 #define SKL_CRTC_INDEX 31
493 unsigned scaler_users
;
495 /* scaler used by crtc for panel fitting purpose */
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];
509 bool sprites_enabled
;
513 struct skl_plane_wm
{
514 struct skl_wm_level wm
[8];
515 struct skl_wm_level trans_wm
;
519 struct skl_plane_wm planes
[I915_MAX_PLANES
];
526 VLV_WM_LEVEL_DDR_DVFS
,
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
];
537 struct vlv_fifo_state
{
538 u16 plane
[I915_MAX_PLANES
];
548 struct g4x_wm_state
{
549 struct g4x_pipe_wm wm
;
551 struct g4x_sr_wm hpll
;
557 struct intel_crtc_wm_state
{
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
;
577 /* gen9+ only needs 1-step wm programming */
578 struct skl_pipe_wm optimal
;
579 struct skl_ddb_entry ddb
;
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
;
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
;
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
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
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? */
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 */
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. */
670 /* Audio enabled on this pipe. Only valid if either has_hdmi_sink or
671 * has_dp_encoder is set. */
675 * Enable dithering, used when the selected pipe bpp doesn't match the
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
686 bool dither_force_disable
;
688 /* Controls for the clock computation, to override various stages. */
691 /* SDVO TV has a bunch of special case. To make multifunction encoders
692 * work correctly, we need to track this at runtime.*/
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.
702 /* Settings for the intel dpll used on pretty much everything but
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 */
718 struct intel_link_m_n dp_m_n
;
720 /* m2_n2 for eDP downclock */
721 struct intel_link_m_n dp_m2_n2
;
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.
734 /* Used by SDVO (and if we ever fix it, HDMI). */
735 unsigned pixel_multiplier
;
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 */
752 u32 lvds_border_bits
;
755 /* Panel fitter placement and size for Ironlake+ */
763 /* FDI configuration, only valid if has_pch_encoder is set. */
765 struct intel_link_m_n fdi_m_n
;
768 bool ips_force_disable
;
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) */
784 struct intel_crtc_wm_state wm
;
786 /* Gamma mode programmed on the pipe */
789 /* bitmask of visible planes (enum plane_id) */
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 */
803 struct drm_crtc base
;
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.
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 */
826 /* watermarks currently being used */
828 struct intel_pipe_wm ilk
;
829 struct vlv_wm_state vlv
;
830 struct g4x_wm_state g4x
;
837 unsigned start_vbl_count
;
838 ktime_t start_vbl_time
;
839 int min_vbl
, max_vbl
;
843 /* scalers available on this crtc */
848 struct drm_plane base
;
849 enum i9xx_plane_id i9xx_plane
;
854 uint32_t frontbuffer_bit
;
857 u32 base
, cntl
, size
;
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
{
885 struct cxsr_latency
{
891 u16 display_hpll_disable
;
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)
910 enum drm_dp_dual_mode_type type
;
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
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
937 /* Sets the m1_n1 and m2_n2 */
942 struct intel_dp_compliance_data
{
944 uint8_t video_pattern
;
945 uint16_t hdisplay
, vdisplay
;
949 struct intel_dp_compliance
{
950 unsigned long test_type
;
951 struct intel_dp_compliance_data test_data
;
958 i915_reg_t output_reg
;
959 i915_reg_t aux_ch_ctl_reg
;
960 i915_reg_t aux_ch_data_reg
[5];
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
];
975 int num_source_rates
;
976 const int *source_rates
;
977 /* sink rates as reported by DP_MAX_LINK_RATE/DP_SUPPORTED_LINK_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 */
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
;
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.
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.
1022 struct edp_power_seq pps_delays
;
1024 bool can_mst
; /* this port supports 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
,
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
{
1053 enum drm_lspcon_mode mode
;
1056 struct intel_digital_port
{
1057 struct intel_encoder base
;
1058 u32 saved_port_bits
;
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
;
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
,
1070 const void *frame
, ssize_t len
);
1071 void (*set_infoframes
)(struct drm_encoder
*encoder
,
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
;
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
) {
1100 static inline enum dpio_phy
1101 vlv_dport_to_phy(struct intel_digital_port
*dport
)
1103 switch (dport
->base
.port
) {
1114 static inline enum dpio_channel
1115 vlv_pipe_to_channel(enum pipe pipe
)
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
,
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
,
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
,
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
,
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
,
1227 void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private
*dev_priv
,
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
);
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
,
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
,
1263 void gen8_irq_power_well_pre_disable(struct drm_i915_private
*dev_priv
,
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
);
1270 void intel_crt_init(struct drm_i915_private
*dev_priv
);
1271 void intel_crt_reset(struct drm_encoder
*encoder
);
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
,
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
);
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
);
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
,
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
,
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
);
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
));
1393 intel_wait_for_vblank(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
1395 drm_wait_one_vblank(&dev_priv
->drm
, pipe
);
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
);
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
);
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
,
1433 int intel_plane_atomic_set_property(struct drm_plane
*plane
,
1434 struct drm_plane_state
*state
,
1435 struct drm_property
*property
,
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
,
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
,
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
);
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
*);
1521 bool intel_dp_init(struct drm_i915_private
*dev_priv
, i915_reg_t output_reg
,
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
,
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
,
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
);
1570 intel_dp_program_link_training_pattern(struct intel_dp
*intel_dp
,
1571 uint8_t dp_train_pat
);
1573 intel_dp_set_signal_levels(struct intel_dp
*intel_dp
);
1574 void intel_dp_set_idle_link_train(struct intel_dp
*intel_dp
);
1576 intel_dp_voltage_max(struct intel_dp
*intel_dp
);
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
);
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
);
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
);
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
);
1624 static inline int intel_fbdev_init(struct drm_device
*dev
)
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
)
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
);
1678 void intel_hdmi_init(struct drm_i915_private
*dev_priv
, i915_reg_t hdmi_reg
,
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
,
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
);
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
);
1701 int intel_connector_update_modes(struct drm_connector
*connector
,
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
);
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
,
1731 void intel_gmch_panel_fitting(struct intel_crtc
*crtc
,
1732 struct intel_crtc_state
*pipe_config
,
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
,
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
)
1756 static inline void intel_backlight_device_unregister(struct intel_connector
*connector
)
1759 #endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */
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
);
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
);
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");
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().
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().
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
);
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
,
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
);
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
,
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
);
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
,
1944 int intel_digital_connector_atomic_set_property(struct drm_connector
*connector
,
1945 struct drm_connector_state
*state
,
1946 struct drm_property
*property
,
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
);
1980 return to_intel_crtc_state(crtc_state
);
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
);
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
);
2028 #define intel_crtc_set_crc_source NULL
2030 extern const struct file_operations i915_display_crc_ctl_fops
;
2031 #endif /* __INTEL_DRV_H__ */