intel_drv.h 65.8 KB
Newer Older
J
Jesse Barnes 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
 * Copyright (c) 2007-2008 Intel Corporation
 *   Jesse Barnes <jesse.barnes@intel.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */
#ifndef __INTEL_DRV_H__
#define __INTEL_DRV_H__

28
#include <linux/async.h>
J
Jesse Barnes 已提交
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 35
#include <drm/drm_crtc.h>
#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>
42

D
Daniel Vetter 已提交
43 44 45 46 47 48 49
/**
 * _wait_for - magic (register) wait macro
 *
 * Does the right thing for modeset paths when run under kdgb or similar atomic
 * contexts. Note that it's important that we check the condition again after
 * having timed out, since the timeout could be due to preemption or similar and
 * we've never had a chance to check the condition before the timeout.
50 51 52 53
 *
 * TODO: When modesetting has fully transitioned to atomic, the below
 * drm_can_sleep() can be removed and in_atomic()/!in_atomic() asserts
 * added.
D
Daniel Vetter 已提交
54
 */
T
Tvrtko Ursulin 已提交
55 56
#define _wait_for(COND, US, W) ({ \
	unsigned long timeout__ = jiffies + usecs_to_jiffies(US) + 1;	\
57 58 59 60 61 62 63 64 65
	int ret__;							\
	for (;;) {							\
		bool expired__ = time_after(jiffies, timeout__);	\
		if (COND) {						\
			ret__ = 0;					\
			break;						\
		}							\
		if (expired__) {					\
			ret__ = -ETIMEDOUT;				\
66 67
			break;						\
		}							\
68
		if ((W) && drm_can_sleep()) {				\
T
Tvrtko Ursulin 已提交
69
			usleep_range((W), (W)*2);			\
70 71 72
		} else {						\
			cpu_relax();					\
		}							\
73 74 75 76
	}								\
	ret__;								\
})

T
Tvrtko Ursulin 已提交
77 78
#define wait_for(COND, MS)	  	_wait_for((COND), (MS) * 1000, 1000)

79 80
/* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */
#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT)
81
# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic())
82
#else
83
# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
84 85
#endif

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
#define _wait_for_atomic(COND, US, ATOMIC) \
({ \
	int cpu, ret, timeout = (US) * 1000; \
	u64 base; \
	_WAIT_FOR_ATOMIC_CHECK(ATOMIC); \
	if (!(ATOMIC)) { \
		preempt_disable(); \
		cpu = smp_processor_id(); \
	} \
	base = local_clock(); \
	for (;;) { \
		u64 now = local_clock(); \
		if (!(ATOMIC)) \
			preempt_enable(); \
		if (COND) { \
			ret = 0; \
			break; \
		} \
		if (now - base >= timeout) { \
			ret = -ETIMEDOUT; \
106 107 108
			break; \
		} \
		cpu_relax(); \
109 110 111 112 113 114 115 116
		if (!(ATOMIC)) { \
			preempt_disable(); \
			if (unlikely(cpu != smp_processor_id())) { \
				timeout -= now - base; \
				cpu = smp_processor_id(); \
				base = local_clock(); \
			} \
		} \
117
	} \
118 119 120 121 122 123 124 125 126 127 128
	ret; \
})

#define wait_for_us(COND, US) \
({ \
	int ret__; \
	BUILD_BUG_ON(!__builtin_constant_p(US)); \
	if ((US) > 10) \
		ret__ = _wait_for((COND), (US), 10); \
	else \
		ret__ = _wait_for_atomic((COND), (US), 0); \
129 130 131
	ret__; \
})

132 133 134 135 136 137 138 139
#define wait_for_atomic_us(COND, US) \
({ \
	BUILD_BUG_ON(!__builtin_constant_p(US)); \
	BUILD_BUG_ON((US) > 50000); \
	_wait_for_atomic((COND), (US), 1); \
})

#define wait_for_atomic(COND, MS) wait_for_atomic_us((COND), (MS) * 1000)
140

141 142
#define KHz(x) (1000 * (x))
#define MHz(x) KHz(1000 * (x))
143

J
Jesse Barnes 已提交
144 145 146 147 148 149 150 151 152 153
/*
 * Display related stuff
 */

/* store information about an Ixxx DVO */
/* The i830->i865 use multiple DVOs with multiple i2cs */
/* the i915, i945 have a single sDVO i2c bus - which is different */
#define MAX_OUTPUTS 6
/* maximum connectors per crtcs in the mode set */

154 155 156
/* Maximum cursor sizes */
#define GEN2_CURSOR_WIDTH 64
#define GEN2_CURSOR_HEIGHT 64
157 158
#define MAX_CURSOR_WIDTH 256
#define MAX_CURSOR_HEIGHT 256
159

J
Jesse Barnes 已提交
160 161 162 163 164
#define INTEL_I2C_BUS_DVO 1
#define INTEL_I2C_BUS_SDVO 2

/* these are outputs from the chip - integrated only
   external chips are via DVO or SDVO output */
165 166 167 168 169 170 171 172
enum intel_output_type {
	INTEL_OUTPUT_UNUSED = 0,
	INTEL_OUTPUT_ANALOG = 1,
	INTEL_OUTPUT_DVO = 2,
	INTEL_OUTPUT_SDVO = 3,
	INTEL_OUTPUT_LVDS = 4,
	INTEL_OUTPUT_TVOUT = 5,
	INTEL_OUTPUT_HDMI = 6,
173
	INTEL_OUTPUT_DP = 7,
174 175 176 177 178
	INTEL_OUTPUT_EDP = 8,
	INTEL_OUTPUT_DSI = 9,
	INTEL_OUTPUT_UNKNOWN = 10,
	INTEL_OUTPUT_DP_MST = 11,
};
J
Jesse Barnes 已提交
179 180 181 182 183 184

#define INTEL_DVO_CHIP_NONE 0
#define INTEL_DVO_CHIP_LVDS 1
#define INTEL_DVO_CHIP_TMDS 2
#define INTEL_DVO_CHIP_TVOUT 4

185 186
#define INTEL_DSI_VIDEO_MODE	0
#define INTEL_DSI_COMMAND_MODE	1
187

J
Jesse Barnes 已提交
188 189
struct intel_framebuffer {
	struct drm_framebuffer base;
190
	struct drm_i915_gem_object *obj;
191
	struct intel_rotation_info rot_info;
192 193 194 195 196 197 198 199 200 201

	/* for each plane in the normal GTT view */
	struct {
		unsigned int x, y;
	} normal[2];
	/* for each plane in the rotated GTT view */
	struct {
		unsigned int x, y;
		unsigned int pitch; /* pixels */
	} rotated[2];
J
Jesse Barnes 已提交
202 203
};

204 205
struct intel_fbdev {
	struct drm_fb_helper helper;
206
	struct intel_framebuffer *fb;
C
Chris Wilson 已提交
207
	struct i915_vma *vma;
208
	async_cookie_t cookie;
209
	int preferred_bpp;
210
};
J
Jesse Barnes 已提交
211

212
struct intel_encoder {
213
	struct drm_encoder base;
214

215
	enum intel_output_type type;
216
	enum port port;
217
	unsigned int cloneable;
218
	void (*hot_plug)(struct intel_encoder *);
219
	bool (*compute_config)(struct intel_encoder *,
220 221
			       struct intel_crtc_state *,
			       struct drm_connector_state *);
222
	void (*pre_pll_enable)(struct intel_encoder *,
223 224
			       const struct intel_crtc_state *,
			       const struct drm_connector_state *);
225
	void (*pre_enable)(struct intel_encoder *,
226 227
			   const struct intel_crtc_state *,
			   const struct drm_connector_state *);
228
	void (*enable)(struct intel_encoder *,
229 230
		       const struct intel_crtc_state *,
		       const struct drm_connector_state *);
231
	void (*disable)(struct intel_encoder *,
232 233
			const struct intel_crtc_state *,
			const struct drm_connector_state *);
234
	void (*post_disable)(struct intel_encoder *,
235 236
			     const struct intel_crtc_state *,
			     const struct drm_connector_state *);
237
	void (*post_pll_disable)(struct intel_encoder *,
238 239
				 const struct intel_crtc_state *,
				 const struct drm_connector_state *);
240 241 242 243
	/* Read out the current hw state of this connector, returning true if
	 * the encoder is active. If the encoder is enabled it also set the pipe
	 * it is connected to in the pipe parameter. */
	bool (*get_hw_state)(struct intel_encoder *, enum pipe *pipe);
244
	/* Reconstructs the equivalent mode flags for the current hardware
245
	 * state. This must be called _after_ display->get_pipe_config has
246 247
	 * pre-filled the pipe config. Note that intel_encoder->base.crtc must
	 * be set correctly before calling this function. */
248
	void (*get_config)(struct intel_encoder *,
249
			   struct intel_crtc_state *pipe_config);
250 251 252
	/* Returns a mask of power domains that need to be referenced as part
	 * of the hardware state readout code. */
	u64 (*get_power_domains)(struct intel_encoder *encoder);
253 254 255 256 257 258
	/*
	 * Called during system suspend after all pending requests for the
	 * encoder are flushed (for example for DP AUX transactions) and
	 * device interrupts are disabled.
	 */
	void (*suspend)(struct intel_encoder *);
259
	int crtc_mask;
260
	enum hpd_pin hpd_pin;
261
	enum intel_display_power_domain power_domain;
262 263
	/* for communication with audio component; protected by av_mutex */
	const struct drm_connector *audio_connector;
J
Jesse Barnes 已提交
264 265
};

266
struct intel_panel {
267
	struct drm_display_mode *fixed_mode;
268
	struct drm_display_mode *alt_fixed_mode;
269
	struct drm_display_mode *downclock_mode;
270 271 272

	/* backlight */
	struct {
273
		bool present;
274
		u32 level;
275
		u32 min;
276
		u32 max;
277
		bool enabled;
278 279
		bool combination_mode;	/* gen 2/4 only */
		bool active_low_pwm;
280
		bool alternate_pwm_increment;	/* lpt+ */
281 282

		/* PWM chip */
283 284
		bool util_pin_active_low;	/* bxt+ */
		u8 controller;		/* bxt+ only */
285 286
		struct pwm_device *pwm;

287
		struct backlight_device *device;
288

289 290 291
		/* Connector and platform specific backlight functions */
		int (*setup)(struct intel_connector *connector, enum pipe pipe);
		uint32_t (*get)(struct intel_connector *connector);
292 293 294 295
		void (*set)(const struct drm_connector_state *conn_state, uint32_t level);
		void (*disable)(const struct drm_connector_state *conn_state);
		void (*enable)(const struct intel_crtc_state *crtc_state,
			       const struct drm_connector_state *conn_state);
296 297 298 299
		uint32_t (*hz_to_pwm)(struct intel_connector *connector,
				      uint32_t hz);
		void (*power)(struct intel_connector *, bool enable);
	} backlight;
300 301
};

