]> Git Repo - linux.git/blob - drivers/gpu/drm/i915/intel_drv.h
Merge tag 'drm-intel-next-2019-05-24' of git://anongit.freedesktop.org/drm/drm-intel...
[linux.git] / drivers / gpu / drm / i915 / intel_drv.h
1 /*
2  * Copyright (c) 2006 Dave Airlie <[email protected]>
3  * Copyright (c) 2007-2008 Intel Corporation
4  *   Jesse Barnes <[email protected]>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the next
14  * paragraph) shall be included in all copies or substantial portions of the
15  * Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23  * IN THE SOFTWARE.
24  */
25 #ifndef __INTEL_DRV_H__
26 #define __INTEL_DRV_H__
27
28 #include <linux/async.h>
29 #include <linux/i2c.h>
30 #include <linux/sched/clock.h>
31
32 #include <drm/drm_atomic.h>
33 #include <drm/drm_crtc.h>
34 #include <drm/drm_dp_dual_mode_helper.h>
35 #include <drm/drm_dp_mst_helper.h>
36 #include <drm/drm_encoder.h>
37 #include <drm/drm_fb_helper.h>
38 #include <drm/drm_probe_helper.h>
39 #include <drm/drm_rect.h>
40 #include <drm/drm_vblank.h>
41 #include <drm/i915_drm.h>
42 #include <drm/i915_mei_hdcp_interface.h>
43 #include <media/cec-notifier.h>
44
45 #include "i915_drv.h"
46
47 struct drm_printer;
48
49 /*
50  * Display related stuff
51  */
52
53 /* these are outputs from the chip - integrated only
54    external chips are via DVO or SDVO output */
55 enum intel_output_type {
56         INTEL_OUTPUT_UNUSED = 0,
57         INTEL_OUTPUT_ANALOG = 1,
58         INTEL_OUTPUT_DVO = 2,
59         INTEL_OUTPUT_SDVO = 3,
60         INTEL_OUTPUT_LVDS = 4,
61         INTEL_OUTPUT_TVOUT = 5,
62         INTEL_OUTPUT_HDMI = 6,
63         INTEL_OUTPUT_DP = 7,
64         INTEL_OUTPUT_EDP = 8,
65         INTEL_OUTPUT_DSI = 9,
66         INTEL_OUTPUT_DDI = 10,
67         INTEL_OUTPUT_DP_MST = 11,
68 };
69
70 struct intel_framebuffer {
71         struct drm_framebuffer base;
72         struct intel_rotation_info rot_info;
73
74         /* for each plane in the normal GTT view */
75         struct {
76                 unsigned int x, y;
77         } normal[2];
78         /* for each plane in the rotated GTT view */
79         struct {
80                 unsigned int x, y;
81                 unsigned int pitch; /* pixels */
82         } rotated[2];
83 };
84
85 struct intel_fbdev {
86         struct drm_fb_helper helper;
87         struct intel_framebuffer *fb;
88         struct i915_vma *vma;
89         unsigned long vma_flags;
90         async_cookie_t cookie;
91         int preferred_bpp;
92
93         /* Whether or not fbdev hpd processing is temporarily suspended */
94         bool hpd_suspended : 1;
95         /* Set when a hotplug was received while HPD processing was
96          * suspended
97          */
98         bool hpd_waiting : 1;
99
100         /* Protects hpd_suspended */
101         struct mutex hpd_lock;
102 };
103
104 struct intel_encoder {
105         struct drm_encoder base;
106
107         enum intel_output_type type;
108         enum port port;
109         unsigned int cloneable;
110         bool (*hotplug)(struct intel_encoder *encoder,
111                         struct intel_connector *connector);
112         enum intel_output_type (*compute_output_type)(struct intel_encoder *,
113                                                       struct intel_crtc_state *,
114                                                       struct drm_connector_state *);
115         int (*compute_config)(struct intel_encoder *,
116                               struct intel_crtc_state *,
117                               struct drm_connector_state *);
118         void (*pre_pll_enable)(struct intel_encoder *,
119                                const struct intel_crtc_state *,
120                                const struct drm_connector_state *);
121         void (*pre_enable)(struct intel_encoder *,
122                            const struct intel_crtc_state *,
123                            const struct drm_connector_state *);
124         void (*enable)(struct intel_encoder *,
125                        const struct intel_crtc_state *,
126                        const struct drm_connector_state *);
127         void (*disable)(struct intel_encoder *,
128                         const struct intel_crtc_state *,
129                         const struct drm_connector_state *);
130         void (*post_disable)(struct intel_encoder *,
131                              const struct intel_crtc_state *,
132                              const struct drm_connector_state *);
133         void (*post_pll_disable)(struct intel_encoder *,
134                                  const struct intel_crtc_state *,
135                                  const struct drm_connector_state *);
136         void (*update_pipe)(struct intel_encoder *,
137                             const struct intel_crtc_state *,
138                             const struct drm_connector_state *);
139         /* Read out the current hw state of this connector, returning true if
140          * the encoder is active. If the encoder is enabled it also set the pipe
141          * it is connected to in the pipe parameter. */
142         bool (*get_hw_state)(struct intel_encoder *, enum pipe *pipe);
143         /* Reconstructs the equivalent mode flags for the current hardware
144          * state. This must be called _after_ display->get_pipe_config has
145          * pre-filled the pipe config. Note that intel_encoder->base.crtc must
146          * be set correctly before calling this function. */
147         void (*get_config)(struct intel_encoder *,
148                            struct intel_crtc_state *pipe_config);
149         /*
150          * Acquires the power domains needed for an active encoder during
151          * hardware state readout.
152          */
153         void (*get_power_domains)(struct intel_encoder *encoder,
154                                   struct intel_crtc_state *crtc_state);
155         /*
156          * Called during system suspend after all pending requests for the
157          * encoder are flushed (for example for DP AUX transactions) and
158          * device interrupts are disabled.
159          */
160         void (*suspend)(struct intel_encoder *);
161         int crtc_mask;
162         enum hpd_pin hpd_pin;
163         enum intel_display_power_domain power_domain;
164         /* for communication with audio component; protected by av_mutex */
165         const struct drm_connector *audio_connector;
166 };
167
168 struct intel_panel {
169         struct drm_display_mode *fixed_mode;
170         struct drm_display_mode *downclock_mode;
171
172         /* backlight */
173         struct {
174                 bool present;
175                 u32 level;
176                 u32 min;
177                 u32 max;
178                 bool enabled;
179                 bool combination_mode;  /* gen 2/4 only */
180                 bool active_low_pwm;
181                 bool alternate_pwm_increment;   /* lpt+ */
182
183                 /* PWM chip */
184                 bool util_pin_active_low;       /* bxt+ */
185                 u8 controller;          /* bxt+ only */
186                 struct pwm_device *pwm;
187
188                 struct backlight_device *device;
189
190                 /* Connector and platform specific backlight functions */
191                 int (*setup)(struct intel_connector *connector, enum pipe pipe);
192                 u32 (*get)(struct intel_connector *connector);
193                 void (*set)(const struct drm_connector_state *conn_state, u32 level);
194                 void (*disable)(const struct drm_connector_state *conn_state);
195                 void (*enable)(const struct intel_crtc_state *crtc_state,
196                                const struct drm_connector_state *conn_state);
197                 u32 (*hz_to_pwm)(struct intel_connector *connector, u32 hz);
198                 void (*power)(struct intel_connector *, bool enable);
199         } backlight;
200 };
201
202 struct intel_digital_port;
203
204 enum check_link_response {
205         HDCP_LINK_PROTECTED     = 0,
206         HDCP_TOPOLOGY_CHANGE,
207         HDCP_LINK_INTEGRITY_FAILURE,
208         HDCP_REAUTH_REQUEST
209 };
210
211 /*
212  * This structure serves as a translation layer between the generic HDCP code
213  * and the bus-specific code. What that means is that HDCP over HDMI differs
214  * from HDCP over DP, so to account for these differences, we need to
215  * communicate with the receiver through this shim.
216  *
217  * For completeness, the 2 buses differ in the following ways:
218  *      - DP AUX vs. DDC
219  *              HDCP registers on the receiver are set via DP AUX for DP, and
220  *              they are set via DDC for HDMI.
221  *      - Receiver register offsets
222  *              The offsets of the registers are different for DP vs. HDMI
223  *      - Receiver register masks/offsets
224  *              For instance, the ready bit for the KSV fifo is in a different
225  *              place on DP vs HDMI
226  *      - Receiver register names
227  *              Seriously. In the DP spec, the 16-bit register containing
228  *              downstream information is called BINFO, on HDMI it's called
229  *              BSTATUS. To confuse matters further, DP has a BSTATUS register
230  *              with a completely different definition.
231  *      - KSV FIFO
232  *              On HDMI, the ksv fifo is read all at once, whereas on DP it must
233  *              be read 3 keys at a time
234  *      - Aksv output
235  *              Since Aksv is hidden in hardware, there's different procedures
236  *              to send it over DP AUX vs DDC
237  */
238 struct intel_hdcp_shim {
239         /* Outputs the transmitter's An and Aksv values to the receiver. */
240         int (*write_an_aksv)(struct intel_digital_port *intel_dig_port, u8 *an);
241
242         /* Reads the receiver's key selection vector */
243         int (*read_bksv)(struct intel_digital_port *intel_dig_port, u8 *bksv);
244
245         /*
246          * Reads BINFO from DP receivers and BSTATUS from HDMI receivers. The
247          * definitions are the same in the respective specs, but the names are
248          * different. Call it BSTATUS since that's the name the HDMI spec
249          * uses and it was there first.
250          */
251         int (*read_bstatus)(struct intel_digital_port *intel_dig_port,
252                             u8 *bstatus);
253
254         /* Determines whether a repeater is present downstream */
255         int (*repeater_present)(struct intel_digital_port *intel_dig_port,
256                                 bool *repeater_present);
257
258         /* Reads the receiver's Ri' value */
259         int (*read_ri_prime)(struct intel_digital_port *intel_dig_port, u8 *ri);
260
261         /* Determines if the receiver's KSV FIFO is ready for consumption */
262         int (*read_ksv_ready)(struct intel_digital_port *intel_dig_port,
263                               bool *ksv_ready);
264
265         /* Reads the ksv fifo for num_downstream devices */
266         int (*read_ksv_fifo)(struct intel_digital_port *intel_dig_port,
267                              int num_downstream, u8 *ksv_fifo);
268
269         /* Reads a 32-bit part of V' from the receiver */
270         int (*read_v_prime_part)(struct intel_digital_port *intel_dig_port,
271                                  int i, u32 *part);
272
273         /* Enables HDCP signalling on the port */
274         int (*toggle_signalling)(struct intel_digital_port *intel_dig_port,
275                                  bool enable);
276
277         /* Ensures the link is still protected */
278         bool (*check_link)(struct intel_digital_port *intel_dig_port);
279
280         /* Detects panel's hdcp capability. This is optional for HDMI. */
281         int (*hdcp_capable)(struct intel_digital_port *intel_dig_port,
282                             bool *hdcp_capable);
283
284         /* HDCP adaptation(DP/HDMI) required on the port */
285         enum hdcp_wired_protocol protocol;
286
287         /* Detects whether sink is HDCP2.2 capable */
288         int (*hdcp_2_2_capable)(struct intel_digital_port *intel_dig_port,
289                                 bool *capable);
290
291         /* Write HDCP2.2 messages */
292         int (*write_2_2_msg)(struct intel_digital_port *intel_dig_port,
293                              void *buf, size_t size);
294
295         /* Read HDCP2.2 messages */
296         int (*read_2_2_msg)(struct intel_digital_port *intel_dig_port,
297                             u8 msg_id, void *buf, size_t size);
298
299         /*
300          * Implementation of DP HDCP2.2 Errata for the communication of stream
301          * type to Receivers. In DP HDCP2.2 Stream type is one of the input to
302          * the HDCP2.2 Cipher for En/De-Cryption. Not applicable for HDMI.
303          */
304         int (*config_stream_type)(struct intel_digital_port *intel_dig_port,
305                                   bool is_repeater, u8 type);
306
307         /* HDCP2.2 Link Integrity Check */
308         int (*check_2_2_link)(struct intel_digital_port *intel_dig_port);
309 };
310
311 struct intel_hdcp {
312         const struct intel_hdcp_shim *shim;
313         /* Mutex for hdcp state of the connector */
314         struct mutex mutex;
315         u64 value;
316         struct delayed_work check_work;
317         struct work_struct prop_work;
318
319         /* HDCP1.4 Encryption status */
320         bool hdcp_encrypted;
321
322         /* HDCP2.2 related definitions */
323         /* Flag indicates whether this connector supports HDCP2.2 or not. */
324         bool hdcp2_supported;
325
326         /* HDCP2.2 Encryption status */
327         bool hdcp2_encrypted;
328
329         /*
330          * Content Stream Type defined by content owner. TYPE0(0x0) content can
331          * flow in the link protected by HDCP2.2 or HDCP1.4, where as TYPE1(0x1)
332          * content can flow only through a link protected by HDCP2.2.
333          */
334         u8 content_type;
335         struct hdcp_port_data port_data;
336
337         bool is_paired;
338         bool is_repeater;
339
340         /*
341          * Count of ReceiverID_List received. Initialized to 0 at AKE_INIT.
342          * Incremented after processing the RepeaterAuth_Send_ReceiverID_List.
343          * When it rolls over re-auth has to be triggered.
344          */
345         u32 seq_num_v;
346
347         /*
348          * Count of RepeaterAuth_Stream_Manage msg propagated.
349          * Initialized to 0 on AKE_INIT. Incremented after every successful
350          * transmission of RepeaterAuth_Stream_Manage message. When it rolls
351          * over re-Auth has to be triggered.
352          */
353         u32 seq_num_m;
354
355         /*
356          * Work queue to signal the CP_IRQ. Used for the waiters to read the
357          * available information from HDCP DP sink.
358          */
359         wait_queue_head_t cp_irq_queue;
360         atomic_t cp_irq_count;
361         int cp_irq_count_cached;
362 };
363
364 struct intel_connector {
365         struct drm_connector base;
366         /*
367          * The fixed encoder this connector is connected to.
368          */
369         struct intel_encoder *encoder;
370
371         /* ACPI device id for ACPI and driver cooperation */
372         u32 acpi_device_id;
373
374         /* Reads out the current hw, returning true if the connector is enabled
375          * and active (i.e. dpms ON state). */
376         bool (*get_hw_state)(struct intel_connector *);
377
378         /* Panel info for eDP and LVDS */
379         struct intel_panel panel;
380
381         /* Cached EDID for eDP and LVDS. May hold ERR_PTR for invalid EDID. */
382         struct edid *edid;
383         struct edid *detect_edid;
384
385         /* since POLL and HPD connectors may use the same HPD line keep the native
386            state of connector->polled in case hotplug storm detection changes it */
387         u8 polled;
388
389         void *port; /* store this opaque as its illegal to dereference it */
390
391         struct intel_dp *mst_port;
392
393         /* Work struct to schedule a uevent on link train failure */
394         struct work_struct modeset_retry_work;
395
396         struct intel_hdcp hdcp;
397 };
398
399 struct intel_digital_connector_state {
400         struct drm_connector_state base;
401
402         enum hdmi_force_audio force_audio;
403         int broadcast_rgb;
404 };
405
406 #define to_intel_digital_connector_state(x) container_of(x, struct intel_digital_connector_state, base)
407
408 struct dpll {
409         /* given values */
410         int n;
411         int m1, m2;
412         int p1, p2;
413         /* derived values */
414         int     dot;
415         int     vco;
416         int     m;
417         int     p;
418 };
419
420 struct intel_atomic_state {
421         struct drm_atomic_state base;
422
423         struct {
424                 /*
425                  * Logical state of cdclk (used for all scaling, watermark,
426                  * etc. calculations and checks). This is computed as if all
427                  * enabled crtcs were active.
428                  */
429                 struct intel_cdclk_state logical;
430
431                 /*
432                  * Actual state of cdclk, can be different from the logical
433                  * state only when all crtc's are DPMS off.
434                  */
435                 struct intel_cdclk_state actual;
436
437                 int force_min_cdclk;
438                 bool force_min_cdclk_changed;
439                 /* pipe to which cd2x update is synchronized */
440                 enum pipe pipe;
441         } cdclk;
442
443         bool dpll_set, modeset;
444
445         /*
446          * Does this transaction change the pipes that are active?  This mask
447          * tracks which CRTC's have changed their active state at the end of
448          * the transaction (not counting the temporary disable during modesets).
449          * This mask should only be non-zero when intel_state->modeset is true,
450          * but the converse is not necessarily true; simply changing a mode may
451          * not flip the final active status of any CRTC's
452          */
453         unsigned int active_pipe_changes;
454
455         unsigned int active_crtcs;
456         /* minimum acceptable cdclk for each pipe */
457         int min_cdclk[I915_MAX_PIPES];
458         /* minimum acceptable voltage level for each pipe */
459         u8 min_voltage_level[I915_MAX_PIPES];
460
461         struct intel_shared_dpll_state shared_dpll[I915_NUM_PLLS];
462
463         /*
464          * Current watermarks can't be trusted during hardware readout, so
465          * don't bother calculating intermediate watermarks.
466          */
467         bool skip_intermediate_wm;
468
469         bool rps_interactive;
470
471         /* Gen9+ only */
472         struct skl_ddb_values wm_results;
473
474         struct i915_sw_fence commit_ready;
475
476         struct llist_node freed;
477 };
478
479 struct intel_plane_state {
480         struct drm_plane_state base;
481         struct i915_ggtt_view view;
482         struct i915_vma *vma;
483         unsigned long flags;
484 #define PLANE_HAS_FENCE BIT(0)
485
486         struct {
487                 u32 offset;
488                 /*
489                  * Plane stride in:
490                  * bytes for 0/180 degree rotation
491                  * pixels for 90/270 degree rotation
492                  */
493                 u32 stride;
494                 int x, y;
495         } color_plane[2];
496
497         /* plane control register */
498         u32 ctl;
499
500         /* plane color control register */
501         u32 color_ctl;
502
503         /*
504          * scaler_id
505          *    = -1 : not using a scaler
506          *    >=  0 : using a scalers
507          *
508          * plane requiring a scaler:
509          *   - During check_plane, its bit is set in
510          *     crtc_state->scaler_state.scaler_users by calling helper function
511          *     update_scaler_plane.
512          *   - scaler_id indicates the scaler it got assigned.
513          *
514          * plane doesn't require a scaler:
515          *   - this can happen when scaling is no more required or plane simply
516          *     got disabled.
517          *   - During check_plane, corresponding bit is reset in
518          *     crtc_state->scaler_state.scaler_users by calling helper function
519          *     update_scaler_plane.
520          */
521         int scaler_id;
522
523         /*
524          * linked_plane:
525          *
526          * ICL planar formats require 2 planes that are updated as pairs.
527          * This member is used to make sure the other plane is also updated
528          * when required, and for update_slave() to find the correct
529          * plane_state to pass as argument.
530          */
531         struct intel_plane *linked_plane;
532
533         /*
534          * slave:
535          * If set don't update use the linked plane's state for updating
536          * this plane during atomic commit with the update_slave() callback.
537          *
538          * It's also used by the watermark code to ignore wm calculations on
539          * this plane. They're calculated by the linked plane's wm code.
540          */
541         u32 slave;
542
543         struct drm_intel_sprite_colorkey ckey;
544 };
545
546 struct intel_initial_plane_config {
547         struct intel_framebuffer *fb;
548         unsigned int tiling;
549         int size;
550         u32 base;
551         u8 rotation;
552 };
553
554 struct intel_scaler {
555         int in_use;
556         u32 mode;
557 };
558
559 struct intel_crtc_scaler_state {
560 #define SKL_NUM_SCALERS 2
561         struct intel_scaler scalers[SKL_NUM_SCALERS];
562
563         /*
564          * scaler_users: keeps track of users requesting scalers on this crtc.
565          *
566          *     If a bit is set, a user is using a scaler.
567          *     Here user can be a plane or crtc as defined below:
568          *       bits 0-30 - plane (bit position is index from drm_plane_index)
569          *       bit 31    - crtc
570          *
571          * Instead of creating a new index to cover planes and crtc, using
572          * existing drm_plane_index for planes which is well less than 31
573          * planes and bit 31 for crtc. This should be fine to cover all
574          * our platforms.
575          *
576          * intel_atomic_setup_scalers will setup available scalers to users
577          * requesting scalers. It will gracefully fail if request exceeds
578          * avilability.
579          */
580 #define SKL_CRTC_INDEX 31
581         unsigned scaler_users;
582
583         /* scaler used by crtc for panel fitting purpose */
584         int scaler_id;
585 };
586
587 /* drm_mode->private_flags */
588 #define I915_MODE_FLAG_INHERITED (1<<0)
589 /* Flag to get scanline using frame time stamps */
590 #define I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP (1<<1)
591 /* Flag to use the scanline counter instead of the pixel counter */
592 #define I915_MODE_FLAG_USE_SCANLINE_COUNTER (1<<2)
593
594 struct intel_pipe_wm {
595         struct intel_wm_level wm[5];
596         u32 linetime;
597         bool fbc_wm_enabled;
598         bool pipe_enabled;
599         bool sprites_enabled;
600         bool sprites_scaled;
601 };
602
603 struct skl_plane_wm {
604         struct skl_wm_level wm[8];
605         struct skl_wm_level uv_wm[8];
606         struct skl_wm_level trans_wm;
607         bool is_planar;
608 };
609
610 struct skl_pipe_wm {
611         struct skl_plane_wm planes[I915_MAX_PLANES];
612         u32 linetime;
613 };
614
615 enum vlv_wm_level {
616         VLV_WM_LEVEL_PM2,
617         VLV_WM_LEVEL_PM5,
618         VLV_WM_LEVEL_DDR_DVFS,
619         NUM_VLV_WM_LEVELS,
620 };
621
622 struct vlv_wm_state {
623         struct g4x_pipe_wm wm[NUM_VLV_WM_LEVELS];
624         struct g4x_sr_wm sr[NUM_VLV_WM_LEVELS];
625         u8 num_levels;
626         bool cxsr;
627 };
628
629 struct vlv_fifo_state {
630         u16 plane[I915_MAX_PLANES];
631 };
632
633 enum g4x_wm_level {
634         G4X_WM_LEVEL_NORMAL,
635         G4X_WM_LEVEL_SR,
636         G4X_WM_LEVEL_HPLL,
637         NUM_G4X_WM_LEVELS,
638 };
639
640 struct g4x_wm_state {
641         struct g4x_pipe_wm wm;
642         struct g4x_sr_wm sr;
643         struct g4x_sr_wm hpll;
644         bool cxsr;
645         bool hpll_en;
646         bool fbc_en;
647 };
648
649 struct intel_crtc_wm_state {
650         union {
651                 struct {
652                         /*
653                          * Intermediate watermarks; these can be
654                          * programmed immediately since they satisfy
655                          * both the current configuration we're
656                          * switching away from and the new
657                          * configuration we're switching to.
658                          */
659                         struct intel_pipe_wm intermediate;
660
661                         /*
662                          * Optimal watermarks, programmed post-vblank
663                          * when this state is committed.
664                          */
665                         struct intel_pipe_wm optimal;
666                 } ilk;
667
668                 struct {
669                         /* gen9+ only needs 1-step wm programming */
670                         struct skl_pipe_wm optimal;
671                         struct skl_ddb_entry ddb;
672                         struct skl_ddb_entry plane_ddb_y[I915_MAX_PLANES];
673                         struct skl_ddb_entry plane_ddb_uv[I915_MAX_PLANES];
674                 } skl;
675
676                 struct {
677                         /* "raw" watermarks (not inverted) */
678                         struct g4x_pipe_wm raw[NUM_VLV_WM_LEVELS];
679                         /* intermediate watermarks (inverted) */
680                         struct vlv_wm_state intermediate;
681                         /* optimal watermarks (inverted) */
682                         struct vlv_wm_state optimal;
683                         /* display FIFO split */
684                         struct vlv_fifo_state fifo_state;
685                 } vlv;
686
687                 struct {
688                         /* "raw" watermarks */
689                         struct g4x_pipe_wm raw[NUM_G4X_WM_LEVELS];
690                         /* intermediate watermarks */
691                         struct g4x_wm_state intermediate;
692                         /* optimal watermarks */
693                         struct g4x_wm_state optimal;
694                 } g4x;
695         };
696
697         /*
698          * Platforms with two-step watermark programming will need to
699          * update watermark programming post-vblank to switch from the
700          * safe intermediate watermarks to the optimal final
701          * watermarks.
702          */
703         bool need_postvbl_update;
704 };
705
706 enum intel_output_format {
707         INTEL_OUTPUT_FORMAT_INVALID,
708         INTEL_OUTPUT_FORMAT_RGB,
709         INTEL_OUTPUT_FORMAT_YCBCR420,
710         INTEL_OUTPUT_FORMAT_YCBCR444,
711 };
712
713 struct intel_crtc_state {
714         struct drm_crtc_state base;
715
716         /**
717          * quirks - bitfield with hw state readout quirks
718          *
719          * For various reasons the hw state readout code might not be able to
720          * completely faithfully read out the current state. These cases are
721          * tracked with quirk flags so that fastboot and state checker can act
722          * accordingly.
723          */
724 #define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS       (1<<0) /* unreliable sync mode.flags */
725         unsigned long quirks;
726
727         unsigned fb_bits; /* framebuffers to flip */
728         bool update_pipe; /* can a fast modeset be performed? */
729         bool disable_cxsr;
730         bool update_wm_pre, update_wm_post; /* watermarks are updated */
731         bool fb_changed; /* fb on any of the planes is changed */
732         bool fifo_changed; /* FIFO split is changed */
733
734         /* Pipe source size (ie. panel fitter input size)
735          * All planes will be positioned inside this space,
736          * and get clipped at the edges. */
737         int pipe_src_w, pipe_src_h;
738
739         /*
740          * Pipe pixel rate, adjusted for
741          * panel fitter/pipe scaler downscaling.
742          */
743         unsigned int pixel_rate;
744
745         /* Whether to set up the PCH/FDI. Note that we never allow sharing
746          * between pch encoders and cpu encoders. */
747         bool has_pch_encoder;
748
749         /* Are we sending infoframes on the attached port */
750         bool has_infoframe;
751
752         /* CPU Transcoder for the pipe. Currently this can only differ from the
753          * pipe on Haswell and later (where we have a special eDP transcoder)
754          * and Broxton (where we have special DSI transcoders). */
755         enum transcoder cpu_transcoder;
756
757         /*
758          * Use reduced/limited/broadcast rbg range, compressing from the full
759          * range fed into the crtcs.
760          */
761         bool limited_color_range;
762
763         /* Bitmask of encoder types (enum intel_output_type)
764          * driven by the pipe.
765          */
766         unsigned int output_types;
767
768         /* Whether we should send NULL infoframes. Required for audio. */
769         bool has_hdmi_sink;
770
771         /* Audio enabled on this pipe. Only valid if either has_hdmi_sink or
772          * has_dp_encoder is set. */
773         bool has_audio;
774
775         /*
776          * Enable dithering, used when the selected pipe bpp doesn't match the
777          * plane bpp.
778          */
779         bool dither;
780
781         /*
782          * Dither gets enabled for 18bpp which causes CRC mismatch errors for
783          * compliance video pattern tests.
784          * Disable dither only if it is a compliance test request for
785          * 18bpp.
786          */
787         bool dither_force_disable;
788
789         /* Controls for the clock computation, to override various stages. */
790         bool clock_set;
791
792         /* SDVO TV has a bunch of special case. To make multifunction encoders
793          * work correctly, we need to track this at runtime.*/
794         bool sdvo_tv_clock;
795
796         /*
797          * crtc bandwidth limit, don't increase pipe bpp or clock if not really
798          * required. This is set in the 2nd loop of calling encoder's
799          * ->compute_config if the first pick doesn't work out.
800          */
801         bool bw_constrained;
802
803         /* Settings for the intel dpll used on pretty much everything but
804          * haswell. */
805         struct dpll dpll;
806
807         /* Selected dpll when shared or NULL. */
808         struct intel_shared_dpll *shared_dpll;
809
810         /* Actual register state of the dpll, for shared dpll cross-checking. */
811         struct intel_dpll_hw_state dpll_hw_state;
812
813         /* DSI PLL registers */
814         struct {
815                 u32 ctrl, div;
816         } dsi_pll;
817
818         int pipe_bpp;
819         struct intel_link_m_n dp_m_n;
820
821         /* m2_n2 for eDP downclock */
822         struct intel_link_m_n dp_m2_n2;
823         bool has_drrs;
824
825         bool has_psr;
826         bool has_psr2;
827
828         /*
829          * Frequence the dpll for the port should run at. Differs from the
830          * adjusted dotclock e.g. for DP or 12bpc hdmi mode. This is also
831          * already multiplied by pixel_multiplier.
832          */
833         int port_clock;
834
835         /* Used by SDVO (and if we ever fix it, HDMI). */
836         unsigned pixel_multiplier;
837
838         u8 lane_count;
839
840         /*
841          * Used by platforms having DP/HDMI PHY with programmable lane
842          * latency optimization.
843          */
844         u8 lane_lat_optim_mask;
845
846         /* minimum acceptable voltage level */
847         u8 min_voltage_level;
848
849         /* Panel fitter controls for gen2-gen4 + VLV */
850         struct {
851                 u32 control;
852                 u32 pgm_ratios;
853                 u32 lvds_border_bits;
854         } gmch_pfit;
855
856         /* Panel fitter placement and size for Ironlake+ */
857         struct {
858                 u32 pos;
859                 u32 size;
860                 bool enabled;
861                 bool force_thru;
862         } pch_pfit;
863
864         /* FDI configuration, only valid if has_pch_encoder is set. */
865         int fdi_lanes;
866         struct intel_link_m_n fdi_m_n;
867
868         bool ips_enabled;
869
870         bool crc_enabled;
871
872         bool enable_fbc;
873
874         bool double_wide;
875
876         int pbn;
877
878         struct intel_crtc_scaler_state scaler_state;
879
880         /* w/a for waiting 2 vblanks during crtc enable */
881         enum pipe hsw_workaround_pipe;
882
883         /* IVB sprite scaling w/a (WaCxSRDisabledForSpriteScaling:ivb) */
884         bool disable_lp_wm;
885
886         struct intel_crtc_wm_state wm;
887
888         /* Gamma mode programmed on the pipe */
889         u32 gamma_mode;
890
891         union {
892                 /* CSC mode programmed on the pipe */
893                 u32 csc_mode;
894
895                 /* CHV CGM mode */
896                 u32 cgm_mode;
897         };
898
899         /* bitmask of visible planes (enum plane_id) */
900         u8 active_planes;
901         u8 nv12_planes;
902         u8 c8_planes;
903
904         /* bitmask of planes that will be updated during the commit */
905         u8 update_planes;
906
907         struct {
908                 u32 enable;
909                 u32 gcp;
910                 union hdmi_infoframe avi;
911                 union hdmi_infoframe spd;
912                 union hdmi_infoframe hdmi;
913         } infoframes;
914
915         /* HDMI scrambling status */
916         bool hdmi_scrambling;
917
918         /* HDMI High TMDS char rate ratio */
919         bool hdmi_high_tmds_clock_ratio;
920
921         /* Output format RGB/YCBCR etc */
922         enum intel_output_format output_format;
923
924         /* Output down scaling is done in LSPCON device */
925         bool lspcon_downsampling;
926
927         /* enable pipe gamma? */
928         bool gamma_enable;
929
930         /* enable pipe csc? */
931         bool csc_enable;
932
933         /* Display Stream compression state */
934         struct {
935                 bool compression_enable;
936                 bool dsc_split;
937                 u16 compressed_bpp;
938                 u8 slice_count;
939         } dsc_params;
940         struct drm_dsc_config dp_dsc_cfg;
941
942         /* Forward Error correction State */
943         bool fec_enable;
944 };
945
946 struct intel_crtc {
947         struct drm_crtc base;
948         enum pipe pipe;
949         /*
950          * Whether the crtc and the connected output pipeline is active. Implies
951          * that crtc->enabled is set, i.e. the current mode configuration has
952          * some outputs connected to this crtc.
953          */
954         bool active;
955         u8 plane_ids_mask;
956         unsigned long long enabled_power_domains;
957         struct intel_overlay *overlay;
958
959         struct intel_crtc_state *config;
960
961         /* Access to these should be protected by dev_priv->irq_lock. */
962         bool cpu_fifo_underrun_disabled;
963         bool pch_fifo_underrun_disabled;
964
965         /* per-pipe watermark state */
966         struct {
967                 /* watermarks currently being used  */
968                 union {
969                         struct intel_pipe_wm ilk;
970                         struct vlv_wm_state vlv;
971                         struct g4x_wm_state g4x;
972                 } active;
973         } wm;
974
975         int scanline_offset;
976
977         struct {
978                 unsigned start_vbl_count;
979                 ktime_t start_vbl_time;
980                 int min_vbl, max_vbl;
981                 int scanline_start;
982         } debug;
983
984         /* scalers available on this crtc */
985         int num_scalers;
986 };
987
988 struct intel_plane {
989         struct drm_plane base;
990         enum i9xx_plane_id i9xx_plane;
991         enum plane_id id;
992         enum pipe pipe;
993         bool has_fbc;
994         bool has_ccs;
995         u32 frontbuffer_bit;
996
997         struct {
998                 u32 base, cntl, size;
999         } cursor;
1000
1001         /*
1002          * NOTE: Do not place new plane state fields here (e.g., when adding
1003          * new plane properties).  New runtime state should now be placed in
1004          * the intel_plane_state structure and accessed via plane_state.
1005          */
1006
1007         unsigned int (*max_stride)(struct intel_plane *plane,
1008                                    u32 pixel_format, u64 modifier,
1009                                    unsigned int rotation);
1010         void (*update_plane)(struct intel_plane *plane,
1011                              const struct intel_crtc_state *crtc_state,
1012                              const struct intel_plane_state *plane_state);
1013         void (*update_slave)(struct intel_plane *plane,
1014                              const struct intel_crtc_state *crtc_state,
1015                              const struct intel_plane_state *plane_state);
1016         void (*disable_plane)(struct intel_plane *plane,
1017                               const struct intel_crtc_state *crtc_state);
1018         bool (*get_hw_state)(struct intel_plane *plane, enum pipe *pipe);
1019         int (*check_plane)(struct intel_crtc_state *crtc_state,
1020                            struct intel_plane_state *plane_state);
1021 };
1022
1023 struct intel_watermark_params {
1024         u16 fifo_size;
1025         u16 max_wm;
1026         u8 default_wm;
1027         u8 guard_size;
1028         u8 cacheline_size;
1029 };
1030
1031 struct cxsr_latency {
1032         bool is_desktop : 1;
1033         bool is_ddr3 : 1;
1034         u16 fsb_freq;
1035         u16 mem_freq;
1036         u16 display_sr;
1037         u16 display_hpll_disable;
1038         u16 cursor_sr;
1039         u16 cursor_hpll_disable;
1040 };
1041
1042 #define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base)
1043 #define to_intel_crtc(x) container_of(x, struct intel_crtc, base)
1044 #define to_intel_crtc_state(x) container_of(x, struct intel_crtc_state, base)
1045 #define to_intel_connector(x) container_of(x, struct intel_connector, base)
1046 #define to_intel_encoder(x) container_of(x, struct intel_encoder, base)
1047 #define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base)
1048 #define to_intel_plane(x) container_of(x, struct intel_plane, base)
1049 #define to_intel_plane_state(x) container_of(x, struct intel_plane_state, base)
1050 #define intel_fb_obj(x) ((x) ? to_intel_bo((x)->obj[0]) : NULL)
1051
1052 struct intel_hdmi {
1053         i915_reg_t hdmi_reg;
1054         int ddc_bus;
1055         struct {
1056                 enum drm_dp_dual_mode_type type;
1057                 int max_tmds_clock;
1058         } dp_dual_mode;
1059         bool has_hdmi_sink;
1060         bool has_audio;
1061         struct intel_connector *attached_connector;
1062         struct cec_notifier *cec_notifier;
1063 };
1064
1065 struct intel_dp_mst_encoder;
1066 #define DP_MAX_DOWNSTREAM_PORTS         0x10
1067
1068 /*
1069  * enum link_m_n_set:
1070  *      When platform provides two set of M_N registers for dp, we can
1071  *      program them and switch between them incase of DRRS.
1072  *      But When only one such register is provided, we have to program the
1073  *      required divider value on that registers itself based on the DRRS state.
1074  *
1075  * M1_N1        : Program dp_m_n on M1_N1 registers
1076  *                        dp_m2_n2 on M2_N2 registers (If supported)
1077  *
1078  * M2_N2        : Program dp_m2_n2 on M1_N1 registers
1079  *                        M2_N2 registers are not supported
1080  */
1081
1082 enum link_m_n_set {
1083         /* Sets the m1_n1 and m2_n2 */
1084         M1_N1 = 0,
1085         M2_N2
1086 };
1087
1088 struct intel_dp_compliance_data {
1089         unsigned long edid;
1090         u8 video_pattern;
1091         u16 hdisplay, vdisplay;
1092         u8 bpc;
1093 };
1094
1095 struct intel_dp_compliance {
1096         unsigned long test_type;
1097         struct intel_dp_compliance_data test_data;
1098         bool test_active;
1099         int test_link_rate;
1100         u8 test_lane_count;
1101 };
1102
1103 struct intel_dp {
1104         i915_reg_t output_reg;
1105         u32 DP;
1106         int link_rate;
1107         u8 lane_count;
1108         u8 sink_count;
1109         bool link_mst;
1110         bool link_trained;
1111         bool has_audio;
1112         bool reset_link_params;
1113         u8 dpcd[DP_RECEIVER_CAP_SIZE];
1114         u8 psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE];
1115         u8 downstream_ports[DP_MAX_DOWNSTREAM_PORTS];
1116         u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
1117         u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE];
1118         u8 fec_capable;
1119         /* source rates */
1120         int num_source_rates;
1121         const int *source_rates;
1122         /* sink rates as reported by DP_MAX_LINK_RATE/DP_SUPPORTED_LINK_RATES */
1123         int num_sink_rates;
1124         int sink_rates[DP_MAX_SUPPORTED_RATES];
1125         bool use_rate_select;
1126         /* intersection of source and sink rates */
1127         int num_common_rates;
1128         int common_rates[DP_MAX_SUPPORTED_RATES];
1129         /* Max lane count for the current link */
1130         int max_link_lane_count;
1131         /* Max rate for the current link */
1132         int max_link_rate;
1133         /* sink or branch descriptor */
1134         struct drm_dp_desc desc;
1135         struct drm_dp_aux aux;
1136         u8 train_set[4];
1137         int panel_power_up_delay;
1138         int panel_power_down_delay;
1139         int panel_power_cycle_delay;
1140         int backlight_on_delay;
1141         int backlight_off_delay;
1142         struct delayed_work panel_vdd_work;
1143         bool want_panel_vdd;
1144         unsigned long last_power_on;
1145         unsigned long last_backlight_off;
1146         ktime_t panel_power_off_time;
1147
1148         struct notifier_block edp_notifier;
1149
1150         /*
1151          * Pipe whose power sequencer is currently locked into
1152          * this port. Only relevant on VLV/CHV.
1153          */
1154         enum pipe pps_pipe;
1155         /*
1156          * Pipe currently driving the port. Used for preventing
1157          * the use of the PPS for any pipe currentrly driving
1158          * external DP as that will mess things up on VLV.
1159          */
1160         enum pipe active_pipe;
1161         /*
1162          * Set if the sequencer may be reset due to a power transition,
1163          * requiring a reinitialization. Only relevant on BXT.
1164          */
1165         bool pps_reset;
1166         struct edp_power_seq pps_delays;
1167
1168         bool can_mst; /* this port supports mst */
1169         bool is_mst;
1170         int active_mst_links;
1171         /* connector directly attached - won't be use for modeset in mst world */
1172         struct intel_connector *attached_connector;
1173
1174         /* mst connector list */
1175         struct intel_dp_mst_encoder *mst_encoders[I915_MAX_PIPES];
1176         struct drm_dp_mst_topology_mgr mst_mgr;
1177
1178         u32 (*get_aux_clock_divider)(struct intel_dp *dp, int index);
1179         /*
1180          * This function returns the value we have to program the AUX_CTL
1181          * register with to kick off an AUX transaction.
1182          */
1183         u32 (*get_aux_send_ctl)(struct intel_dp *dp, int send_bytes,
1184                                 u32 aux_clock_divider);
1185
1186         i915_reg_t (*aux_ch_ctl_reg)(struct intel_dp *dp);
1187         i915_reg_t (*aux_ch_data_reg)(struct intel_dp *dp, int index);
1188
1189         /* This is called before a link training is starterd */
1190         void (*prepare_link_retrain)(struct intel_dp *intel_dp);
1191
1192         /* Displayport compliance testing */
1193         struct intel_dp_compliance compliance;
1194
1195         /* Display stream compression testing */
1196         bool force_dsc_en;
1197 };
1198
1199 enum lspcon_vendor {
1200         LSPCON_VENDOR_MCA,
1201         LSPCON_VENDOR_PARADE
1202 };
1203
1204 struct intel_lspcon {
1205         bool active;
1206         enum drm_lspcon_mode mode;
1207         enum lspcon_vendor vendor;
1208 };
1209
1210 struct intel_digital_port {
1211         struct intel_encoder base;
1212         u32 saved_port_bits;
1213         struct intel_dp dp;
1214         struct intel_hdmi hdmi;
1215         struct intel_lspcon lspcon;
1216         enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool);
1217         bool release_cl2_override;
1218         u8 max_lanes;
1219         /* Used for DP and ICL+ TypeC/DP and TypeC/HDMI ports. */
1220         enum aux_ch aux_ch;
1221         enum intel_display_power_domain ddi_io_power_domain;
1222         bool tc_legacy_port:1;
1223         enum tc_port_type tc_type;
1224
1225         void (*write_infoframe)(struct intel_encoder *encoder,
1226                                 const struct intel_crtc_state *crtc_state,
1227                                 unsigned int type,
1228                                 const void *frame, ssize_t len);
1229         void (*read_infoframe)(struct intel_encoder *encoder,
1230                                const struct intel_crtc_state *crtc_state,
1231                                unsigned int type,
1232                                void *frame, ssize_t len);
1233         void (*set_infoframes)(struct intel_encoder *encoder,
1234                                bool enable,
1235                                const struct intel_crtc_state *crtc_state,
1236                                const struct drm_connector_state *conn_state);
1237         u32 (*infoframes_enabled)(struct intel_encoder *encoder,
1238                                   const struct intel_crtc_state *pipe_config);
1239 };
1240
1241 struct intel_dp_mst_encoder {
1242         struct intel_encoder base;
1243         enum pipe pipe;
1244         struct intel_digital_port *primary;
1245         struct intel_connector *connector;
1246 };
1247
1248 static inline enum dpio_channel
1249 vlv_dport_to_channel(struct intel_digital_port *dport)
1250 {
1251         switch (dport->base.port) {
1252         case PORT_B:
1253         case PORT_D:
1254                 return DPIO_CH0;
1255         case PORT_C:
1256                 return DPIO_CH1;
1257         default:
1258                 BUG();
1259         }
1260 }
1261
1262 static inline enum dpio_phy
1263 vlv_dport_to_phy(struct intel_digital_port *dport)
1264 {
1265         switch (dport->base.port) {
1266         case PORT_B:
1267         case PORT_C:
1268                 return DPIO_PHY0;
1269         case PORT_D:
1270                 return DPIO_PHY1;
1271         default:
1272                 BUG();
1273         }
1274 }
1275
1276 static inline enum dpio_channel
1277 vlv_pipe_to_channel(enum pipe pipe)
1278 {
1279         switch (pipe) {
1280         case PIPE_A:
1281         case PIPE_C:
1282                 return DPIO_CH0;
1283         case PIPE_B:
1284                 return DPIO_CH1;
1285         default:
1286                 BUG();
1287         }
1288 }
1289
1290 static inline struct intel_crtc *
1291 intel_get_crtc_for_pipe(struct drm_i915_private *dev_priv, enum pipe pipe)
1292 {
1293         return dev_priv->pipe_to_crtc_mapping[pipe];
1294 }
1295
1296 static inline struct intel_crtc *
1297 intel_get_crtc_for_plane(struct drm_i915_private *dev_priv, enum i9xx_plane_id plane)
1298 {
1299         return dev_priv->plane_to_crtc_mapping[plane];
1300 }
1301
1302 struct intel_load_detect_pipe {
1303         struct drm_atomic_state *restore_state;
1304 };
1305
1306 static inline struct intel_encoder *
1307 intel_attached_encoder(struct drm_connector *connector)
1308 {
1309         return to_intel_connector(connector)->encoder;
1310 }
1311
1312 static inline bool intel_encoder_is_dig_port(struct intel_encoder *encoder)
1313 {
1314         switch (encoder->type) {
1315         case INTEL_OUTPUT_DDI:
1316         case INTEL_OUTPUT_DP:
1317         case INTEL_OUTPUT_EDP:
1318         case INTEL_OUTPUT_HDMI:
1319                 return true;
1320         default:
1321                 return false;
1322         }
1323 }
1324
1325 static inline struct intel_digital_port *
1326 enc_to_dig_port(struct drm_encoder *encoder)
1327 {
1328         struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
1329
1330         if (intel_encoder_is_dig_port(intel_encoder))
1331                 return container_of(encoder, struct intel_digital_port,
1332                                     base.base);
1333         else
1334                 return NULL;
1335 }
1336
1337 static inline struct intel_digital_port *
1338 conn_to_dig_port(struct intel_connector *connector)
1339 {
1340         return enc_to_dig_port(&intel_attached_encoder(&connector->base)->base);
1341 }
1342
1343 static inline struct intel_dp_mst_encoder *
1344 enc_to_mst(struct drm_encoder *encoder)
1345 {
1346         return container_of(encoder, struct intel_dp_mst_encoder, base.base);
1347 }
1348
1349 static inline struct intel_dp *enc_to_intel_dp(struct drm_encoder *encoder)
1350 {
1351         return &enc_to_dig_port(encoder)->dp;
1352 }
1353
1354 static inline bool intel_encoder_is_dp(struct intel_encoder *encoder)
1355 {
1356         switch (encoder->type) {
1357         case INTEL_OUTPUT_DP:
1358         case INTEL_OUTPUT_EDP:
1359                 return true;
1360         case INTEL_OUTPUT_DDI:
1361                 /* Skip pure HDMI/DVI DDI encoders */
1362                 return i915_mmio_reg_valid(enc_to_intel_dp(&encoder->base)->output_reg);
1363         default:
1364                 return false;
1365         }
1366 }
1367
1368 static inline struct intel_lspcon *
1369 enc_to_intel_lspcon(struct drm_encoder *encoder)
1370 {
1371         return &enc_to_dig_port(encoder)->lspcon;
1372 }
1373
1374 static inline struct intel_digital_port *
1375 dp_to_dig_port(struct intel_dp *intel_dp)
1376 {
1377         return container_of(intel_dp, struct intel_digital_port, dp);
1378 }
1379
1380 static inline struct intel_lspcon *
1381 dp_to_lspcon(struct intel_dp *intel_dp)
1382 {
1383         return &dp_to_dig_port(intel_dp)->lspcon;
1384 }
1385
1386 static inline struct drm_i915_private *
1387 dp_to_i915(struct intel_dp *intel_dp)
1388 {
1389         return to_i915(dp_to_dig_port(intel_dp)->base.base.dev);
1390 }
1391
1392 static inline struct intel_digital_port *
1393 hdmi_to_dig_port(struct intel_hdmi *intel_hdmi)
1394 {
1395         return container_of(intel_hdmi, struct intel_digital_port, hdmi);
1396 }
1397
1398 static inline struct intel_plane_state *
1399 intel_atomic_get_plane_state(struct intel_atomic_state *state,
1400                                  struct intel_plane *plane)
1401 {
1402         struct drm_plane_state *ret =
1403                 drm_atomic_get_plane_state(&state->base, &plane->base);
1404
1405         if (IS_ERR(ret))
1406                 return ERR_CAST(ret);
1407
1408         return to_intel_plane_state(ret);
1409 }
1410
1411 static inline struct intel_plane_state *
1412 intel_atomic_get_old_plane_state(struct intel_atomic_state *state,
1413                                  struct intel_plane *plane)
1414 {
1415         return to_intel_plane_state(drm_atomic_get_old_plane_state(&state->base,
1416                                                                    &plane->base));
1417 }
1418
1419 static inline struct intel_plane_state *
1420 intel_atomic_get_new_plane_state(struct intel_atomic_state *state,
1421                                  struct intel_plane *plane)
1422 {
1423         return to_intel_plane_state(drm_atomic_get_new_plane_state(&state->base,
1424                                                                    &plane->base));
1425 }
1426
1427 static inline struct intel_crtc_state *
1428 intel_atomic_get_old_crtc_state(struct intel_atomic_state *state,
1429                                 struct intel_crtc *crtc)
1430 {
1431         return to_intel_crtc_state(drm_atomic_get_old_crtc_state(&state->base,
1432                                                                  &crtc->base));
1433 }
1434
1435 static inline struct intel_crtc_state *
1436 intel_atomic_get_new_crtc_state(struct intel_atomic_state *state,
1437                                 struct intel_crtc *crtc)
1438 {
1439         return to_intel_crtc_state(drm_atomic_get_new_crtc_state(&state->base,
1440                                                                  &crtc->base));
1441 }
1442
1443 /* intel_display.c */
1444 void intel_plane_destroy(struct drm_plane *plane);
1445 void i830_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
1446 void i830_disable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe);
1447 enum pipe intel_crtc_pch_transcoder(struct intel_crtc *crtc);
1448 int vlv_get_hpll_vco(struct drm_i915_private *dev_priv);
1449 int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
1450                       const char *name, u32 reg, int ref_freq);
1451 int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
1452                            const char *name, u32 reg);
1453 void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv);
1454 void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
1455 void intel_init_display_hooks(struct drm_i915_private *dev_priv);
1456 unsigned int intel_fb_xy_to_linear(int x, int y,
1457                                    const struct intel_plane_state *state,
1458                                    int plane);
1459 unsigned int intel_fb_align_height(const struct drm_framebuffer *fb,
1460                                    int color_plane, unsigned int height);
1461 void intel_add_fb_offsets(int *x, int *y,
1462                           const struct intel_plane_state *state, int plane);
1463 unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info);
1464 unsigned int intel_remapped_info_size(const struct intel_remapped_info *rem_info);
1465 bool intel_has_pending_fb_unpin(struct drm_i915_private *dev_priv);
1466 void intel_mark_busy(struct drm_i915_private *dev_priv);
1467 void intel_mark_idle(struct drm_i915_private *dev_priv);
1468 int intel_display_suspend(struct drm_device *dev);
1469 void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv);
1470 void intel_encoder_destroy(struct drm_encoder *encoder);
1471 struct drm_display_mode *
1472 intel_encoder_current_mode(struct intel_encoder *encoder);
1473 bool intel_port_is_combophy(struct drm_i915_private *dev_priv, enum port port);
1474 bool intel_port_is_tc(struct drm_i915_private *dev_priv, enum port port);
1475 enum tc_port intel_port_to_tc(struct drm_i915_private *dev_priv,
1476                               enum port port);
1477 int intel_get_pipe_from_crtc_id_ioctl(struct drm_device *dev, void *data,
1478                                       struct drm_file *file_priv);
1479 enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1480                                              enum pipe pipe);
1481 static inline bool
1482 intel_crtc_has_type(const struct intel_crtc_state *crtc_state,
1483                     enum intel_output_type type)
1484 {
1485         return crtc_state->output_types & (1 << type);
1486 }
1487 static inline bool
1488 intel_crtc_has_dp_encoder(const struct intel_crtc_state *crtc_state)
1489 {
1490         return crtc_state->output_types &
1491                 ((1 << INTEL_OUTPUT_DP) |
1492                  (1 << INTEL_OUTPUT_DP_MST) |
1493                  (1 << INTEL_OUTPUT_EDP));
1494 }
1495 static inline void
1496 intel_wait_for_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
1497 {
1498         drm_wait_one_vblank(&dev_priv->drm, pipe);
1499 }
1500 static inline void
1501 intel_wait_for_vblank_if_active(struct drm_i915_private *dev_priv, int pipe)
1502 {
1503         const struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1504
1505         if (crtc->active)
1506                 intel_wait_for_vblank(dev_priv, pipe);
1507 }
1508
1509 u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc);
1510
1511 int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp);
1512 void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1513                          struct intel_digital_port *dport,
1514                          unsigned int expected_mask);
1515 int intel_get_load_detect_pipe(struct drm_connector *connector,
1516                                const struct drm_display_mode *mode,
1517                                struct intel_load_detect_pipe *old,
1518                                struct drm_modeset_acquire_ctx *ctx);
1519 void intel_release_load_detect_pipe(struct drm_connector *connector,
1520                                     struct intel_load_detect_pipe *old,
1521                                     struct drm_modeset_acquire_ctx *ctx);
1522 struct i915_vma *
1523 intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
1524                            const struct i915_ggtt_view *view,
1525                            bool uses_fence,
1526                            unsigned long *out_flags);
1527 void intel_unpin_fb_vma(struct i915_vma *vma, unsigned long flags);
1528 struct drm_framebuffer *
1529 intel_framebuffer_create(struct drm_i915_gem_object *obj,
1530                          struct drm_mode_fb_cmd2 *mode_cmd);
1531 int intel_prepare_plane_fb(struct drm_plane *plane,
1532                            struct drm_plane_state *new_state);
1533 void intel_cleanup_plane_fb(struct drm_plane *plane,
1534                             struct drm_plane_state *old_state);
1535 int intel_plane_atomic_get_property(struct drm_plane *plane,
1536                                     const struct drm_plane_state *state,
1537                                     struct drm_property *property,
1538                                     u64 *val);
1539 int intel_plane_atomic_set_property(struct drm_plane *plane,
1540                                     struct drm_plane_state *state,
1541                                     struct drm_property *property,
1542                                     u64 val);
1543 int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_crtc_state,
1544                                     struct drm_crtc_state *crtc_state,
1545                                     const struct intel_plane_state *old_plane_state,
1546                                     struct drm_plane_state *plane_state);
1547
1548 void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1549                                     enum pipe pipe);
1550
1551 int vlv_force_pll_on(struct drm_i915_private *dev_priv, enum pipe pipe,
1552                      const struct dpll *dpll);
1553 void vlv_force_pll_off(struct drm_i915_private *dev_priv, enum pipe pipe);
1554 int lpt_get_iclkip(struct drm_i915_private *dev_priv);
1555
1556 /* modesetting asserts */
1557 void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1558                            enum pipe pipe);
1559 void assert_pll(struct drm_i915_private *dev_priv,
1560                 enum pipe pipe, bool state);
1561 #define assert_pll_enabled(d, p) assert_pll(d, p, true)
1562 #define assert_pll_disabled(d, p) assert_pll(d, p, false)
1563 void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state);
1564 #define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1565 #define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1566 void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1567                        enum pipe pipe, bool state);
1568 #define assert_fdi_rx_pll_enabled(d, p) assert_fdi_rx_pll(d, p, true)
1569 #define assert_fdi_rx_pll_disabled(d, p) assert_fdi_rx_pll(d, p, false)
1570 void assert_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, bool state);
1571 #define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
1572 #define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
1573 void intel_prepare_reset(struct drm_i915_private *dev_priv);
1574 void intel_finish_reset(struct drm_i915_private *dev_priv);
1575 unsigned int skl_cdclk_get_vco(unsigned int freq);
1576 void intel_dp_get_m_n(struct intel_crtc *crtc,
1577                       struct intel_crtc_state *pipe_config);
1578 void intel_dp_set_m_n(const struct intel_crtc_state *crtc_state,
1579                       enum link_m_n_set m_n);
1580 void intel_dp_ycbcr_420_enable(struct intel_dp *intel_dp,
1581                                const struct intel_crtc_state *crtc_state);
1582 int intel_dotclock_calculate(int link_freq, const struct intel_link_m_n *m_n);
1583 bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state,
1584                         struct dpll *best_clock);
1585 int chv_calc_dpll_params(int refclk, struct dpll *pll_clock);
1586
1587 bool intel_crtc_active(struct intel_crtc *crtc);
1588 bool hsw_crtc_state_ips_capable(const struct intel_crtc_state *crtc_state);
1589 void hsw_enable_ips(const struct intel_crtc_state *crtc_state);
1590 void hsw_disable_ips(const struct intel_crtc_state *crtc_state);
1591 enum intel_display_power_domain intel_port_to_power_domain(enum port port);
1592 enum intel_display_power_domain
1593 intel_aux_power_domain(struct intel_digital_port *dig_port);
1594 void intel_mode_from_pipe_config(struct drm_display_mode *mode,
1595                                  struct intel_crtc_state *pipe_config);
1596 void intel_crtc_arm_fifo_underrun(struct intel_crtc *crtc,
1597                                   struct intel_crtc_state *crtc_state);
1598
1599 u16 skl_scaler_calc_phase(int sub, int scale, bool chroma_center);
1600 int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state);
1601 int skl_max_scale(const struct intel_crtc_state *crtc_state,
1602                   u32 pixel_format);
1603
1604 static inline u32 intel_plane_ggtt_offset(const struct intel_plane_state *state)
1605 {
1606         return i915_ggtt_offset(state->vma);
1607 }
1608
1609 u32 glk_plane_color_ctl(const struct intel_crtc_state *crtc_state,
1610                         const struct intel_plane_state *plane_state);
1611 u32 glk_plane_color_ctl_crtc(const struct intel_crtc_state *crtc_state);
1612 u32 skl_plane_ctl(const struct intel_crtc_state *crtc_state,
1613                   const struct intel_plane_state *plane_state);
1614 u32 skl_plane_ctl_crtc(const struct intel_crtc_state *crtc_state);
1615 u32 skl_plane_stride(const struct intel_plane_state *plane_state,
1616                      int plane);
1617 int skl_check_plane_surface(struct intel_plane_state *plane_state);
1618 int i9xx_check_plane_surface(struct intel_plane_state *plane_state);
1619 int skl_format_to_fourcc(int format, bool rgb_order, bool alpha);
1620 unsigned int i9xx_plane_max_stride(struct intel_plane *plane,
1621                                    u32 pixel_format, u64 modifier,
1622                                    unsigned int rotation);
1623 int bdw_get_pipemisc_bpp(struct intel_crtc *crtc);
1624
1625 /* intel_runtime_pm.c */
1626 #define BITS_PER_WAKEREF        \
1627         BITS_PER_TYPE(struct_member(struct i915_runtime_pm, wakeref_count))
1628 #define INTEL_RPM_WAKELOCK_SHIFT        (BITS_PER_WAKEREF / 2)
1629 #define INTEL_RPM_WAKELOCK_BIAS         (1 << INTEL_RPM_WAKELOCK_SHIFT)
1630 #define INTEL_RPM_RAW_WAKEREF_MASK      (INTEL_RPM_WAKELOCK_BIAS - 1)
1631
1632 static inline int
1633 intel_rpm_raw_wakeref_count(int wakeref_count)
1634 {
1635         return wakeref_count & INTEL_RPM_RAW_WAKEREF_MASK;
1636 }
1637
1638 static inline int
1639 intel_rpm_wakelock_count(int wakeref_count)
1640 {
1641         return wakeref_count >> INTEL_RPM_WAKELOCK_SHIFT;
1642 }
1643
1644 static inline void
1645 assert_rpm_device_not_suspended(struct i915_runtime_pm *rpm)
1646 {
1647         WARN_ONCE(rpm->suspended,
1648                   "Device suspended during HW access\n");
1649 }
1650
1651 static inline void
1652 ____assert_rpm_raw_wakeref_held(struct i915_runtime_pm *rpm, int wakeref_count)
1653 {
1654         assert_rpm_device_not_suspended(rpm);
1655         WARN_ONCE(!intel_rpm_raw_wakeref_count(wakeref_count),
1656                   "RPM raw-wakeref not held\n");
1657 }
1658
1659 static inline void
1660 ____assert_rpm_wakelock_held(struct i915_runtime_pm *rpm, int wakeref_count)
1661 {
1662         ____assert_rpm_raw_wakeref_held(rpm, wakeref_count);
1663         WARN_ONCE(!intel_rpm_wakelock_count(wakeref_count),
1664                   "RPM wakelock ref not held during HW access\n");
1665 }
1666
1667 static inline void
1668 assert_rpm_raw_wakeref_held(struct drm_i915_private *i915)
1669 {
1670         struct i915_runtime_pm *rpm = &i915->runtime_pm;
1671
1672         ____assert_rpm_raw_wakeref_held(rpm, atomic_read(&rpm->wakeref_count));
1673 }
1674
1675 static inline void
1676 __assert_rpm_wakelock_held(struct i915_runtime_pm *rpm)
1677 {
1678         ____assert_rpm_wakelock_held(rpm, atomic_read(&rpm->wakeref_count));
1679 }
1680
1681 static inline void
1682 assert_rpm_wakelock_held(struct drm_i915_private *i915)
1683 {
1684         __assert_rpm_wakelock_held(&i915->runtime_pm);
1685 }
1686
1687 /**
1688  * disable_rpm_wakeref_asserts - disable the RPM assert checks
1689  * @i915: i915 device instance
1690  *
1691  * This function disable asserts that check if we hold an RPM wakelock
1692  * reference, while keeping the device-not-suspended checks still enabled.
1693  * It's meant to be used only in special circumstances where our rule about
1694  * the wakelock refcount wrt. the device power state doesn't hold. According
1695  * to this rule at any point where we access the HW or want to keep the HW in
1696  * an active state we must hold an RPM wakelock reference acquired via one of
1697  * the intel_runtime_pm_get() helpers. Currently there are a few special spots
1698  * where this rule doesn't hold: the IRQ and suspend/resume handlers, the
1699  * forcewake release timer, and the GPU RPS and hangcheck works. All other
1700  * users should avoid using this function.
1701  *
1702  * Any calls to this function must have a symmetric call to
1703  * enable_rpm_wakeref_asserts().
1704  */
1705 static inline void
1706 disable_rpm_wakeref_asserts(struct drm_i915_private *i915)
1707 {
1708         atomic_add(INTEL_RPM_WAKELOCK_BIAS + 1,
1709                    &i915->runtime_pm.wakeref_count);
1710 }
1711
1712 /**
1713  * enable_rpm_wakeref_asserts - re-enable the RPM assert checks
1714  * @i915: i915 device instance
1715  *
1716  * This function re-enables the RPM assert checks after disabling them with
1717  * disable_rpm_wakeref_asserts. It's meant to be used only in special
1718  * circumstances otherwise its use should be avoided.
1719  *
1720  * Any calls to this function must have a symmetric call to
1721  * disable_rpm_wakeref_asserts().
1722  */
1723 static inline void
1724 enable_rpm_wakeref_asserts(struct drm_i915_private *i915)
1725 {
1726         atomic_sub(INTEL_RPM_WAKELOCK_BIAS + 1,
1727                    &i915->runtime_pm.wakeref_count);
1728 }
1729
1730 #endif /* __INTEL_DRV_H__ */
This page took 0.131562 seconds and 4 git commands to generate.