UAPI: (Scripted) Convert #include "..." to #include <path/...> in drivers/gpu/
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / drm / i915 / intel_drv.h
1 /*
2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright (c) 2007-2008 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23 * IN THE SOFTWARE.
24 */
25 #ifndef __INTEL_DRV_H__
26 #define __INTEL_DRV_H__
27
28 #include <linux/i2c.h>
29 #include <drm/i915_drm.h>
30 #include "i915_drv.h"
31 #include <drm/drm_crtc.h>
32 #include <drm/drm_crtc_helper.h>
33 #include <drm/drm_fb_helper.h>
34
35 #define _wait_for(COND, MS, W) ({ \
36 unsigned long timeout__ = jiffies + msecs_to_jiffies(MS); \
37 int ret__ = 0; \
38 while (!(COND)) { \
39 if (time_after(jiffies, timeout__)) { \
40 ret__ = -ETIMEDOUT; \
41 break; \
42 } \
43 if (W && drm_can_sleep()) msleep(W); \
44 } \
45 ret__; \
46 })
47
48 #define wait_for_atomic_us(COND, US) ({ \
49 unsigned long timeout__ = jiffies + usecs_to_jiffies(US); \
50 int ret__ = 0; \
51 while (!(COND)) { \
52 if (time_after(jiffies, timeout__)) { \
53 ret__ = -ETIMEDOUT; \
54 break; \
55 } \
56 cpu_relax(); \
57 } \
58 ret__; \
59 })
60
61 #define wait_for(COND, MS) _wait_for(COND, MS, 1)
62 #define wait_for_atomic(COND, MS) _wait_for(COND, MS, 0)
63
64 #define KHz(x) (1000*x)
65 #define MHz(x) KHz(1000*x)
66
67 /*
68 * Display related stuff
69 */
70
71 /* store information about an Ixxx DVO */
72 /* The i830->i865 use multiple DVOs with multiple i2cs */
73 /* the i915, i945 have a single sDVO i2c bus - which is different */
74 #define MAX_OUTPUTS 6
75 /* maximum connectors per crtcs in the mode set */
76 #define INTELFB_CONN_LIMIT 4
77
78 #define INTEL_I2C_BUS_DVO 1
79 #define INTEL_I2C_BUS_SDVO 2
80
81 /* these are outputs from the chip - integrated only
82 external chips are via DVO or SDVO output */
83 #define INTEL_OUTPUT_UNUSED 0
84 #define INTEL_OUTPUT_ANALOG 1
85 #define INTEL_OUTPUT_DVO 2
86 #define INTEL_OUTPUT_SDVO 3
87 #define INTEL_OUTPUT_LVDS 4
88 #define INTEL_OUTPUT_TVOUT 5
89 #define INTEL_OUTPUT_HDMI 6
90 #define INTEL_OUTPUT_DISPLAYPORT 7
91 #define INTEL_OUTPUT_EDP 8
92
93 /* Intel Pipe Clone Bit */
94 #define INTEL_HDMIB_CLONE_BIT 1
95 #define INTEL_HDMIC_CLONE_BIT 2
96 #define INTEL_HDMID_CLONE_BIT 3
97 #define INTEL_HDMIE_CLONE_BIT 4
98 #define INTEL_HDMIF_CLONE_BIT 5
99 #define INTEL_SDVO_NON_TV_CLONE_BIT 6
100 #define INTEL_SDVO_TV_CLONE_BIT 7
101 #define INTEL_SDVO_LVDS_CLONE_BIT 8
102 #define INTEL_ANALOG_CLONE_BIT 9
103 #define INTEL_TV_CLONE_BIT 10
104 #define INTEL_DP_B_CLONE_BIT 11
105 #define INTEL_DP_C_CLONE_BIT 12
106 #define INTEL_DP_D_CLONE_BIT 13
107 #define INTEL_LVDS_CLONE_BIT 14
108 #define INTEL_DVO_TMDS_CLONE_BIT 15
109 #define INTEL_DVO_LVDS_CLONE_BIT 16
110 #define INTEL_EDP_CLONE_BIT 17
111
112 #define INTEL_DVO_CHIP_NONE 0
113 #define INTEL_DVO_CHIP_LVDS 1
114 #define INTEL_DVO_CHIP_TMDS 2
115 #define INTEL_DVO_CHIP_TVOUT 4
116
117 /* drm_display_mode->private_flags */
118 #define INTEL_MODE_PIXEL_MULTIPLIER_SHIFT (0x0)
119 #define INTEL_MODE_PIXEL_MULTIPLIER_MASK (0xf << INTEL_MODE_PIXEL_MULTIPLIER_SHIFT)
120 #define INTEL_MODE_DP_FORCE_6BPC (0x10)
121 /* This flag must be set by the encoder's mode_fixup if it changes the crtc
122 * timings in the mode to prevent the crtc fixup from overwriting them.
123 * Currently only lvds needs that. */
124 #define INTEL_MODE_CRTC_TIMINGS_SET (0x20)
125
126 static inline void
127 intel_mode_set_pixel_multiplier(struct drm_display_mode *mode,
128 int multiplier)
129 {
130 mode->clock *= multiplier;
131 mode->private_flags |= multiplier;
132 }
133
134 static inline int
135 intel_mode_get_pixel_multiplier(const struct drm_display_mode *mode)
136 {
137 return (mode->private_flags & INTEL_MODE_PIXEL_MULTIPLIER_MASK) >> INTEL_MODE_PIXEL_MULTIPLIER_SHIFT;
138 }
139
140 struct intel_framebuffer {
141 struct drm_framebuffer base;
142 struct drm_i915_gem_object *obj;
143 };
144
145 struct intel_fbdev {
146 struct drm_fb_helper helper;
147 struct intel_framebuffer ifb;
148 struct list_head fbdev_list;
149 struct drm_display_mode *our_mode;
150 };
151
152 struct intel_encoder {
153 struct drm_encoder base;
154 int type;
155 bool needs_tv_clock;
156 void (*hot_plug)(struct intel_encoder *);
157 int crtc_mask;
158 int clone_mask;
159 };
160
161 struct intel_connector {
162 struct drm_connector base;
163 struct intel_encoder *encoder;
164 };
165
166 struct intel_crtc {
167 struct drm_crtc base;
168 enum pipe pipe;
169 enum plane plane;
170 u8 lut_r[256], lut_g[256], lut_b[256];
171 int dpms_mode;
172 bool active; /* is the crtc on? independent of the dpms mode */
173 bool primary_disabled; /* is the crtc obscured by a plane? */
174 bool busy; /* is scanout buffer being updated frequently? */
175 struct timer_list idle_timer;
176 bool lowfreq_avail;
177 struct intel_overlay *overlay;
178 struct intel_unpin_work *unpin_work;
179 int fdi_lanes;
180
181 /* Display surface base address adjustement for pageflips. Note that on
182 * gen4+ this only adjusts up to a tile, offsets within a tile are
183 * handled in the hw itself (with the TILEOFF register). */
184 unsigned long dspaddr_offset;
185
186 struct drm_i915_gem_object *cursor_bo;
187 uint32_t cursor_addr;
188 int16_t cursor_x, cursor_y;
189 int16_t cursor_width, cursor_height;
190 bool cursor_visible;
191 unsigned int bpp;
192
193 /* We can share PLLs across outputs if the timings match */
194 struct intel_pch_pll *pch_pll;
195 };
196
197 struct intel_plane {
198 struct drm_plane base;
199 enum pipe pipe;
200 struct drm_i915_gem_object *obj;
201 int max_downscale;
202 u32 lut_r[1024], lut_g[1024], lut_b[1024];
203 void (*update_plane)(struct drm_plane *plane,
204 struct drm_framebuffer *fb,
205 struct drm_i915_gem_object *obj,
206 int crtc_x, int crtc_y,
207 unsigned int crtc_w, unsigned int crtc_h,
208 uint32_t x, uint32_t y,
209 uint32_t src_w, uint32_t src_h);
210 void (*disable_plane)(struct drm_plane *plane);
211 int (*update_colorkey)(struct drm_plane *plane,
212 struct drm_intel_sprite_colorkey *key);
213 void (*get_colorkey)(struct drm_plane *plane,
214 struct drm_intel_sprite_colorkey *key);
215 };
216
217 struct intel_watermark_params {
218 unsigned long fifo_size;
219 unsigned long max_wm;
220 unsigned long default_wm;
221 unsigned long guard_size;
222 unsigned long cacheline_size;
223 };
224
225 struct cxsr_latency {
226 int is_desktop;
227 int is_ddr3;
228 unsigned long fsb_freq;
229 unsigned long mem_freq;
230 unsigned long display_sr;
231 unsigned long display_hpll_disable;
232 unsigned long cursor_sr;
233 unsigned long cursor_hpll_disable;
234 };
235
236 #define to_intel_crtc(x) container_of(x, struct intel_crtc, base)
237 #define to_intel_connector(x) container_of(x, struct intel_connector, base)
238 #define to_intel_encoder(x) container_of(x, struct intel_encoder, base)
239 #define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base)
240 #define to_intel_plane(x) container_of(x, struct intel_plane, base)
241
242 #define DIP_HEADER_SIZE 5
243
244 #define DIP_TYPE_AVI 0x82
245 #define DIP_VERSION_AVI 0x2
246 #define DIP_LEN_AVI 13
247 #define DIP_AVI_PR_1 0
248 #define DIP_AVI_PR_2 1
249
250 #define DIP_TYPE_SPD 0x83
251 #define DIP_VERSION_SPD 0x1
252 #define DIP_LEN_SPD 25
253 #define DIP_SPD_UNKNOWN 0
254 #define DIP_SPD_DSTB 0x1
255 #define DIP_SPD_DVDP 0x2
256 #define DIP_SPD_DVHS 0x3
257 #define DIP_SPD_HDDVR 0x4
258 #define DIP_SPD_DVC 0x5
259 #define DIP_SPD_DSC 0x6
260 #define DIP_SPD_VCD 0x7
261 #define DIP_SPD_GAME 0x8
262 #define DIP_SPD_PC 0x9
263 #define DIP_SPD_BD 0xa
264 #define DIP_SPD_SCD 0xb
265
266 struct dip_infoframe {
267 uint8_t type; /* HB0 */
268 uint8_t ver; /* HB1 */
269 uint8_t len; /* HB2 - body len, not including checksum */
270 uint8_t ecc; /* Header ECC */
271 uint8_t checksum; /* PB0 */
272 union {
273 struct {
274 /* PB1 - Y 6:5, A 4:4, B 3:2, S 1:0 */
275 uint8_t Y_A_B_S;
276 /* PB2 - C 7:6, M 5:4, R 3:0 */
277 uint8_t C_M_R;
278 /* PB3 - ITC 7:7, EC 6:4, Q 3:2, SC 1:0 */
279 uint8_t ITC_EC_Q_SC;
280 /* PB4 - VIC 6:0 */
281 uint8_t VIC;
282 /* PB5 - YQ 7:6, CN 5:4, PR 3:0 */
283 uint8_t YQ_CN_PR;
284 /* PB6 to PB13 */
285 uint16_t top_bar_end;
286 uint16_t bottom_bar_start;
287 uint16_t left_bar_end;
288 uint16_t right_bar_start;
289 } __attribute__ ((packed)) avi;
290 struct {
291 uint8_t vn[8];
292 uint8_t pd[16];
293 uint8_t sdi;
294 } __attribute__ ((packed)) spd;
295 uint8_t payload[27];
296 } __attribute__ ((packed)) body;
297 } __attribute__((packed));
298
299 struct intel_hdmi {
300 struct intel_encoder base;
301 u32 sdvox_reg;
302 int ddc_bus;
303 int ddi_port;
304 uint32_t color_range;
305 bool has_hdmi_sink;
306 bool has_audio;
307 enum hdmi_force_audio force_audio;
308 void (*write_infoframe)(struct drm_encoder *encoder,
309 struct dip_infoframe *frame);
310 void (*set_infoframes)(struct drm_encoder *encoder,
311 struct drm_display_mode *adjusted_mode);
312 };
313
314 static inline struct drm_crtc *
315 intel_get_crtc_for_pipe(struct drm_device *dev, int pipe)
316 {
317 struct drm_i915_private *dev_priv = dev->dev_private;
318 return dev_priv->pipe_to_crtc_mapping[pipe];
319 }
320
321 static inline struct drm_crtc *
322 intel_get_crtc_for_plane(struct drm_device *dev, int plane)
323 {
324 struct drm_i915_private *dev_priv = dev->dev_private;
325 return dev_priv->plane_to_crtc_mapping[plane];
326 }
327
328 struct intel_unpin_work {
329 struct work_struct work;
330 struct drm_device *dev;
331 struct drm_i915_gem_object *old_fb_obj;
332 struct drm_i915_gem_object *pending_flip_obj;
333 struct drm_pending_vblank_event *event;
334 int pending;
335 bool enable_stall_check;
336 };
337
338 struct intel_fbc_work {
339 struct delayed_work work;
340 struct drm_crtc *crtc;
341 struct drm_framebuffer *fb;
342 int interval;
343 };
344
345 int intel_connector_update_modes(struct drm_connector *connector,
346 struct edid *edid);
347 int intel_ddc_get_modes(struct drm_connector *c, struct i2c_adapter *adapter);
348
349 extern void intel_attach_force_audio_property(struct drm_connector *connector);
350 extern void intel_attach_broadcast_rgb_property(struct drm_connector *connector);
351
352 extern void intel_crt_init(struct drm_device *dev);
353 extern void intel_hdmi_init(struct drm_device *dev, int sdvox_reg);
354 extern struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder);
355 extern void intel_dip_infoframe_csum(struct dip_infoframe *avi_if);
356 extern bool intel_sdvo_init(struct drm_device *dev, uint32_t sdvo_reg,
357 bool is_sdvob);
358 extern void intel_dvo_init(struct drm_device *dev);
359 extern void intel_tv_init(struct drm_device *dev);
360 extern void intel_mark_busy(struct drm_device *dev,
361 struct drm_i915_gem_object *obj);
362 extern bool intel_lvds_init(struct drm_device *dev);
363 extern void intel_dp_init(struct drm_device *dev, int dp_reg);
364 void
365 intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
366 struct drm_display_mode *adjusted_mode);
367 extern bool intel_dpd_is_edp(struct drm_device *dev);
368 extern void intel_edp_link_config(struct intel_encoder *, int *, int *);
369 extern int intel_edp_target_clock(struct intel_encoder *,
370 struct drm_display_mode *mode);
371 extern bool intel_encoder_is_pch_edp(struct drm_encoder *encoder);
372 extern int intel_plane_init(struct drm_device *dev, enum pipe pipe);
373 extern void intel_flush_display_plane(struct drm_i915_private *dev_priv,
374 enum plane plane);
375
376 void intel_sanitize_pm(struct drm_device *dev);
377
378 /* intel_panel.c */
379 extern void intel_fixed_panel_mode(struct drm_display_mode *fixed_mode,
380 struct drm_display_mode *adjusted_mode);
381 extern void intel_pch_panel_fitting(struct drm_device *dev,
382 int fitting_mode,
383 const struct drm_display_mode *mode,
384 struct drm_display_mode *adjusted_mode);
385 extern u32 intel_panel_get_max_backlight(struct drm_device *dev);
386 extern void intel_panel_set_backlight(struct drm_device *dev, u32 level);
387 extern int intel_panel_setup_backlight(struct drm_device *dev);
388 extern void intel_panel_enable_backlight(struct drm_device *dev,
389 enum pipe pipe);
390 extern void intel_panel_disable_backlight(struct drm_device *dev);
391 extern void intel_panel_destroy_backlight(struct drm_device *dev);
392 extern enum drm_connector_status intel_panel_detect(struct drm_device *dev);
393
394 extern void intel_crtc_load_lut(struct drm_crtc *crtc);
395 extern void intel_encoder_prepare(struct drm_encoder *encoder);
396 extern void intel_encoder_commit(struct drm_encoder *encoder);
397 extern void intel_encoder_destroy(struct drm_encoder *encoder);
398
399 static inline struct intel_encoder *intel_attached_encoder(struct drm_connector *connector)
400 {
401 return to_intel_connector(connector)->encoder;
402 }
403
404 extern void intel_connector_attach_encoder(struct intel_connector *connector,
405 struct intel_encoder *encoder);
406 extern struct drm_encoder *intel_best_encoder(struct drm_connector *connector);
407
408 extern struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
409 struct drm_crtc *crtc);
410 int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
411 struct drm_file *file_priv);
412 extern void intel_wait_for_vblank(struct drm_device *dev, int pipe);
413 extern void intel_wait_for_pipe_off(struct drm_device *dev, int pipe);
414
415 struct intel_load_detect_pipe {
416 struct drm_framebuffer *release_fb;
417 bool load_detect_temp;
418 int dpms_mode;
419 };
420 extern bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
421 struct drm_connector *connector,
422 struct drm_display_mode *mode,
423 struct intel_load_detect_pipe *old);
424 extern void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
425 struct drm_connector *connector,
426 struct intel_load_detect_pipe *old);
427
428 extern void intelfb_restore(void);
429 extern void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
430 u16 blue, int regno);
431 extern void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
432 u16 *blue, int regno);
433 extern void intel_enable_clock_gating(struct drm_device *dev);
434
435 extern int intel_pin_and_fence_fb_obj(struct drm_device *dev,
436 struct drm_i915_gem_object *obj,
437 struct intel_ring_buffer *pipelined);
438 extern void intel_unpin_fb_obj(struct drm_i915_gem_object *obj);
439
440 extern int intel_framebuffer_init(struct drm_device *dev,
441 struct intel_framebuffer *ifb,
442 struct drm_mode_fb_cmd2 *mode_cmd,
443 struct drm_i915_gem_object *obj);
444 extern int intel_fbdev_init(struct drm_device *dev);
445 extern void intel_fbdev_fini(struct drm_device *dev);
446 extern void intel_fbdev_set_suspend(struct drm_device *dev, int state);
447 extern void intel_prepare_page_flip(struct drm_device *dev, int plane);
448 extern void intel_finish_page_flip(struct drm_device *dev, int pipe);
449 extern void intel_finish_page_flip_plane(struct drm_device *dev, int plane);
450
451 extern void intel_setup_overlay(struct drm_device *dev);
452 extern void intel_cleanup_overlay(struct drm_device *dev);
453 extern int intel_overlay_switch_off(struct intel_overlay *overlay);
454 extern int intel_overlay_put_image(struct drm_device *dev, void *data,
455 struct drm_file *file_priv);
456 extern int intel_overlay_attrs(struct drm_device *dev, void *data,
457 struct drm_file *file_priv);
458
459 extern void intel_fb_output_poll_changed(struct drm_device *dev);
460 extern void intel_fb_restore_mode(struct drm_device *dev);
461
462 extern void assert_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
463 bool state);
464 #define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
465 #define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
466
467 extern void intel_init_clock_gating(struct drm_device *dev);
468 extern void intel_write_eld(struct drm_encoder *encoder,
469 struct drm_display_mode *mode);
470 extern void intel_cpt_verify_modeset(struct drm_device *dev, int pipe);
471 extern void intel_prepare_ddi(struct drm_device *dev);
472 extern void hsw_fdi_link_train(struct drm_crtc *crtc);
473 extern void intel_ddi_init(struct drm_device *dev, enum port port);
474
475 /* For use by IVB LP watermark workaround in intel_sprite.c */
476 extern void intel_update_watermarks(struct drm_device *dev);
477 extern void intel_update_sprite_watermarks(struct drm_device *dev, int pipe,
478 uint32_t sprite_width,
479 int pixel_size);
480 extern void intel_update_linetime_watermarks(struct drm_device *dev, int pipe,
481 struct drm_display_mode *mode);
482
483 extern int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
484 struct drm_file *file_priv);
485 extern int intel_sprite_get_colorkey(struct drm_device *dev, void *data,
486 struct drm_file *file_priv);
487
488 extern u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg);
489
490 /* Power-related functions, located in intel_pm.c */
491 extern void intel_init_pm(struct drm_device *dev);
492 /* FBC */
493 extern bool intel_fbc_enabled(struct drm_device *dev);
494 extern void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval);
495 extern void intel_update_fbc(struct drm_device *dev);
496 /* IPS */
497 extern void intel_gpu_ips_init(struct drm_i915_private *dev_priv);
498 extern void intel_gpu_ips_teardown(void);
499
500 extern void intel_init_power_wells(struct drm_device *dev);
501 extern void intel_enable_gt_powersave(struct drm_device *dev);
502 extern void intel_disable_gt_powersave(struct drm_device *dev);
503 extern void gen6_gt_check_fifodbg(struct drm_i915_private *dev_priv);
504 extern void ironlake_teardown_rc6(struct drm_device *dev);
505
506 extern void intel_ddi_dpms(struct drm_encoder *encoder, int mode);
507 extern void intel_ddi_mode_set(struct drm_encoder *encoder,
508 struct drm_display_mode *mode,
509 struct drm_display_mode *adjusted_mode);
510
511 #endif /* __INTEL_DRV_H__ */