302 303
struct intel_connector {
	struct drm_connector base;
304 305 306
	/*
	 * The fixed encoder this connector is connected to.
	 */
307
	struct intel_encoder *encoder;
308

309 310 311
	/* ACPI device id for ACPI and driver cooperation */
	u32 acpi_device_id;

312 313 314
	/* Reads out the current hw, returning true if the connector is enabled
	 * and active (i.e. dpms ON state). */
	bool (*get_hw_state)(struct intel_connector *);
315 316 317

	/* Panel info for eDP and LVDS */
	struct intel_panel panel;
318 319 320

	/* Cached EDID for eDP and LVDS. May hold ERR_PTR for invalid EDID. */
	struct edid *edid;
321
	struct edid *detect_edid;
322 323 324 325

	/* since POLL and HPD connectors may use the same HPD line keep the native
	   state of connector->polled in case hotplug storm detection changes it */
	u8 polled;
326 327 328 329

	void *port; /* store this opaque as its illegal to dereference it */

	struct intel_dp *mst_port;
330 331 332

	/* Work struct to schedule a uevent on link train failure */
	struct work_struct modeset_retry_work;
333 334
};

335 336 337 338 339 340 341 342 343
struct intel_digital_connector_state {
	struct drm_connector_state base;

	enum hdmi_force_audio force_audio;
	int broadcast_rgb;
};

#define to_intel_digital_connector_state(x) container_of(x, struct intel_digital_connector_state, base)

344
struct dpll {
345 346 347 348 349 350 351 352 353
	/* given values */
	int n;
	int m1, m2;
	int p1, p2;
	/* derived values */
	int	dot;
	int	vco;
	int	m;
	int	p;
354
};
355

356 357 358
struct intel_atomic_state {
	struct drm_atomic_state base;

359 360 361 362 363 364 365 366 367 368 369 370 371 372
	struct {
		/*
		 * Logical state of cdclk (used for all scaling, watermark,
		 * etc. calculations and checks). This is computed as if all
		 * enabled crtcs were active.
		 */
		struct intel_cdclk_state logical;

		/*
		 * Actual state of cdclk, can be different from the logical
		 * state only when all crtc's are DPMS off.
		 */
		struct intel_cdclk_state actual;
	} cdclk;
373

374 375
	bool dpll_set, modeset;

376 377 378 379 380 381 382 383 384 385
	/*
	 * Does this transaction change the pipes that are active?  This mask
	 * tracks which CRTC's have changed their active state at the end of
	 * the transaction (not counting the temporary disable during modesets).
	 * This mask should only be non-zero when intel_state->modeset is true,
	 * but the converse is not necessarily true; simply changing a mode may
	 * not flip the final active status of any CRTC's
	 */
	unsigned int active_pipe_changes;

386
	unsigned int active_crtcs;
387 388
	/* minimum acceptable cdclk for each pipe */
	int min_cdclk[I915_MAX_PIPES];
389

390
	struct intel_shared_dpll_state shared_dpll[I915_NUM_PLLS];
391 392 393 394 395 396

	/*
	 * Current watermarks can't be trusted during hardware readout, so
	 * don't bother calculating intermediate watermarks.
	 */
	bool skip_intermediate_wm;
397 398

	/* Gen9+ only */
399
	struct skl_wm_values wm_results;
400 401

	struct i915_sw_fence commit_ready;
402 403

	struct llist_node freed;
404 405
};

406
struct intel_plane_state {
407
	struct drm_plane_state base;
408
	struct drm_rect clip;
409
	struct i915_vma *vma;
410

411 412 413 414
	struct {
		u32 offset;
		int x, y;
	} main;
415 416 417 418
	struct {
		u32 offset;
		int x, y;
	} aux;
419

420 421 422
	/* plane control register */
	u32 ctl;

423 424 425 426 427 428 429 430
	/*
	 * scaler_id
	 *    = -1 : not using a scaler
	 *    >=  0 : using a scalers
	 *
	 * plane requiring a scaler:
	 *   - During check_plane, its bit is set in
	 *     crtc_state->scaler_state.scaler_users by calling helper function
431
	 *     update_scaler_plane.
432 433 434 435 436 437 438
	 *   - scaler_id indicates the scaler it got assigned.
	 *
	 * plane doesn't require a scaler:
	 *   - this can happen when scaling is no more required or plane simply
	 *     got disabled.
	 *   - During check_plane, corresponding bit is reset in
	 *     crtc_state->scaler_state.scaler_users by calling helper function
439
	 *     update_scaler_plane.
440 441
	 */
	int scaler_id;
442 443

	struct drm_intel_sprite_colorkey ckey;
444 445
};

446
struct intel_initial_plane_config {
447
	struct intel_framebuffer *fb;
448
	unsigned int tiling;
449 450 451 452
	int size;
	u32 base;
};

453 454 455
#define SKL_MIN_SRC_W 8
#define SKL_MAX_SRC_W 4096
#define SKL_MIN_SRC_H 8
456
#define SKL_MAX_SRC_H 4096
457 458 459
#define SKL_MIN_DST_W 8
#define SKL_MAX_DST_W 4096
#define SKL_MIN_DST_H 8
460
#define SKL_MAX_DST_H 4096
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494

struct intel_scaler {
	int in_use;
	uint32_t mode;
};

struct intel_crtc_scaler_state {
#define SKL_NUM_SCALERS 2
	struct intel_scaler scalers[SKL_NUM_SCALERS];

	/*
	 * scaler_users: keeps track of users requesting scalers on this crtc.
	 *
	 *     If a bit is set, a user is using a scaler.
	 *     Here user can be a plane or crtc as defined below:
	 *       bits 0-30 - plane (bit position is index from drm_plane_index)
	 *       bit 31    - crtc
	 *
	 * Instead of creating a new index to cover planes and crtc, using
	 * existing drm_plane_index for planes which is well less than 31
	 * planes and bit 31 for crtc. This should be fine to cover all
	 * our platforms.
	 *
	 * intel_atomic_setup_scalers will setup available scalers to users
	 * requesting scalers. It will gracefully fail if request exceeds
	 * avilability.
	 */
#define SKL_CRTC_INDEX 31
	unsigned scaler_users;

	/* scaler used by crtc for panel fitting purpose */
	int scaler_id;
};

495 496 497
/* drm_mode->private_flags */
#define I915_MODE_FLAG_INHERITED 1

498 499
struct intel_pipe_wm {
	struct intel_wm_level wm[5];
500
	struct intel_wm_level raw_wm[5];
501 502 503 504 505 506 507
	uint32_t linetime;
	bool fbc_wm_enabled;
	bool pipe_enabled;
	bool sprites_enabled;
	bool sprites_scaled;
};

L
Lyude 已提交
508
struct skl_plane_wm {
509 510
	struct skl_wm_level wm[8];
	struct skl_wm_level trans_wm;
L
Lyude 已提交
511 512 513 514
};

struct skl_pipe_wm {
	struct skl_plane_wm planes[I915_MAX_PLANES];
515 516 517
	uint32_t linetime;
};

518 519 520 521 522 523 524 525
enum vlv_wm_level {
	VLV_WM_LEVEL_PM2,
	VLV_WM_LEVEL_PM5,
	VLV_WM_LEVEL_DDR_DVFS,
	NUM_VLV_WM_LEVELS,
};

struct vlv_wm_state {
526 527
	struct g4x_pipe_wm wm[NUM_VLV_WM_LEVELS];
	struct g4x_sr_wm sr[NUM_VLV_WM_LEVELS];
528 529 530 531
	uint8_t num_levels;
	bool cxsr;
};

532 533 534 535
struct vlv_fifo_state {
	u16 plane[I915_MAX_PLANES];
};

536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
enum g4x_wm_level {
	G4X_WM_LEVEL_NORMAL,
	G4X_WM_LEVEL_SR,
	G4X_WM_LEVEL_HPLL,
	NUM_G4X_WM_LEVELS,
};

struct g4x_wm_state {
	struct g4x_pipe_wm wm;
	struct g4x_sr_wm sr;
	struct g4x_sr_wm hpll;
	bool cxsr;
	bool hpll_en;
	bool fbc_en;
};

552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
struct intel_crtc_wm_state {
	union {
		struct {
			/*
			 * Intermediate watermarks; these can be
			 * programmed immediately since they satisfy
			 * both the current configuration we're
			 * switching away from and the new
			 * configuration we're switching to.
			 */
			struct intel_pipe_wm intermediate;

			/*
			 * Optimal watermarks, programmed post-vblank
			 * when this state is committed.
			 */
			struct intel_pipe_wm optimal;
		} ilk;

		struct {
			/* gen9+ only needs 1-step wm programming */
			struct skl_pipe_wm optimal;
574
			struct skl_ddb_entry ddb;
575
		} skl;
576 577

		struct {
578
			/* "raw" watermarks (not inverted) */
579
			struct g4x_pipe_wm raw[NUM_VLV_WM_LEVELS];
580 581
			/* intermediate watermarks (inverted) */
			struct vlv_wm_state intermediate;
582 583
			/* optimal watermarks (inverted) */
			struct vlv_wm_state optimal;
584 585
			/* display FIFO split */
			struct vlv_fifo_state fifo_state;
586
		} vlv;
587 588 589 590 591 592 593 594 595

		struct {
			/* "raw" watermarks */
			struct g4x_pipe_wm raw[NUM_G4X_WM_LEVELS];
			/* intermediate watermarks */
			struct g4x_wm_state intermediate;
			/* optimal watermarks */
			struct g4x_wm_state optimal;
		} g4x;
596 597 598 599 600 601 602 603 604 605 606
	};

	/*
	 * Platforms with two-step watermark programming will need to
	 * update watermark programming post-vblank to switch from the
	 * safe intermediate watermarks to the optimal final
	 * watermarks.
	 */
	bool need_postvbl_update;
};

607
struct intel_crtc_state {
608 609
	struct drm_crtc_state base;

610 611 612 613 614 615 616 617
	/**
	 * quirks - bitfield with hw state readout quirks
	 *
	 * For various reasons the hw state readout code might not be able to
	 * completely faithfully read out the current state. These cases are
	 * tracked with quirk flags so that fastboot and state checker can act
	 * accordingly.
	 */
618
#define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS	(1<<0) /* unreliable sync mode.flags */
619 620
	unsigned long quirks;

621
	unsigned fb_bits; /* framebuffers to flip */
622 623
	bool update_pipe; /* can a fast modeset be performed? */
	bool disable_cxsr;
624
	bool update_wm_pre, update_wm_post; /* watermarks are updated */
625
	bool fb_changed; /* fb on any of the planes is changed */
626
	bool fifo_changed; /* FIFO split is changed */
627

628 629 630 631 632
	/* Pipe source size (ie. panel fitter input size)
	 * All planes will be positioned inside this space,
	 * and get clipped at the edges. */
	int pipe_src_w, pipe_src_h;

633 634 635 636 637 638
	/*
	 * Pipe pixel rate, adjusted for
	 * panel fitter/pipe scaler downscaling.
	 */
	unsigned int pixel_rate;

639 640 641
	/* Whether to set up the PCH/FDI. Note that we never allow sharing
	 * between pch encoders and cpu encoders. */
	bool has_pch_encoder;
642

643 644 645
	/* Are we sending infoframes on the attached port */
	bool has_infoframe;

646
	/* CPU Transcoder for the pipe. Currently this can only differ from the
J
Jani Nikula 已提交
647 648
	 * pipe on Haswell and later (where we have a special eDP transcoder)
	 * and Broxton (where we have special DSI transcoders). */
649 650
	enum transcoder cpu_transcoder;

651 652 653 654 655 656
	/*
	 * Use reduced/limited/broadcast rbg range, compressing from the full
	 * range fed into the crtcs.
	 */
	bool limited_color_range;

657 658 659 660 661
	/* Bitmask of encoder types (enum intel_output_type)
	 * driven by the pipe.
	 */
	unsigned int output_types;

662 663 664
	/* Whether we should send NULL infoframes. Required for audio. */
	bool has_hdmi_sink;

665 666 667 668
	/* Audio enabled on this pipe. Only valid if either has_hdmi_sink or
	 * has_dp_encoder is set. */
	bool has_audio;

669 670 671 672
	/*
	 * Enable dithering, used when the selected pipe bpp doesn't match the
	 * plane bpp.
	 */
673
	bool dither;
674

675 676 677 678 679 680 681 682
	/*
	 * Dither gets enabled for 18bpp which causes CRC mismatch errors for
	 * compliance video pattern tests.
	 * Disable dither only if it is a compliance test request for
	 * 18bpp.
	 */
	bool dither_force_disable;

683 684 685
	/* Controls for the clock computation, to override various stages. */
	bool clock_set;

686 687 688 689
	/* SDVO TV has a bunch of special case. To make multifunction encoders
	 * work correctly, we need to track this at runtime.*/
	bool sdvo_tv_clock;

690 691 692 693 694 695 696
	/*
	 * crtc bandwidth limit, don't increase pipe bpp or clock if not really
	 * required. This is set in the 2nd loop of calling encoder's
	 * ->compute_config if the first pick doesn't work out.
	 */
	bool bw_constrained;

697 698
	/* Settings for the intel dpll used on pretty much everything but
	 * haswell. */
699
	struct dpll dpll;
700

701 702
	/* Selected dpll when shared or NULL. */
	struct intel_shared_dpll *shared_dpll;
703

704 705 706
	/* Actual register state of the dpll, for shared dpll cross-checking. */
	struct intel_dpll_hw_state dpll_hw_state;

707 708 709 710 711
	/* DSI PLL registers */
	struct {
		u32 ctrl, div;
	} dsi_pll;

712
	int pipe_bpp;
713
	struct intel_link_m_n dp_m_n;
714

715 716
	/* m2_n2 for eDP downclock */
	struct intel_link_m_n dp_m2_n2;
717
	bool has_drrs;
718

719 720
	/*
	 * Frequence the dpll for the port should run at. Differs from the
721 722
	 * adjusted dotclock e.g. for DP or 12bpc hdmi mode. This is also
	 * already multiplied by pixel_multiplier.
723
	 */
724 725
	int port_clock;

726 727
	/* Used by SDVO (and if we ever fix it, HDMI). */
	unsigned pixel_multiplier;
728

729 730
	uint8_t lane_count;

731 732 733 734 735 736
	/*
	 * Used by platforms having DP/HDMI PHY with programmable lane
	 * latency optimization.
	 */
	uint8_t lane_lat_optim_mask;

737
	/* Panel fitter controls for gen2-gen4 + VLV */
738 739 740
	struct {
		u32 control;
		u32 pgm_ratios;
741
		u32 lvds_border_bits;
742 743 744 745 746 747
	} gmch_pfit;

	/* Panel fitter placement and size for Ironlake+ */
	struct {
		u32 pos;
		u32 size;
748
		bool enabled;
749
		bool force_thru;
750
	} pch_pfit;
751

752
	/* FDI configuration, only valid if has_pch_encoder is set. */
753
	int fdi_lanes;
754
	struct intel_link_m_n fdi_m_n;
P
Paulo Zanoni 已提交
755 756

	bool ips_enabled;
757
	bool ips_force_disable;
758

759 760
	bool enable_fbc;

761
	bool double_wide;
762 763

	int pbn;
764 765

	struct intel_crtc_scaler_state scaler_state;
766 767 768

	/* w/a for waiting 2 vblanks during crtc enable */
	enum pipe hsw_workaround_pipe;
769 770 771

	/* IVB sprite scaling w/a (WaCxSRDisabledForSpriteScaling:ivb) */
	bool disable_lp_wm;
772

773
	struct intel_crtc_wm_state wm;
774 775 776

	/* Gamma mode programmed on the pipe */
	uint32_t gamma_mode;
777 778 779

	/* bitmask of visible planes (enum plane_id) */
	u8 active_planes;
S
Shashank Sharma 已提交
780 781 782 783 784 785

	/* HDMI scrambling status */
	bool hdmi_scrambling;

	/* HDMI High TMDS char rate ratio */
	bool hdmi_high_tmds_clock_ratio;
786 787 788

	/* output format is YCBCR 4:2:0 */
	bool ycbcr420;
789 790
};

J
Jesse Barnes 已提交
791 792
struct intel_crtc {
	struct drm_crtc base;
793 794
	enum pipe pipe;
	enum plane plane;
795 796 797 798 799 800
	/*
	 * Whether the crtc and the connected output pipeline is active. Implies
	 * that crtc->enabled is set, i.e. the current mode configuration has
	 * some outputs connected to this crtc.
	 */
	bool active;
801
	bool lowfreq_avail;
802
	u8 plane_ids_mask;
803
	unsigned long long enabled_power_domains;
804
	struct intel_overlay *overlay;
805

806 807 808
	/* Display surface base address adjustement for pageflips. Note that on
	 * gen4+ this only adjusts up to a tile, offsets within a tile are
	 * handled in the hw itself (with the TILEOFF register). */
809
	u32 dspaddr_offset;
810 811
	int adjusted_x;
	int adjusted_y;
812

813
	struct intel_crtc_state *config;
814

815 816
	/* global reset count when the last flip was submitted */
	unsigned int reset_count;
817

818 819 820
	/* Access to these should be protected by dev_priv->irq_lock. */
	bool cpu_fifo_underrun_disabled;
	bool pch_fifo_underrun_disabled;
821 822 823 824

	/* per-pipe watermark state */
	struct {
		/* watermarks currently being used  */
825 826
		union {
			struct intel_pipe_wm ilk;
827
			struct vlv_wm_state vlv;
828
			struct g4x_wm_state g4x;
829
		} active;
830
	} wm;
831

832
	int scanline_offset;
833

834 835 836 837 838 839
	struct {
		unsigned start_vbl_count;
		ktime_t start_vbl_time;
		int min_vbl, max_vbl;
		int scanline_start;
	} debug;
840

841 842
	/* scalers available on this crtc */
	int num_scalers;
J
Jesse Barnes 已提交
843 844
};

845 846
struct intel_plane {
	struct drm_plane base;
847 848
	u8 plane;
	enum plane_id id;
849
	enum pipe pipe;
850
	bool can_scale;
851
	int max_downscale;
852
	uint32_t frontbuffer_bit;
853

854 855 856 857
	struct {
		u32 base, cntl, size;
	} cursor;

858 859 860
	/*
	 * NOTE: Do not place new plane state fields here (e.g., when adding
	 * new plane properties).  New runtime state should now be placed in
861
	 * the intel_plane_state structure and accessed via plane_state.
862 863
	 */

864
	void (*update_plane)(struct intel_plane *plane,
865 866
			     const struct intel_crtc_state *crtc_state,
			     const struct intel_plane_state *plane_state);
867 868 869
	void (*disable_plane)(struct intel_plane *plane,
			      struct intel_crtc *crtc);
	int (*check_plane)(struct intel_plane *plane,
870
			   struct intel_crtc_state *crtc_state,
871
			   struct intel_plane_state *state);
872 873
};

874
struct intel_watermark_params {
875 876 877 878 879
	u16 fifo_size;
	u16 max_wm;
	u8 default_wm;
	u8 guard_size;
	u8 cacheline_size;
880 881 882
};

struct cxsr_latency {
883 884
	bool is_desktop : 1;
	bool is_ddr3 : 1;
885 886 887 888 889 890
	u16 fsb_freq;
	u16 mem_freq;
	u16 display_sr;
	u16 display_hpll_disable;
	u16 cursor_sr;
	u16 cursor_hpll_disable;
891 892
};

893
#define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base)
J
Jesse Barnes 已提交
894
#define to_intel_crtc(x) container_of(x, struct intel_crtc, base)
895
#define to_intel_crtc_state(x) container_of(x, struct intel_crtc_state, base)
896
#define to_intel_connector(x) container_of(x, struct intel_connector, base)
897
#define to_intel_encoder(x) container_of(x, struct intel_encoder, base)
J
Jesse Barnes 已提交
898
#define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base)
899
#define to_intel_plane(x) container_of(x, struct intel_plane, base)
900
#define to_intel_plane_state(x) container_of(x, struct intel_plane_state, base)
901
#define intel_fb_obj(x) (x ? to_intel_framebuffer(x)->obj : NULL)
J
Jesse Barnes 已提交
902

903
struct intel_hdmi {
904
	i915_reg_t hdmi_reg;
905
	int ddc_bus;
906 907 908 909
	struct {
		enum drm_dp_dual_mode_type type;
		int max_tmds_clock;
	} dp_dual_mode;
910 911
	bool has_hdmi_sink;
	bool has_audio;
912
	bool rgb_quant_range_selectable;
913
	struct intel_connector *attached_connector;
914 915
};

916
struct intel_dp_mst_encoder;
917
#define DP_MAX_DOWNSTREAM_PORTS		0x10
918

919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
/*
 * enum link_m_n_set:
 *	When platform provides two set of M_N registers for dp, we can
 *	program them and switch between them incase of DRRS.
 *	But When only one such register is provided, we have to program the
 *	required divider value on that registers itself based on the DRRS state.
 *
 * M1_N1	: Program dp_m_n on M1_N1 registers
 *			  dp_m2_n2 on M2_N2 registers (If supported)
 *
 * M2_N2	: Program dp_m2_n2 on M1_N1 registers
 *			  M2_N2 registers are not supported
 */

enum link_m_n_set {
	/* Sets the m1_n1 and m2_n2 */
	M1_N1 = 0,
	M2_N2
};

939 940
struct intel_dp_compliance_data {
	unsigned long edid;
941 942 943
	uint8_t video_pattern;
	uint16_t hdisplay, vdisplay;
	uint8_t bpc;
944 945 946 947 948 949
};

struct intel_dp_compliance {
	unsigned long test_type;
	struct intel_dp_compliance_data test_data;
	bool test_active;
950 951
	int test_link_rate;
	u8 test_lane_count;
952 953
};

954
struct intel_dp {
955 956 957
	i915_reg_t output_reg;
	i915_reg_t aux_ch_ctl_reg;
	i915_reg_t aux_ch_data_reg[5];
958
	uint32_t DP;
959 960
	int link_rate;
	uint8_t lane_count;
961
	uint8_t sink_count;
962
	bool link_mst;
963
	bool has_audio;
964
	bool detect_done;
965
	bool channel_eq_status;
966
	bool reset_link_params;
967
	uint8_t dpcd[DP_RECEIVER_CAP_SIZE];
968
	uint8_t psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE];
969
	uint8_t downstream_ports[DP_MAX_DOWNSTREAM_PORTS];
970
	uint8_t edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
971 972 973
	/* source rates */
	int num_source_rates;
	const int *source_rates;
974 975
	/* sink rates as reported by DP_MAX_LINK_RATE/DP_SUPPORTED_LINK_RATES */
	int num_sink_rates;
976
	int sink_rates[DP_MAX_SUPPORTED_RATES];
977
	bool use_rate_select;
978 979 980
	/* intersection of source and sink rates */
	int num_common_rates;
	int common_rates[DP_MAX_SUPPORTED_RATES];
981 982 983 984
	/* Max lane count for the current link */
	int max_link_lane_count;
	/* Max rate for the current link */
	int max_link_rate;
985
	/* sink or branch descriptor */
986
	struct drm_dp_desc desc;
987
	struct drm_dp_aux aux;
988
	enum intel_display_power_domain aux_power_domain;
989 990 991 992 993 994 995 996
	uint8_t train_set[4];
	int panel_power_up_delay;
	int panel_power_down_delay;
	int panel_power_cycle_delay;
	int backlight_on_delay;
	int backlight_off_delay;
	struct delayed_work panel_vdd_work;
	bool want_panel_vdd;
997 998
	unsigned long last_power_on;
	unsigned long last_backlight_off;
999
	ktime_t panel_power_off_time;
D
Dave Airlie 已提交
1000

1001 1002
	struct notifier_block edp_notifier;

1003 1004 1005 1006 1007
	/*
	 * Pipe whose power sequencer is currently locked into
	 * this port. Only relevant on VLV/CHV.
	 */
	enum pipe pps_pipe;
1008 1009 1010 1011 1012 1013
	/*
	 * Pipe currently driving the port. Used for preventing
	 * the use of the PPS for any pipe currentrly driving
	 * external DP as that will mess things up on VLV.
	 */
	enum pipe active_pipe;
1014 1015 1016 1017 1018
	/*
	 * Set if the sequencer may be reset due to a power transition,
	 * requiring a reinitialization. Only relevant on BXT.
	 */
	bool pps_reset;
1019
	struct edp_power_seq pps_delays;
1020

1021 1022
	bool can_mst; /* this port supports mst */
	bool is_mst;
1023
	int active_mst_links;
1024
	/* connector directly attached - won't be use for modeset in mst world */
1025
	struct intel_connector *attached_connector;
1026

1027 1028 1029 1030
	/* mst connector list */
	struct intel_dp_mst_encoder *mst_encoders[I915_MAX_PIPES];
	struct drm_dp_mst_topology_mgr mst_mgr;

1031
	uint32_t (*get_aux_clock_divider)(struct intel_dp *dp, int index);
1032 1033 1034 1035 1036 1037 1038 1039
	/*
	 * This function returns the value we have to program the AUX_CTL
	 * register with to kick off an AUX transaction.
	 */
	uint32_t (*get_aux_send_ctl)(struct intel_dp *dp,
				     bool has_aux_irq,
				     int send_bytes,
				     uint32_t aux_clock_divider);
1040 1041 1042 1043

	/* This is called before a link training is starterd */
	void (*prepare_link_retrain)(struct intel_dp *intel_dp);

1044
	/* Displayport compliance testing */
1045
	struct intel_dp_compliance compliance;
1046 1047
};

1048 1049 1050 1051 1052
struct intel_lspcon {
	bool active;
	enum drm_lspcon_mode mode;
};

1053 1054
struct intel_digital_port {
	struct intel_encoder base;
1055
	enum port port;
1056
	u32 saved_port_bits;
1057 1058
	struct intel_dp dp;
	struct intel_hdmi hdmi;
1059
	struct intel_lspcon lspcon;
1060
	enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool);
1061
	bool release_cl2_override;
1062
	uint8_t max_lanes;
1063
	enum intel_display_power_domain ddi_io_power_domain;
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074

	void (*write_infoframe)(struct drm_encoder *encoder,
				const struct intel_crtc_state *crtc_state,
				enum hdmi_infoframe_type type,
				const void *frame, ssize_t len);
	void (*set_infoframes)(struct drm_encoder *encoder,
			       bool enable,
			       const struct intel_crtc_state *crtc_state,
			       const struct drm_connector_state *conn_state);
	bool (*infoframe_enabled)(struct drm_encoder *encoder,
				  const struct intel_crtc_state *pipe_config);
1075 1076
};

1077 1078 1079 1080
struct intel_dp_mst_encoder {
	struct intel_encoder base;
	enum pipe pipe;
	struct intel_digital_port *primary;
1081
	struct intel_connector *connector;
1082 1083
};

1084
static inline enum dpio_channel
1085 1086 1087 1088
vlv_dport_to_channel(struct intel_digital_port *dport)
{
	switch (dport->port) {
	case PORT_B:
1089
	case PORT_D:
1090
		return DPIO_CH0;
1091
	case PORT_C:
1092
		return DPIO_CH1;
1093 1094 1095 1096 1097
	default:
		BUG();
	}
}

1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
static inline enum dpio_phy
vlv_dport_to_phy(struct intel_digital_port *dport)
{
	switch (dport->port) {
	case PORT_B:
	case PORT_C:
		return DPIO_PHY0;
	case PORT_D:
		return DPIO_PHY1;
	default:
		BUG();
	}
}

static inline enum dpio_channel
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
vlv_pipe_to_channel(enum pipe pipe)
{
	switch (pipe) {
	case PIPE_A:
	case PIPE_C:
		return DPIO_CH0;
	case PIPE_B:
		return DPIO_CH1;
	default:
		BUG();
	}
}

1126
static inline struct intel_crtc *
1127
intel_get_crtc_for_pipe(struct drm_i915_private *dev_priv, enum pipe pipe)
1128 1129 1130 1131
{
	return dev_priv->pipe_to_crtc_mapping[pipe];
}

1132
static inline struct intel_crtc *
1133
intel_get_crtc_for_plane(struct drm_i915_private *dev_priv, enum plane plane)
1134 1135 1136 1137
{
	return dev_priv->plane_to_crtc_mapping[plane];
}

P
Paulo Zanoni 已提交
1138
struct intel_load_detect_pipe {
1139
	struct drm_atomic_state *restore_state;
P
Paulo Zanoni 已提交
1140
};
J
Jesse Barnes 已提交
1141

P
Paulo Zanoni 已提交
1142 1143
static inline struct intel_encoder *
intel_attached_encoder(struct drm_connector *connector)
1144 1145 1146 1147
{
	return to_intel_connector(connector)->encoder;
}

1148 1149 1150
static inline struct intel_digital_port *
enc_to_dig_port(struct drm_encoder *encoder)
{
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
	struct intel_encoder *intel_encoder = to_intel_encoder(encoder);

	switch (intel_encoder->type) {
	case INTEL_OUTPUT_UNKNOWN:
		WARN_ON(!HAS_DDI(to_i915(encoder->dev)));
	case INTEL_OUTPUT_DP:
	case INTEL_OUTPUT_EDP:
	case INTEL_OUTPUT_HDMI:
		return container_of(encoder, struct intel_digital_port,
				    base.base);
	default:
		return NULL;
	}
1164 1165
}

1166 1167 1168 1169 1170 1171
static inline struct intel_dp_mst_encoder *
enc_to_mst(struct drm_encoder *encoder)
{
	return container_of(encoder, struct intel_dp_mst_encoder, base.base);
}

1172 1173 1174
static inline struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
{
	return &enc_to_dig_port(encoder)->dp;
1175 1176 1177 1178 1179 1180 1181 1182
}

static inline struct intel_digital_port *
dp_to_dig_port(struct intel_dp *intel_dp)
{
	return container_of(intel_dp, struct intel_digital_port, dp);
}

1183 1184 1185 1186 1187 1188
static inline struct intel_lspcon *
dp_to_lspcon(struct intel_dp *intel_dp)
{
	return &dp_to_dig_port(intel_dp)->lspcon;
}

1189 1190 1191 1192
static inline struct intel_digital_port *
hdmi_to_dig_port(struct intel_hdmi *intel_hdmi)
{
	return container_of(intel_hdmi, struct intel_digital_port, hdmi);
1193 1194
}

1195 1196 1197 1198 1199 1200 1201 1202
static inline struct intel_plane_state *
intel_atomic_get_new_plane_state(struct intel_atomic_state *state,
				 struct intel_plane *plane)
{
	return to_intel_plane_state(drm_atomic_get_new_plane_state(&state->base,
								   &plane->base));
}

1203 1204 1205 1206 1207 1208 1209 1210
static inline struct intel_crtc_state *
intel_atomic_get_old_crtc_state(struct intel_atomic_state *state,
				struct intel_crtc *crtc)
{
	return to_intel_crtc_state(drm_atomic_get_old_crtc_state(&state->base,
								 &crtc->base));
}

1211 1212 1213 1214 1215 1216 1217 1218
static inline struct intel_crtc_state *
intel_atomic_get_new_crtc_state(struct intel_atomic_state *state,
				struct intel_crtc *crtc)
{
	return to_intel_crtc_state(drm_atomic_get_new_crtc_state(&state->base,
								 &crtc->base));
}

1219
/* intel_fifo_underrun.c */
1220
bool intel_set_cpu_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
1221
					   enum pipe pipe, bool enable);
1222
bool intel_set_pch_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
1223
					   enum pipe pch_transcoder,
1224
					   bool enable);
1225 1226 1227
void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
					 enum pipe pipe);
void intel_pch_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
1228
					 enum pipe pch_transcoder);
1229 1230
void intel_check_cpu_fifo_underruns(struct drm_i915_private *dev_priv);
void intel_check_pch_fifo_underruns(struct drm_i915_private *dev_priv);
1231 1232

/* i915_irq.c */
1233 1234
void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask);
void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask);
1235 1236
void gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
void gen6_unmask_pm_irq(struct drm_i915_private *dev_priv, u32 mask);
1237
void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv);
1238 1239
void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv);
void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv);
1240 1241 1242 1243 1244 1245 1246

static inline u32 gen6_sanitize_rps_pm_mask(const struct drm_i915_private *i915,
					    u32 mask)
{
	return mask & ~i915->rps.pm_intrmsk_mbz;
}

1247 1248
void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv);
void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv);
1249 1250 1251 1252 1253 1254
static inline bool intel_irqs_enabled(struct drm_i915_private *dev_priv)
{
	/*
	 * We only use drm_irq_uninstall() at unload and VT switch, so
	 * this is the only thing we need to check.
	 */
1255
	return dev_priv->pm.irqs_enabled;
1256 1257
}

1258
int intel_get_crtc_scanline(struct intel_crtc *crtc);
1259
void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
1260
				     u8 pipe_mask);
1261
void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
1262
				     u8 pipe_mask);
1263 1264 1265
void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv);
void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv);
void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv);
P
Paulo Zanoni 已提交
1266 1267

/* intel_crt.c */
1268
void intel_crt_init(struct drm_i915_private *dev_priv);
1269
void intel_crt_reset(struct drm_encoder *encoder);
P
Paulo Zanoni 已提交
1270 1271

/* intel_ddi.c */
1272
void intel_ddi_fdi_post_disable(struct intel_encoder *intel_encoder,
1273 1274
				const struct intel_crtc_state *old_crtc_state,
				const struct drm_connector_state *old_conn_state);
1275 1276
void hsw_fdi_link_train(struct intel_crtc *crtc,
			const struct intel_crtc_state *crtc_state);
1277
void intel_ddi_init(struct drm_i915_private *dev_priv, enum port port);
1278 1279
enum port intel_ddi_get_encoder_port(struct intel_encoder *intel_encoder);
bool intel_ddi_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe);
1280
void intel_ddi_enable_transcoder_func(const struct intel_crtc_state *crtc_state);
1281 1282
void intel_ddi_disable_transcoder_func(struct drm_i915_private *dev_priv,
				       enum transcoder cpu_transcoder);
1283 1284
void intel_ddi_enable_pipe_clock(const struct intel_crtc_state *crtc_state);
void intel_ddi_disable_pipe_clock(const  struct intel_crtc_state *crtc_state);
1285 1286
struct intel_encoder *
intel_ddi_get_crtc_new_encoder(struct intel_crtc_state *crtc_state);
1287
void intel_ddi_set_pipe_settings(const struct intel_crtc_state *crtc_state);
1288
void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp);
1289
bool intel_ddi_connector_get_hw_state(struct intel_connector *intel_connector);
1290 1291
bool intel_ddi_is_audio_enabled(struct drm_i915_private *dev_priv,
				 struct intel_crtc *intel_crtc);
1292
void intel_ddi_get_config(struct intel_encoder *encoder,
1293
			  struct intel_crtc_state *pipe_config);
P
Paulo Zanoni 已提交
1294

1295
void intel_ddi_clock_get(struct intel_encoder *encoder,
1296
			 struct intel_crtc_state *pipe_config);
1297 1298
void intel_ddi_set_vc_payload_alloc(const struct intel_crtc_state *crtc_state,
				    bool state);
1299
u32 bxt_signal_levels(struct intel_dp *intel_dp);
1300
uint32_t ddi_signal_levels(struct intel_dp *intel_dp);
1301 1302
u8 intel_ddi_dp_voltage_max(struct intel_encoder *encoder);

1303 1304
unsigned int intel_fb_align_height(const struct drm_framebuffer *fb,
				   int plane, unsigned int height);
1305

1306
/* intel_audio.c */
1307
void intel_init_audio_hooks(struct drm_i915_private *dev_priv);
1308 1309 1310
void intel_audio_codec_enable(struct intel_encoder *encoder,
			      const struct intel_crtc_state *crtc_state,
			      const struct drm_connector_state *conn_state);
1311
void intel_audio_codec_disable(struct intel_encoder *encoder);
I
Imre Deak 已提交
1312 1313
void i915_audio_component_init(struct drm_i915_private *dev_priv);
void i915_audio_component_cleanup(struct drm_i915_private *dev_priv);
1314 1315
void intel_audio_init(struct drm_i915_private *dev_priv);
void intel_audio_deinit(struct drm_i915_private *dev_priv);
1316

1317
/* intel_cdclk.c */
1318
int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state);
1319 1320
void skl_init_cdclk(struct drm_i915_private *dev_priv);
void skl_uninit_cdclk(struct drm_i915_private *dev_priv);
1321 1322
void cnl_init_cdclk(struct drm_i915_private *dev_priv);
void cnl_uninit_cdclk(struct drm_i915_private *dev_priv);
1323 1324
void bxt_init_cdclk(struct drm_i915_private *dev_priv);
void bxt_uninit_cdclk(struct drm_i915_private *dev_priv);
1325 1326 1327 1328
void intel_init_cdclk_hooks(struct drm_i915_private *dev_priv);
void intel_update_max_cdclk(struct drm_i915_private *dev_priv);
void intel_update_cdclk(struct drm_i915_private *dev_priv);
void intel_update_rawclk(struct drm_i915_private *dev_priv);
1329 1330
bool intel_cdclk_state_compare(const struct intel_cdclk_state *a,
			       const struct intel_cdclk_state *b);
1331 1332
void intel_set_cdclk(struct drm_i915_private *dev_priv,
		     const struct intel_cdclk_state *cdclk_state);
1333

1334
/* intel_display.c */
1335 1336
void i830_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
void i830_disable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
1337
enum pipe intel_crtc_pch_transcoder(struct intel_crtc *crtc);
1338
void intel_update_rawclk(struct drm_i915_private *dev_priv);
1339
int vlv_get_hpll_vco(struct drm_i915_private *dev_priv);
1340 1341
int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
		      const char *name, u32 reg, int ref_freq);
1342 1343
int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
			   const char *name, u32 reg);
1344 1345
void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv);
void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
1346
void intel_init_display_hooks(struct drm_i915_private *dev_priv);
1347
unsigned int intel_fb_xy_to_linear(int x, int y,
1348 1349
				   const struct intel_plane_state *state,
				   int plane);
1350
void intel_add_fb_offsets(int *x, int *y,
1351
			  const struct intel_plane_state *state, int plane);
1352
unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info);
1353
bool intel_has_pending_fb_unpin(struct drm_i915_private *dev_priv);
1354 1355
void intel_mark_busy(struct drm_i915_private *dev_priv);
void intel_mark_idle(struct drm_i915_private *dev_priv);
1356
int intel_display_suspend(struct drm_device *dev);
1357
void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv);
1358
void intel_encoder_destroy(struct drm_encoder *encoder);
1359 1360
int intel_connector_init(struct intel_connector *);
struct intel_connector *intel_connector_alloc(void);
1361 1362 1363 1364 1365
bool intel_connector_get_hw_state(struct intel_connector *connector);
void intel_connector_attach_encoder(struct intel_connector *connector,
				    struct intel_encoder *encoder);
struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
					     struct drm_crtc *crtc);
1366
enum pipe intel_get_pipe_from_connector(struct intel_connector *connector);
1367 1368
int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
				struct drm_file *file_priv);
1369 1370
enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
					     enum pipe pipe);
1371 1372 1373 1374 1375 1376
static inline bool
intel_crtc_has_type(const struct intel_crtc_state *crtc_state,
		    enum intel_output_type type)
{
	return crtc_state->output_types & (1 << type);
}
1377 1378 1379 1380
static inline bool
intel_crtc_has_dp_encoder(const struct intel_crtc_state *crtc_state)
{
	return crtc_state->output_types &
1381
		((1 << INTEL_OUTPUT_DP) |
1382 1383 1384
		 (1 << INTEL_OUTPUT_DP_MST) |
		 (1 << INTEL_OUTPUT_EDP));
}
1385
static inline void
1386
intel_wait_for_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
1387
{
1388
	drm_wait_one_vblank(&dev_priv->drm, pipe);
1389
}
1390
static inline void
1391
intel_wait_for_vblank_if_active(struct drm_i915_private *dev_priv, int pipe)
1392
{
1393
	const struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1394 1395

	if (crtc->active)
1396
		intel_wait_for_vblank(dev_priv, pipe);
1397
}
1398 1399 1400

u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc);

1401
int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp);
1402
void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1403 1404
			 struct intel_digital_port *dport,
			 unsigned int expected_mask);
1405 1406 1407 1408
int intel_get_load_detect_pipe(struct drm_connector *connector,
			       struct drm_display_mode *mode,
			       struct intel_load_detect_pipe *old,
			       struct drm_modeset_acquire_ctx *ctx);
1409
void intel_release_load_detect_pipe(struct drm_connector *connector,
1410 1411
				    struct intel_load_detect_pipe *old,
				    struct drm_modeset_acquire_ctx *ctx);
C
Chris Wilson 已提交
1412 1413
struct i915_vma *
intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, unsigned int rotation);
1414
void intel_unpin_fb_vma(struct i915_vma *vma);
1415
struct drm_framebuffer *
1416 1417
intel_framebuffer_create(struct drm_i915_gem_object *obj,
			 struct drm_mode_fb_cmd2 *mode_cmd);
1418
int intel_prepare_plane_fb(struct drm_plane *plane,
1419
			   struct drm_plane_state *new_state);
1420
void intel_cleanup_plane_fb(struct drm_plane *plane,
1421
			    struct drm_plane_state *old_state);
1422 1423 1424 1425 1426 1427 1428 1429
int intel_plane_atomic_get_property(struct drm_plane *plane,
				    const struct drm_plane_state *state,
				    struct drm_property *property,
				    uint64_t *val);
int intel_plane_atomic_set_property(struct drm_plane *plane,
				    struct drm_plane_state *state,
				    struct drm_property *property,
				    uint64_t val);
1430 1431 1432
int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_crtc_state,
				    struct drm_crtc_state *crtc_state,
				    const struct intel_plane_state *old_plane_state,
1433
				    struct drm_plane_state *plane_state);
1434

1435 1436 1437
void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
				    enum pipe pipe);

1438
int vlv_force_pll_on(struct drm_i915_private *dev_priv, enum pipe pipe,
1439
		     const struct dpll *dpll);
1440
void vlv_force_pll_off(struct drm_i915_private *dev_priv, enum pipe pipe);
1441
int lpt_get_iclkip(struct drm_i915_private *dev_priv);
1442

1443
/* modesetting asserts */
1444 1445
void assert_panel_unlocked(struct drm_i915_private *dev_priv,
			   enum pipe pipe);
1446 1447 1448 1449
void assert_pll(struct drm_i915_private *dev_priv,
		enum pipe pipe, bool state);
#define assert_pll_enabled(d, p) assert_pll(d, p, true)
#define assert_pll_disabled(d, p) assert_pll(d, p, false)
1450 1451 1452
void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state);
#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1453 1454 1455 1456
void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
		       enum pipe pipe, bool state);
#define assert_fdi_rx_pll_enabled(d, p) assert_fdi_rx_pll(d, p, true)
#define assert_fdi_rx_pll_disabled(d, p) assert_fdi_rx_pll(d, p, false)
1457
void assert_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, bool state);
1458 1459
#define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
#define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
1460
u32 intel_compute_tile_offset(int *x, int *y,
1461
			      const struct intel_plane_state *state, int plane);
1462 1463
void intel_prepare_reset(struct drm_i915_private *dev_priv);
void intel_finish_reset(struct drm_i915_private *dev_priv);
1464 1465
void hsw_enable_pc8(struct drm_i915_private *dev_priv);
void hsw_disable_pc8(struct drm_i915_private *dev_priv);
1466
void gen9_sanitize_dc_state(struct drm_i915_private *dev_priv);
1467 1468
void bxt_enable_dc9(struct drm_i915_private *dev_priv);
void bxt_disable_dc9(struct drm_i915_private *dev_priv);
1469
void gen9_enable_dc5(struct drm_i915_private *dev_priv);
1470
unsigned int skl_cdclk_get_vco(unsigned int freq);
1471 1472
void skl_enable_dc6(struct drm_i915_private *dev_priv);
void skl_disable_dc6(struct drm_i915_private *dev_priv);
1473
void intel_dp_get_m_n(struct intel_crtc *crtc,
1474
		      struct intel_crtc_state *pipe_config);
1475
void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n);
1476
int intel_dotclock_calculate(int link_freq, const struct intel_link_m_n *m_n);
I
Imre Deak 已提交
1477
bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1478 1479
			struct dpll *best_clock);
int chv_calc_dpll_params(int refclk, struct dpll *pll_clock);
1480

1481
bool intel_crtc_active(struct intel_crtc *crtc);
1482 1483
void hsw_enable_ips(struct intel_crtc *crtc);
void hsw_disable_ips(struct intel_crtc *crtc);
1484
enum intel_display_power_domain intel_port_to_power_domain(enum port port);
1485
void intel_mode_from_pipe_config(struct drm_display_mode *mode,
1486
				 struct intel_crtc_state *pipe_config);
1487

1488
int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state);
1489
int skl_max_scale(struct intel_crtc *crtc, struct intel_crtc_state *crtc_state);
1490

1491 1492 1493 1494
static inline u32 intel_plane_ggtt_offset(const struct intel_plane_state *state)
{
	return i915_ggtt_offset(state->vma);
}
1495

1496 1497
u32 skl_plane_ctl(const struct intel_crtc_state *crtc_state,
		  const struct intel_plane_state *plane_state);
1498 1499
u32 skl_plane_stride(const struct drm_framebuffer *fb, int plane,
		     unsigned int rotation);
1500
int skl_check_plane_surface(struct intel_plane_state *plane_state);
1501
int i9xx_check_plane_surface(struct intel_plane_state *plane_state);
1502

1503
/* intel_csr.c */
1504
void intel_csr_ucode_init(struct drm_i915_private *);
1505
void intel_csr_load_program(struct drm_i915_private *);
1506
void intel_csr_ucode_fini(struct drm_i915_private *);
1507 1508
void intel_csr_ucode_suspend(struct drm_i915_private *);
void intel_csr_ucode_resume(struct drm_i915_private *);
1509

P
Paulo Zanoni 已提交
1510
/* intel_dp.c */
1511 1512
bool intel_dp_init(struct drm_i915_private *dev_priv, i915_reg_t output_reg,
		   enum port port);
1513 1514
bool intel_dp_init_connector(struct intel_digital_port *intel_dig_port,
			     struct intel_connector *intel_connector);
1515
void intel_dp_set_link_params(struct intel_dp *intel_dp,
1516 1517
			      int link_rate, uint8_t lane_count,
			      bool link_mst);
1518 1519
int intel_dp_get_link_train_fallback_values(struct intel_dp *intel_dp,
					    int link_rate, uint8_t lane_count);
1520 1521 1522
void intel_dp_start_link_train(struct intel_dp *intel_dp);
void intel_dp_stop_link_train(struct intel_dp *intel_dp);
void intel_dp_sink_dpms(struct intel_dp *intel_dp, int mode);
1523 1524
void intel_dp_encoder_reset(struct drm_encoder *encoder);
void intel_dp_encoder_suspend(struct intel_encoder *intel_encoder);
1525
void intel_dp_encoder_destroy(struct drm_encoder *encoder);
1526
int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc);
1527
bool intel_dp_compute_config(struct intel_encoder *encoder,
1528 1529
			     struct intel_crtc_state *pipe_config,
			     struct drm_connector_state *conn_state);
1530
bool intel_dp_is_edp(struct intel_dp *intel_dp);
1531
bool intel_dp_is_port_edp(struct drm_i915_private *dev_priv, enum port port);
1532 1533
enum irqreturn intel_dp_hpd_pulse(struct intel_digital_port *intel_dig_port,
				  bool long_hpd);
1534 1535 1536
void intel_edp_backlight_on(const struct intel_crtc_state *crtc_state,
			    const struct drm_connector_state *conn_state);
void intel_edp_backlight_off(const struct drm_connector_state *conn_state);
1537
void intel_edp_panel_vdd_on(struct intel_dp *intel_dp);
1538 1539
void intel_edp_panel_on(struct intel_dp *intel_dp);
void intel_edp_panel_off(struct intel_dp *intel_dp);
1540 1541
void intel_dp_mst_suspend(struct drm_device *dev);
void intel_dp_mst_resume(struct drm_device *dev);
1542
int intel_dp_max_link_rate(struct intel_dp *intel_dp);
1543
int intel_dp_max_lane_count(struct intel_dp *intel_dp);
1544
int intel_dp_rate_select(struct intel_dp *intel_dp, int rate);
1545
void intel_dp_hot_plug(struct intel_encoder *intel_encoder);
1546
void intel_power_sequencer_reset(struct drm_i915_private *dev_priv);
R
Rodrigo Vivi 已提交
1547
uint32_t intel_dp_pack_aux(const uint8_t *src, int src_bytes);
1548
void intel_plane_destroy(struct drm_plane *plane);
1549
void intel_edp_drrs_enable(struct intel_dp *intel_dp,
1550
			   const struct intel_crtc_state *crtc_state);
1551
void intel_edp_drrs_disable(struct intel_dp *intel_dp,
1552
			    const struct intel_crtc_state *crtc_state);
1553 1554 1555 1556
void intel_edp_drrs_invalidate(struct drm_i915_private *dev_priv,
			       unsigned int frontbuffer_bits);
void intel_edp_drrs_flush(struct drm_i915_private *dev_priv,
			  unsigned int frontbuffer_bits);
R
Rodrigo Vivi 已提交
1557

1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569
void
intel_dp_program_link_training_pattern(struct intel_dp *intel_dp,
				       uint8_t dp_train_pat);
void
intel_dp_set_signal_levels(struct intel_dp *intel_dp);
void intel_dp_set_idle_link_train(struct intel_dp *intel_dp);
uint8_t
intel_dp_voltage_max(struct intel_dp *intel_dp);
uint8_t
intel_dp_pre_emphasis_max(struct intel_dp *intel_dp, uint8_t voltage_swing);
void intel_dp_compute_rate(struct intel_dp *intel_dp, int port_clock,
			   uint8_t *link_bw, uint8_t *rate_select);
1570
bool intel_dp_source_supports_hbr2(struct intel_dp *intel_dp);
1571 1572 1573
bool
intel_dp_get_link_status(struct intel_dp *intel_dp, uint8_t link_status[DP_LINK_STATUS_SIZE]);

1574 1575 1576 1577 1578
static inline unsigned int intel_dp_unused_lane_mask(int lane_count)
{
	return ~((1 << lane_count) - 1) & 0xf;
}

1579
bool intel_dp_read_dpcd(struct intel_dp *intel_dp);
1580 1581
int intel_dp_link_required(int pixel_clock, int bpp);
int intel_dp_max_data_rate(int max_link_clock, int max_lanes);
1582 1583
bool intel_digital_port_connected(struct drm_i915_private *dev_priv,
				  struct intel_digital_port *port);
1584

1585 1586 1587
/* intel_dp_aux_backlight.c */
int intel_dp_aux_init_backlight_funcs(struct intel_connector *intel_connector);

1588 1589 1590
/* intel_dp_mst.c */
int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id);
void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port);
P
Paulo Zanoni 已提交
1591
/* intel_dsi.c */
1592
void intel_dsi_init(struct drm_i915_private *dev_priv);
P
Paulo Zanoni 已提交
1593

1594 1595
/* intel_dsi_dcs_backlight.c */
int intel_dsi_dcs_init_backlight_funcs(struct intel_connector *intel_connector);
P
Paulo Zanoni 已提交
1596 1597

/* intel_dvo.c */
1598
void intel_dvo_init(struct drm_i915_private *dev_priv);
1599 1600
/* intel_hotplug.c */
void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
P
Paulo Zanoni 已提交
1601 1602


1603
/* legacy fbdev emulation in intel_fbdev.c */
1604
#ifdef CONFIG_DRM_FBDEV_EMULATION
1605
extern int intel_fbdev_init(struct drm_device *dev);
1606
extern void intel_fbdev_initial_config_async(struct drm_device *dev);
1607 1608
extern void intel_fbdev_unregister(struct drm_i915_private *dev_priv);
extern void intel_fbdev_fini(struct drm_i915_private *dev_priv);
1609
extern void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
1610 1611
extern void intel_fbdev_output_poll_changed(struct drm_device *dev);
extern void intel_fbdev_restore_mode(struct drm_device *dev);
1612 1613 1614 1615 1616
#else
static inline int intel_fbdev_init(struct drm_device *dev)
{
	return 0;
}
P
Paulo Zanoni 已提交
1617

1618
static inline void intel_fbdev_initial_config_async(struct drm_device *dev)
1619 1620 1621
{
}

1622 1623 1624 1625 1626
static inline void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
{
}

static inline void intel_fbdev_fini(struct drm_i915_private *dev_priv)
1627 1628 1629
{
}

1630
static inline void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
1631 1632 1633
{
}

1634 1635 1636 1637
static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
{
}

1638
static inline void intel_fbdev_restore_mode(struct drm_device *dev)
1639 1640 1641
{
}
#endif
P
Paulo Zanoni 已提交
1642

1643
/* intel_fbc.c */
1644 1645
void intel_fbc_choose_crtc(struct drm_i915_private *dev_priv,
			   struct drm_atomic_state *state);
1646
bool intel_fbc_is_active(struct drm_i915_private *dev_priv);
1647 1648 1649
void intel_fbc_pre_update(struct intel_crtc *crtc,
			  struct intel_crtc_state *crtc_state,
			  struct intel_plane_state *plane_state);
1650
void intel_fbc_post_update(struct intel_crtc *crtc);
1651
void intel_fbc_init(struct drm_i915_private *dev_priv);
1652
void intel_fbc_init_pipe_state(struct drm_i915_private *dev_priv);
1653 1654 1655
void intel_fbc_enable(struct intel_crtc *crtc,
		      struct intel_crtc_state *crtc_state,
		      struct intel_plane_state *plane_state);
1656 1657
void intel_fbc_disable(struct intel_crtc *crtc);
void intel_fbc_global_disable(struct drm_i915_private *dev_priv);
1658 1659 1660 1661
void intel_fbc_invalidate(struct drm_i915_private *dev_priv,
			  unsigned int frontbuffer_bits,
			  enum fb_op_origin origin);
void intel_fbc_flush(struct drm_i915_private *dev_priv,
1662
		     unsigned int frontbuffer_bits, enum fb_op_origin origin);
1663
void intel_fbc_cleanup_cfb(struct drm_i915_private *dev_priv);
1664
void intel_fbc_handle_fifo_underrun_irq(struct drm_i915_private *dev_priv);
1665

P
Paulo Zanoni 已提交
1666
/* intel_hdmi.c */
1667 1668
void intel_hdmi_init(struct drm_i915_private *dev_priv, i915_reg_t hdmi_reg,
		     enum port port);
1669 1670 1671 1672
void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
			       struct intel_connector *intel_connector);
struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder);
bool intel_hdmi_compute_config(struct intel_encoder *encoder,
1673 1674
			       struct intel_crtc_state *pipe_config,
			       struct drm_connector_state *conn_state);
S
Shashank Sharma 已提交
1675 1676 1677 1678
void intel_hdmi_handle_sink_scrambling(struct intel_encoder *intel_encoder,
				       struct drm_connector *connector,
				       bool high_tmds_clock_ratio,
				       bool scrambling);
1679
void intel_dp_dual_mode_set_tmds_output(struct intel_hdmi *hdmi, bool enable);
1680
void intel_infoframe_init(struct intel_digital_port *intel_dig_port);
P
Paulo Zanoni 已提交
1681 1682 1683


/* intel_lvds.c */
1684
void intel_lvds_init(struct drm_i915_private *dev_priv);
1685
struct intel_encoder *intel_get_lvds_encoder(struct drm_device *dev);
1686
bool intel_is_dual_link_lvds(struct drm_device *dev);
P
Paulo Zanoni 已提交
1687 1688 1689 1690


/* intel_modes.c */
int intel_connector_update_modes(struct drm_connector *connector,
1691
				 struct edid *edid);
P
Paulo Zanoni 已提交
1692
int intel_ddc_get_modes(struct drm_connector *c, struct i2c_adapter *adapter);
1693 1694
void intel_attach_force_audio_property(struct drm_connector *connector);
void intel_attach_broadcast_rgb_property(struct drm_connector *connector);
1695
void intel_attach_aspect_ratio_property(struct drm_connector *connector);
P
Paulo Zanoni 已提交
1696 1697 1698


/* intel_overlay.c */
1699 1700
void intel_setup_overlay(struct drm_i915_private *dev_priv);
void intel_cleanup_overlay(struct drm_i915_private *dev_priv);
1701
int intel_overlay_switch_off(struct intel_overlay *overlay);
1702 1703 1704 1705
int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
				  struct drm_file *file_priv);
int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
			      struct drm_file *file_priv);
1706
void intel_overlay_reset(struct drm_i915_private *dev_priv);
P
Paulo Zanoni 已提交
1707 1708 1709


/* intel_panel.c */
1710
int intel_panel_init(struct intel_panel *panel,
1711
		     struct drm_display_mode *fixed_mode,
1712
		     struct drm_display_mode *alt_fixed_mode,
1713
		     struct drm_display_mode *downclock_mode);
1714 1715 1716 1717
void intel_panel_fini(struct intel_panel *panel);
void intel_fixed_panel_mode(const struct drm_display_mode *fixed_mode,
			    struct drm_display_mode *adjusted_mode);
void intel_pch_panel_fitting(struct intel_crtc *crtc,
1718
			     struct intel_crtc_state *pipe_config,
1719 1720
			     int fitting_mode);
void intel_gmch_panel_fitting(struct intel_crtc *crtc,
1721
			      struct intel_crtc_state *pipe_config,
1722
			      int fitting_mode);
1723
void intel_panel_set_backlight_acpi(const struct drm_connector_state *conn_state,
1724
				    u32 level, u32 max);
1725 1726
int intel_panel_setup_backlight(struct drm_connector *connector,
				enum pipe pipe);
1727 1728 1729
void intel_panel_enable_backlight(const struct intel_crtc_state *crtc_state,
				  const struct drm_connector_state *conn_state);
void intel_panel_disable_backlight(const struct drm_connector_state *old_conn_state);
1730
void intel_panel_destroy_backlight(struct drm_connector *connector);
1731
enum drm_connector_status intel_panel_detect(struct drm_i915_private *dev_priv);
1732
extern struct drm_display_mode *intel_find_panel_downclock(
1733
				struct drm_i915_private *dev_priv,
1734 1735
				struct drm_display_mode *fixed_mode,
				struct drm_connector *connector);
1736 1737

#if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE)
1738
int intel_backlight_device_register(struct intel_connector *connector);
1739 1740
void intel_backlight_device_unregister(struct intel_connector *connector);
#else /* CONFIG_BACKLIGHT_CLASS_DEVICE */
1741 1742 1743 1744
static int intel_backlight_device_register(struct intel_connector *connector)
{
	return 0;
}
1745 1746 1747 1748
static inline void intel_backlight_device_unregister(struct intel_connector *connector)
{
}
#endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */
1749

P
Paulo Zanoni 已提交
1750

R
Rodrigo Vivi 已提交
1751
/* intel_psr.c */
1752 1753 1754 1755
void intel_psr_enable(struct intel_dp *intel_dp,
		      const struct intel_crtc_state *crtc_state);
void intel_psr_disable(struct intel_dp *intel_dp,
		      const struct intel_crtc_state *old_crtc_state);
1756
void intel_psr_invalidate(struct drm_i915_private *dev_priv,
1757
			  unsigned frontbuffer_bits);
1758
void intel_psr_flush(struct drm_i915_private *dev_priv,
1759 1760
		     unsigned frontbuffer_bits,
		     enum fb_op_origin origin);
1761
void intel_psr_init(struct drm_i915_private *dev_priv);
1762
void intel_psr_single_frame_update(struct drm_i915_private *dev_priv,
1763
				   unsigned frontbuffer_bits);
R
Rodrigo Vivi 已提交
1764

1765 1766
/* intel_runtime_pm.c */
int intel_power_domains_init(struct drm_i915_private *);
1767
void intel_power_domains_fini(struct drm_i915_private *);
1768 1769
void intel_power_domains_init_hw(struct drm_i915_private *dev_priv, bool resume);
void intel_power_domains_suspend(struct drm_i915_private *dev_priv);
1770
void intel_power_domains_verify_state(struct drm_i915_private *dev_priv);
1771 1772
void bxt_display_core_init(struct drm_i915_private *dev_priv, bool resume);
void bxt_display_core_uninit(struct drm_i915_private *dev_priv);
1773
void intel_runtime_pm_enable(struct drm_i915_private *dev_priv);
1774 1775
const char *
intel_display_power_domain_str(enum intel_display_power_domain domain);
1776

1777 1778 1779 1780
bool intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
				    enum intel_display_power_domain domain);
bool __intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
				      enum intel_display_power_domain domain);
1781 1782
void intel_display_power_get(struct drm_i915_private *dev_priv,
			     enum intel_display_power_domain domain);
1783 1784
bool intel_display_power_get_if_enabled(struct drm_i915_private *dev_priv,
					enum intel_display_power_domain domain);
1785 1786
void intel_display_power_put(struct drm_i915_private *dev_priv,
			     enum intel_display_power_domain domain);
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798

static inline void
assert_rpm_device_not_suspended(struct drm_i915_private *dev_priv)
{
	WARN_ONCE(dev_priv->pm.suspended,
		  "Device suspended during HW access\n");
}

static inline void
assert_rpm_wakelock_held(struct drm_i915_private *dev_priv)
{
	assert_rpm_device_not_suspended(dev_priv);
1799 1800
	WARN_ONCE(!atomic_read(&dev_priv->pm.wakeref_count),
		  "RPM wakelock ref not held during HW access");
1801 1802
}

1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
/**
 * disable_rpm_wakeref_asserts - disable the RPM assert checks
 * @dev_priv: i915 device instance
 *
 * This function disable asserts that check if we hold an RPM wakelock
 * reference, while keeping the device-not-suspended checks still enabled.
 * It's meant to be used only in special circumstances where our rule about
 * the wakelock refcount wrt. the device power state doesn't hold. According
 * to this rule at any point where we access the HW or want to keep the HW in
 * an active state we must hold an RPM wakelock reference acquired via one of
 * the intel_runtime_pm_get() helpers. Currently there are a few special spots
 * where this rule doesn't hold: the IRQ and suspend/resume handlers, the
 * forcewake release timer, and the GPU RPS and hangcheck works. All other
 * users should avoid using this function.
 *
 * Any calls to this function must have a symmetric call to
 * enable_rpm_wakeref_asserts().
 */
static inline void
disable_rpm_wakeref_asserts(struct drm_i915_private *dev_priv)
{
	atomic_inc(&dev_priv->pm.wakeref_count);
}

/**
 * enable_rpm_wakeref_asserts - re-enable the RPM assert checks
 * @dev_priv: i915 device instance
 *
 * This function re-enables the RPM assert checks after disabling them with
 * disable_rpm_wakeref_asserts. It's meant to be used only in special
 * circumstances otherwise its use should be avoided.
 *
 * Any calls to this function must have a symmetric call to
 * disable_rpm_wakeref_asserts().
 */
static inline void
enable_rpm_wakeref_asserts(struct drm_i915_private *dev_priv)
{
	atomic_dec(&dev_priv->pm.wakeref_count);
}

1844
void intel_runtime_pm_get(struct drm_i915_private *dev_priv);
1845
bool intel_runtime_pm_get_if_in_use(struct drm_i915_private *dev_priv);
1846 1847 1848
void intel_runtime_pm_get_noresume(struct drm_i915_private *dev_priv);
void intel_runtime_pm_put(struct drm_i915_private *dev_priv);

1849 1850
void intel_display_set_init_power(struct drm_i915_private *dev, bool enable);

1851 1852
void chv_phy_powergate_lanes(struct intel_encoder *encoder,
			     bool override, unsigned int mask);
1853 1854
bool chv_phy_powergate_ch(struct drm_i915_private *dev_priv, enum dpio_phy phy,
			  enum dpio_channel ch, bool override);
1855 1856


P
Paulo Zanoni 已提交
1857
/* intel_pm.c */
1858
void intel_init_clock_gating(struct drm_i915_private *dev_priv);
1859
void intel_suspend_hw(struct drm_i915_private *dev_priv);
1860
int ilk_wm_max_level(const struct drm_i915_private *dev_priv);
1861
void intel_update_watermarks(struct intel_crtc *crtc);
1862
void intel_init_pm(struct drm_i915_private *dev_priv);
1863
void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv);
1864
void intel_pm_setup(struct drm_i915_private *dev_priv);
1865 1866
void intel_gpu_ips_init(struct drm_i915_private *dev_priv);
void intel_gpu_ips_teardown(void);
1867
void intel_init_gt_powersave(struct drm_i915_private *dev_priv);
1868 1869
void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv);
void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv);
1870
void intel_enable_gt_powersave(struct drm_i915_private *dev_priv);
1871
void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv);
1872
void intel_disable_gt_powersave(struct drm_i915_private *dev_priv);
1873
void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv);
1874 1875
void gen6_rps_busy(struct drm_i915_private *dev_priv);
void gen6_rps_reset_ei(struct drm_i915_private *dev_priv);
D
Daniel Vetter 已提交
1876
void gen6_rps_idle(struct drm_i915_private *dev_priv);
1877 1878
void gen6_rps_boost(struct drm_i915_gem_request *rq,
		    struct intel_rps_client *rps);
1879
void g4x_wm_get_hw_state(struct drm_device *dev);
1880
void vlv_wm_get_hw_state(struct drm_device *dev);
1881
void ilk_wm_get_hw_state(struct drm_device *dev);
1882
void skl_wm_get_hw_state(struct drm_device *dev);
1883 1884
void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
			  struct skl_ddb_allocation *ddb /* out */);
1885 1886
void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
			      struct skl_pipe_wm *out);
1887
void g4x_wm_sanitize(struct drm_i915_private *dev_priv);
1888
void vlv_wm_sanitize(struct drm_i915_private *dev_priv);
1889 1890 1891
bool intel_can_enable_sagv(struct drm_atomic_state *state);
int intel_enable_sagv(struct drm_i915_private *dev_priv);
int intel_disable_sagv(struct drm_i915_private *dev_priv);
1892 1893
bool skl_wm_level_equals(const struct skl_wm_level *l1,
			 const struct skl_wm_level *l2);
1894 1895 1896
bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
				 const struct skl_ddb_entry *ddb,
				 int ignore);
1897
bool ilk_disable_lp_wm(struct drm_device *dev);
1898
int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6);
1899 1900
int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
				  struct intel_crtc_state *cstate);
1901 1902 1903 1904
static inline int intel_enable_rc6(void)
{
	return i915.enable_rc6;
}
1905

P
Paulo Zanoni 已提交
1906
/* intel_sdvo.c */
1907
bool intel_sdvo_init(struct drm_i915_private *dev_priv,
1908
		     i915_reg_t reg, enum port port);
1909

R
Rodrigo Vivi 已提交
1910

P
Paulo Zanoni 已提交
1911
/* intel_sprite.c */
1912 1913
int intel_usecs_to_scanlines(const struct drm_display_mode *adjusted_mode,
			     int usecs);
1914
struct intel_plane *intel_sprite_plane_create(struct drm_i915_private *dev_priv,
1915
					      enum pipe pipe, int plane);
1916 1917
int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
			      struct drm_file *file_priv);
1918 1919
void intel_pipe_update_start(const struct intel_crtc_state *new_crtc_state);
void intel_pipe_update_end(struct intel_crtc_state *new_crtc_state);
P
Paulo Zanoni 已提交
1920 1921

/* intel_tv.c */
1922
void intel_tv_init(struct drm_i915_private *dev_priv);
1923

1924
/* intel_atomic.c */
1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937
int intel_digital_connector_atomic_get_property(struct drm_connector *connector,
						const struct drm_connector_state *state,
						struct drm_property *property,
						uint64_t *val);
int intel_digital_connector_atomic_set_property(struct drm_connector *connector,
						struct drm_connector_state *state,
						struct drm_property *property,
						uint64_t val);
int intel_digital_connector_atomic_check(struct drm_connector *conn,
					 struct drm_connector_state *new_state);
struct drm_connector_state *
intel_digital_connector_duplicate_state(struct drm_connector *connector);

1938 1939 1940
struct drm_crtc_state *intel_crtc_duplicate_state(struct drm_crtc *crtc);
void intel_crtc_destroy_state(struct drm_crtc *crtc,
			       struct drm_crtc_state *state);
1941 1942 1943
struct drm_atomic_state *intel_atomic_state_alloc(struct drm_device *dev);
void intel_atomic_state_clear(struct drm_atomic_state *);

1944 1945 1946 1947 1948 1949 1950
static inline struct intel_crtc_state *
intel_atomic_get_crtc_state(struct drm_atomic_state *state,
			    struct intel_crtc *crtc)
{
	struct drm_crtc_state *crtc_state;
	crtc_state = drm_atomic_get_crtc_state(state, &crtc->base);
	if (IS_ERR(crtc_state))
1951
		return ERR_CAST(crtc_state);
1952 1953 1954

	return to_intel_crtc_state(crtc_state);
}
1955

1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
static inline struct intel_crtc_state *
intel_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
				     struct intel_crtc *crtc)
{
	struct drm_crtc_state *crtc_state;

	crtc_state = drm_atomic_get_existing_crtc_state(state, &crtc->base);

	if (crtc_state)
		return to_intel_crtc_state(crtc_state);
	else
		return NULL;
}

1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980
static inline struct intel_plane_state *
intel_atomic_get_existing_plane_state(struct drm_atomic_state *state,
				      struct intel_plane *plane)
{
	struct drm_plane_state *plane_state;

	plane_state = drm_atomic_get_existing_plane_state(state, &plane->base);

	return to_intel_plane_state(plane_state);
}

1981 1982 1983
int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
			       struct intel_crtc *intel_crtc,
			       struct intel_crtc_state *crtc_state);
1984 1985

/* intel_atomic_plane.c */
1986
struct intel_plane_state *intel_create_plane_state(struct drm_plane *plane);
1987 1988 1989 1990
struct drm_plane_state *intel_plane_duplicate_state(struct drm_plane *plane);
void intel_plane_destroy_state(struct drm_plane *plane,
			       struct drm_plane_state *state);
extern const struct drm_plane_helper_funcs intel_plane_helper_funcs;
1991 1992 1993
int intel_plane_atomic_check_with_state(const struct intel_crtc_state *old_crtc_state,
					struct intel_crtc_state *crtc_state,
					const struct intel_plane_state *old_plane_state,
1994
					struct intel_plane_state *intel_state);
1995

1996 1997
/* intel_color.c */
void intel_color_init(struct drm_crtc *crtc);
1998
int intel_color_check(struct drm_crtc *crtc, struct drm_crtc_state *state);
1999 2000
void intel_color_set_csc(struct drm_crtc_state *crtc_state);
void intel_color_load_luts(struct drm_crtc_state *crtc_state);
2001

2002 2003
/* intel_lspcon.c */
bool lspcon_init(struct intel_digital_port *intel_dig_port);
2004
void lspcon_resume(struct intel_lspcon *lspcon);
2005
void lspcon_wait_pcon_mode(struct intel_lspcon *lspcon);
2006 2007 2008

/* intel_pipe_crc.c */
int intel_pipe_crc_create(struct drm_minor *minor);
T
Tomeu Vizoso 已提交
2009 2010 2011 2012 2013 2014
#ifdef CONFIG_DEBUG_FS
int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name,
			      size_t *values_cnt);
#else
#define intel_crtc_set_crc_source NULL
#endif
2015
extern const struct file_operations i915_display_crc_ctl_fops;
J
Jesse Barnes 已提交
2016
#endif /* __INTEL_DRV_H__ */