blob: 5390ce67510c24ce6e3afde43ecdae21b94274c9 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2000 ATI Technologies Inc., Markham, Ontario, and
3 * VA Linux Systems Inc., Fremont, California.
4 * Copyright 2008 Red Hat Inc.
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 shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Original Authors:
25 * Kevin E. Martin, Rickard E. Faith, Alan Hourihane
26 *
27 * Kernel port Author: Dave Airlie
28 */
29
30#ifndef RADEON_MODE_H
31#define RADEON_MODE_H
32
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drm_crtc.h>
34#include <drm/drm_edid.h>
35#include <drm/drm_dp_helper.h>
36#include <drm/drm_fixed.h>
37#include <drm/drm_crtc_helper.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020038#include <linux/i2c.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020039#include <linux/i2c-algo-bit.h>
Jerome Glissec93bb852009-07-13 21:04:08 +020040
Dave Airlie38651672010-03-30 05:34:13 +000041struct radeon_bo;
Jerome Glissec93bb852009-07-13 21:04:08 +020042struct radeon_device;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020043
44#define to_radeon_crtc(x) container_of(x, struct radeon_crtc, base)
45#define to_radeon_connector(x) container_of(x, struct radeon_connector, base)
46#define to_radeon_encoder(x) container_of(x, struct radeon_encoder, base)
47#define to_radeon_framebuffer(x) container_of(x, struct radeon_framebuffer, base)
48
Stefan Brüns88f39062014-06-29 21:02:20 +020049#define RADEON_MAX_HPD_PINS 7
50#define RADEON_MAX_CRTCS 6
51#define RADEON_MAX_AFMT_BLOCKS 7
52
Jerome Glisse771fe6b2009-06-05 14:42:42 +020053enum radeon_rmx_type {
54 RMX_OFF,
55 RMX_FULL,
56 RMX_CENTER,
57 RMX_ASPECT
58};
59
60enum radeon_tv_std {
61 TV_STD_NTSC,
62 TV_STD_PAL,
63 TV_STD_PAL_M,
64 TV_STD_PAL_60,
65 TV_STD_NTSC_J,
66 TV_STD_SCART_PAL,
67 TV_STD_SECAM,
68 TV_STD_PAL_CN,
Alex Deucherd79766f2009-12-17 19:00:29 -050069 TV_STD_PAL_N,
Jerome Glisse771fe6b2009-06-05 14:42:42 +020070};
71
Alex Deucher5b1714d2010-08-03 19:59:20 -040072enum radeon_underscan_type {
73 UNDERSCAN_OFF,
74 UNDERSCAN_ON,
75 UNDERSCAN_AUTO,
76};
77
Alex Deucher8e36ed02010-05-18 19:26:47 -040078enum radeon_hpd_id {
79 RADEON_HPD_1 = 0,
80 RADEON_HPD_2,
81 RADEON_HPD_3,
82 RADEON_HPD_4,
83 RADEON_HPD_5,
84 RADEON_HPD_6,
85 RADEON_HPD_NONE = 0xff,
86};
87
Alex Deucher67ba31d2015-02-23 10:11:49 -050088enum radeon_output_csc {
89 RADEON_OUTPUT_CSC_BYPASS = 0,
90 RADEON_OUTPUT_CSC_TVRGB = 1,
91 RADEON_OUTPUT_CSC_YCBCR601 = 2,
92 RADEON_OUTPUT_CSC_YCBCR709 = 3,
93};
94
Alex Deucherf376b942010-08-05 21:21:16 -040095#define RADEON_MAX_I2C_BUS 16
96
Alex Deucher9b9fe722009-11-10 15:59:44 -050097/* radeon gpio-based i2c
98 * 1. "mask" reg and bits
99 * grabs the gpio pins for software use
100 * 0=not held 1=held
101 * 2. "a" reg and bits
102 * output pin value
103 * 0=low 1=high
104 * 3. "en" reg and bits
105 * sets the pin direction
106 * 0=input 1=output
107 * 4. "y" reg and bits
108 * input pin value
109 * 0=low 1=high
110 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200111struct radeon_i2c_bus_rec {
112 bool valid;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500113 /* id used by atom */
114 uint8_t i2c_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500115 /* id used by atom */
Alex Deucher8e36ed02010-05-18 19:26:47 -0400116 enum radeon_hpd_id hpd;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500117 /* can be used with hw i2c engine */
118 bool hw_capable;
119 /* uses multi-media i2c engine */
120 bool mm_i2c;
121 /* regs and bits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200122 uint32_t mask_clk_reg;
123 uint32_t mask_data_reg;
124 uint32_t a_clk_reg;
125 uint32_t a_data_reg;
Alex Deucher9b9fe722009-11-10 15:59:44 -0500126 uint32_t en_clk_reg;
127 uint32_t en_data_reg;
128 uint32_t y_clk_reg;
129 uint32_t y_data_reg;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200130 uint32_t mask_clk_mask;
131 uint32_t mask_data_mask;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200132 uint32_t a_clk_mask;
133 uint32_t a_data_mask;
Alex Deucher9b9fe722009-11-10 15:59:44 -0500134 uint32_t en_clk_mask;
135 uint32_t en_data_mask;
136 uint32_t y_clk_mask;
137 uint32_t y_data_mask;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200138};
139
140struct radeon_tmds_pll {
141 uint32_t freq;
142 uint32_t value;
143};
144
145#define RADEON_MAX_BIOS_CONNECTOR 16
146
Alex Deucher7c27f872010-02-02 12:05:01 -0500147/* pll flags */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200148#define RADEON_PLL_USE_BIOS_DIVS (1 << 0)
149#define RADEON_PLL_NO_ODD_POST_DIV (1 << 1)
150#define RADEON_PLL_USE_REF_DIV (1 << 2)
151#define RADEON_PLL_LEGACY (1 << 3)
152#define RADEON_PLL_PREFER_LOW_REF_DIV (1 << 4)
153#define RADEON_PLL_PREFER_HIGH_REF_DIV (1 << 5)
154#define RADEON_PLL_PREFER_LOW_FB_DIV (1 << 6)
155#define RADEON_PLL_PREFER_HIGH_FB_DIV (1 << 7)
156#define RADEON_PLL_PREFER_LOW_POST_DIV (1 << 8)
157#define RADEON_PLL_PREFER_HIGH_POST_DIV (1 << 9)
158#define RADEON_PLL_USE_FRAC_FB_DIV (1 << 10)
Alex Deucherd0e275a2009-07-13 11:08:18 -0400159#define RADEON_PLL_PREFER_CLOSEST_LOWER (1 << 11)
Alex Deucherfc103322010-01-19 17:16:10 -0500160#define RADEON_PLL_USE_POST_DIV (1 << 12)
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500161#define RADEON_PLL_IS_LCD (1 << 13)
Alex Deucherf523f742011-01-31 16:48:52 -0500162#define RADEON_PLL_PREFER_MINM_OVER_MAXP (1 << 14)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200163
164struct radeon_pll {
Alex Deucherfc103322010-01-19 17:16:10 -0500165 /* reference frequency */
166 uint32_t reference_freq;
167
168 /* fixed dividers */
169 uint32_t reference_div;
170 uint32_t post_div;
171
172 /* pll in/out limits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200173 uint32_t pll_in_min;
174 uint32_t pll_in_max;
175 uint32_t pll_out_min;
176 uint32_t pll_out_max;
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500177 uint32_t lcd_pll_out_min;
178 uint32_t lcd_pll_out_max;
Alex Deucherfc103322010-01-19 17:16:10 -0500179 uint32_t best_vco;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200180
Alex Deucherfc103322010-01-19 17:16:10 -0500181 /* divider limits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200182 uint32_t min_ref_div;
183 uint32_t max_ref_div;
184 uint32_t min_post_div;
185 uint32_t max_post_div;
186 uint32_t min_feedback_div;
187 uint32_t max_feedback_div;
188 uint32_t min_frac_feedback_div;
189 uint32_t max_frac_feedback_div;
Alex Deucherfc103322010-01-19 17:16:10 -0500190
191 /* flags for the current clock */
192 uint32_t flags;
193
194 /* pll id */
195 uint32_t id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200196};
197
198struct radeon_i2c_chan {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200199 struct i2c_adapter adapter;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000200 struct drm_device *dev;
Alex Deucher379dfc22014-04-07 10:33:46 -0400201 struct i2c_algo_bit_data bit;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200202 struct radeon_i2c_bus_rec rec;
Alex Deucher496263b2014-03-21 10:34:07 -0400203 struct drm_dp_aux aux;
Alex Deucher379dfc22014-04-07 10:33:46 -0400204 bool has_aux;
Alex Deucher831719d62014-05-08 10:58:04 -0400205 struct mutex mutex;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200206};
207
208/* mostly for macs, but really any system without connector tables */
209enum radeon_connector_table {
Alex Deucheraa74fbb2010-09-07 14:41:30 -0400210 CT_NONE = 0,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200211 CT_GENERIC,
212 CT_IBOOK,
213 CT_POWERBOOK_EXTERNAL,
214 CT_POWERBOOK_INTERNAL,
215 CT_POWERBOOK_VGA,
216 CT_MINI_EXTERNAL,
217 CT_MINI_INTERNAL,
218 CT_IMAC_G5_ISIGHT,
219 CT_EMAC,
Dave Airlie76a71422010-06-11 01:09:05 -0400220 CT_RN50_POWER,
Alex Deucheraa74fbb2010-09-07 14:41:30 -0400221 CT_MAC_X800,
Alex Deucher9fad3212011-02-07 13:15:28 -0500222 CT_MAC_G5_9600,
Alex Deuchercafa59b2012-12-20 16:35:47 -0500223 CT_SAM440EP,
224 CT_MAC_G4_SILVER
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200225};
226
Alex Deucherfcec5702009-11-10 21:25:07 -0500227enum radeon_dvo_chip {
228 DVO_SIL164,
229 DVO_SIL1178,
230};
231
Dave Airlie8be48d92010-03-30 05:34:14 +0000232struct radeon_fbdev;
Dave Airlie38651672010-03-30 05:34:13 +0000233
Alex Deucher07839862012-05-14 16:52:29 +0200234struct radeon_afmt {
235 bool enabled;
236 int offset;
237 bool last_buffer_filled_status;
238 int id;
Alex Deucherb5306022013-07-31 16:51:33 -0400239 struct r600_audio_pin *pin;
Alex Deucher07839862012-05-14 16:52:29 +0200240};
241
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200242struct radeon_mode_info {
243 struct atom_context *atom_context;
Mathias Fröhlich61c4b242009-10-27 15:08:01 -0400244 struct card_info *atom_card_info;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200245 enum radeon_connector_table connector_table;
246 bool mode_config_initialized;
Stefan Brüns88f39062014-06-29 21:02:20 +0200247 struct radeon_crtc *crtcs[RADEON_MAX_CRTCS];
248 struct radeon_afmt *afmt[RADEON_MAX_AFMT_BLOCKS];
Dave Airlie445282d2009-09-09 17:40:54 +1000249 /* DVI-I properties */
250 struct drm_property *coherent_mode_property;
251 /* DAC enable load detect */
252 struct drm_property *load_detect_property;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400253 /* TV standard */
Dave Airlie445282d2009-09-09 17:40:54 +1000254 struct drm_property *tv_std_property;
255 /* legacy TMDS PLL detect */
256 struct drm_property *tmds_pll_property;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400257 /* underscan */
258 struct drm_property *underscan_property;
Marius Gröger5bccf5e2010-09-21 21:30:59 +0200259 struct drm_property *underscan_hborder_property;
260 struct drm_property *underscan_vborder_property;
Alex Deucher8666c072013-09-03 14:58:44 -0400261 /* audio */
262 struct drm_property *audio_property;
Alex Deucher6214bb72013-09-24 17:26:26 -0400263 /* FMT dithering */
264 struct drm_property *dither_property;
Alex Deucher67ba31d2015-02-23 10:11:49 -0500265 /* Output CSC */
266 struct drm_property *output_csc_property;
Alex Deucher3c537882010-02-05 04:21:19 -0500267 /* hardcoded DFP edid from BIOS */
268 struct edid *bios_hardcoded_edid;
Alex Deucherfafcf942011-03-23 08:10:10 +0000269 int bios_hardcoded_edid_size;
Dave Airlie38651672010-03-30 05:34:13 +0000270
271 /* pointer to fbdev info structure */
Dave Airlie8be48d92010-03-30 05:34:14 +0000272 struct radeon_fbdev *rfbdev;
Alex Deucheraf7912e2012-07-26 09:50:57 -0400273 /* firmware flags */
274 u16 firmware_flags;
Alex Deucherbced76f2012-09-14 09:45:50 -0400275 /* pointer to backlight encoder */
276 struct radeon_encoder *bl_encoder;
Jerome Glissec93bb852009-07-13 21:04:08 +0200277};
278
Alex Deucher91030882012-07-26 11:05:22 -0400279#define RADEON_MAX_BL_LEVEL 0xFF
280
Alex Deucherbced76f2012-09-14 09:45:50 -0400281#if defined(CONFIG_BACKLIGHT_CLASS_DEVICE) || defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE)
282
Alex Deucher91030882012-07-26 11:05:22 -0400283struct radeon_backlight_privdata {
284 struct radeon_encoder *encoder;
285 uint8_t negative;
286};
287
288#endif
289
Dave Airlie4ce001a2009-08-13 16:32:14 +1000290#define MAX_H_CODE_TIMING_LEN 32
291#define MAX_V_CODE_TIMING_LEN 32
292
293/* need to store these as reading
294 back code tables is excessive */
295struct radeon_tv_regs {
296 uint32_t tv_uv_adr;
297 uint32_t timing_cntl;
298 uint32_t hrestart;
299 uint32_t vrestart;
300 uint32_t frestart;
301 uint16_t h_code_timing[MAX_H_CODE_TIMING_LEN];
302 uint16_t v_code_timing[MAX_V_CODE_TIMING_LEN];
303};
304
Alex Deucher19eca432012-09-13 10:56:16 -0400305struct radeon_atom_ss {
306 uint16_t percentage;
Alex Deucher18f8f522014-01-15 13:41:31 -0500307 uint16_t percentage_divider;
Alex Deucher19eca432012-09-13 10:56:16 -0400308 uint8_t type;
309 uint16_t step;
310 uint8_t delay;
311 uint8_t range;
312 uint8_t refdiv;
313 /* asic_ss */
314 uint16_t rate;
315 uint16_t amount;
316};
317
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900318enum radeon_flip_status {
319 RADEON_FLIP_NONE,
320 RADEON_FLIP_PENDING,
321 RADEON_FLIP_SUBMITTED
322};
323
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200324struct radeon_crtc {
325 struct drm_crtc base;
326 int crtc_id;
327 u16 lut_r[256], lut_g[256], lut_b[256];
328 bool enabled;
329 bool can_tile;
330 uint32_t crtc_offset;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200331 struct drm_gem_object *cursor_bo;
332 uint64_t cursor_addr;
Michel Dänzer78b1a602014-11-18 18:00:08 +0900333 int cursor_x;
334 int cursor_y;
335 int cursor_hot_x;
336 int cursor_hot_y;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200337 int cursor_width;
338 int cursor_height;
Alex Deucher9e05fa12013-01-24 10:06:33 -0500339 int max_cursor_width;
340 int max_cursor_height;
Dave Airlie41623382009-07-09 15:04:19 +1000341 uint32_t legacy_display_base_addr;
Alex Deucherc836e862009-07-13 13:51:03 -0400342 uint32_t legacy_cursor_offset;
Jerome Glissec93bb852009-07-13 21:04:08 +0200343 enum radeon_rmx_type rmx_type;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400344 u8 h_border;
345 u8 v_border;
Jerome Glissec93bb852009-07-13 21:04:08 +0200346 fixed20_12 vsc;
347 fixed20_12 hsc;
Alex Deucherde2103e2009-10-09 15:14:30 -0400348 struct drm_display_mode native_mode;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500349 int pll_id;
Alex Deucher6f34be52010-11-21 10:59:01 -0500350 /* page flipping */
Christian Königfa7f5172014-06-03 18:13:21 -0400351 struct workqueue_struct *flip_queue;
352 struct radeon_flip_work *flip_work;
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900353 enum radeon_flip_status flip_status;
Alex Deucher19eca432012-09-13 10:56:16 -0400354 /* pll sharing */
355 struct radeon_atom_ss ss;
356 bool ss_enabled;
357 u32 adjusted_clock;
358 int bpc;
359 u32 pll_reference_div;
360 u32 pll_post_div;
361 u32 pll_flags;
Alex Deucher5df31962012-09-13 11:52:08 -0400362 struct drm_encoder *encoder;
Alex Deucher57b35e22012-09-17 17:34:45 -0400363 struct drm_connector *connector;
Alex Deucher7178d2a2013-03-21 10:38:49 -0400364 /* for dpm */
365 u32 line_time;
366 u32 wm_low;
367 u32 wm_high;
Alex Deucher66edc1c2013-07-08 11:26:42 -0400368 struct drm_display_mode hw_mode;
Alex Deucher643b1f52015-02-23 10:59:36 -0500369 enum radeon_output_csc output_csc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370};
371
372struct radeon_encoder_primary_dac {
373 /* legacy primary dac */
374 uint32_t ps2_pdac_adj;
375};
376
377struct radeon_encoder_lvds {
378 /* legacy lvds */
379 uint16_t panel_vcc_delay;
380 uint8_t panel_pwr_delay;
381 uint8_t panel_digon_delay;
382 uint8_t panel_blon_delay;
383 uint16_t panel_ref_divider;
384 uint8_t panel_post_divider;
385 uint16_t panel_fb_divider;
386 bool use_bios_dividers;
387 uint32_t lvds_gen_cntl;
388 /* panel mode */
Alex Deucherde2103e2009-10-09 15:14:30 -0400389 struct drm_display_mode native_mode;
Michel Dänzer63ec0112011-03-22 16:30:23 -0700390 struct backlight_device *bl_dev;
391 int dpms_mode;
392 uint8_t backlight_level;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200393};
394
395struct radeon_encoder_tv_dac {
396 /* legacy tv dac */
397 uint32_t ps2_tvdac_adj;
398 uint32_t ntsc_tvdac_adj;
399 uint32_t pal_tvdac_adj;
400
Dave Airlie4ce001a2009-08-13 16:32:14 +1000401 int h_pos;
402 int v_pos;
403 int h_size;
404 int supported_tv_stds;
405 bool tv_on;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200406 enum radeon_tv_std tv_std;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000407 struct radeon_tv_regs tv;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200408};
409
410struct radeon_encoder_int_tmds {
411 /* legacy int tmds */
412 struct radeon_tmds_pll tmds_pll[4];
413};
414
Alex Deucherfcec5702009-11-10 21:25:07 -0500415struct radeon_encoder_ext_tmds {
416 /* tmds over dvo */
417 struct radeon_i2c_chan *i2c_bus;
418 uint8_t slave_addr;
419 enum radeon_dvo_chip dvo_chip;
420};
421
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400422/* spread spectrum */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200423struct radeon_encoder_atom_dig {
Alex Deucher5137ee92010-08-12 18:58:47 -0400424 bool linkb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200425 /* atom dig */
426 bool coherent_mode;
Alex Deucherba032a52010-10-04 17:13:01 -0400427 int dig_encoder; /* -1 disabled, 0 DIGA, 1 DIGB, etc. */
428 /* atom lvds/edp */
429 uint32_t lcd_misc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200430 uint16_t panel_pwr_delay;
Alex Deucherba032a52010-10-04 17:13:01 -0400431 uint32_t lcd_ss_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200432 /* panel mode */
Alex Deucherde2103e2009-10-09 15:14:30 -0400433 struct drm_display_mode native_mode;
Michel Dänzer63ec0112011-03-22 16:30:23 -0700434 struct backlight_device *bl_dev;
435 int dpms_mode;
436 uint8_t backlight_level;
Alex Deucher386d4d72012-01-20 15:01:29 -0500437 int panel_mode;
Alex Deucher07839862012-05-14 16:52:29 +0200438 struct radeon_afmt *afmt;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200439};
440
Dave Airlie4ce001a2009-08-13 16:32:14 +1000441struct radeon_encoder_atom_dac {
442 enum radeon_tv_std tv_std;
443};
444
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200445struct radeon_encoder {
446 struct drm_encoder base;
Alex Deucher5137ee92010-08-12 18:58:47 -0400447 uint32_t encoder_enum;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200448 uint32_t encoder_id;
449 uint32_t devices;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000450 uint32_t active_device;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200451 uint32_t flags;
452 uint32_t pixel_clock;
453 enum radeon_rmx_type rmx_type;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400454 enum radeon_underscan_type underscan_type;
Marius Gröger5bccf5e2010-09-21 21:30:59 +0200455 uint32_t underscan_hborder;
456 uint32_t underscan_vborder;
Alex Deucherde2103e2009-10-09 15:14:30 -0400457 struct drm_display_mode native_mode;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200458 void *enc_priv;
Christian König58bd0862010-04-05 22:14:55 +0200459 int audio_polling_active;
Alex Deucher3e4b9982010-11-16 12:09:42 -0500460 bool is_ext_encoder;
Alex Deucher36868bd2011-01-06 21:19:21 -0500461 u16 caps;
Slava Grigorev1a626b62014-12-01 13:49:39 -0500462 struct radeon_audio_funcs *audio;
Alex Deucher643b1f52015-02-23 10:59:36 -0500463 enum radeon_output_csc output_csc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200464};
465
466struct radeon_connector_atom_dig {
467 uint32_t igp_lane_info;
Alex Deucher4143e912009-11-23 18:02:35 -0500468 /* displayport */
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200469 u8 dpcd[DP_RECEIVER_CAP_SIZE];
Alex Deucher4143e912009-11-23 18:02:35 -0500470 u8 dp_sink_type;
Alex Deucher5801ead2009-11-24 13:32:59 -0500471 int dp_clock;
472 int dp_lane_count;
Alex Deucher8b834852010-11-17 02:54:42 -0500473 bool edp_on;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200474};
475
Alex Deuchereed45b32009-12-04 14:45:27 -0500476struct radeon_gpio_rec {
477 bool valid;
478 u8 id;
479 u32 reg;
480 u32 mask;
Alex Deucher727b3d22014-11-07 11:34:57 -0500481 u32 shift;
Alex Deuchereed45b32009-12-04 14:45:27 -0500482};
483
Alex Deuchereed45b32009-12-04 14:45:27 -0500484struct radeon_hpd {
485 enum radeon_hpd_id hpd;
486 u8 plugged_state;
487 struct radeon_gpio_rec gpio;
488};
489
Alex Deucher26b5bc92010-08-05 21:21:18 -0400490struct radeon_router {
Alex Deucher26b5bc92010-08-05 21:21:18 -0400491 u32 router_id;
492 struct radeon_i2c_bus_rec i2c_info;
493 u8 i2c_addr;
Alex Deucherfb939df2010-11-08 16:08:29 +0000494 /* i2c mux */
495 bool ddc_valid;
496 u8 ddc_mux_type;
497 u8 ddc_mux_control_pin;
498 u8 ddc_mux_state;
499 /* clock/data mux */
500 bool cd_valid;
501 u8 cd_mux_type;
502 u8 cd_mux_control_pin;
503 u8 cd_mux_state;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400504};
505
Alex Deucher8666c072013-09-03 14:58:44 -0400506enum radeon_connector_audio {
507 RADEON_AUDIO_DISABLE = 0,
508 RADEON_AUDIO_ENABLE = 1,
509 RADEON_AUDIO_AUTO = 2
510};
511
Alex Deucher6214bb72013-09-24 17:26:26 -0400512enum radeon_connector_dither {
513 RADEON_FMT_DITHER_DISABLE = 0,
514 RADEON_FMT_DITHER_ENABLE = 1,
515};
516
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200517struct radeon_connector {
518 struct drm_connector base;
519 uint32_t connector_id;
520 uint32_t devices;
521 struct radeon_i2c_chan *ddc_bus;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400522 /* some systems have an hdmi and vga port with a shared ddc line */
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400523 bool shared_ddc;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000524 bool use_digital;
525 /* we need to mind the EDID between detect
526 and get modes due to analog/digital/tvencoder */
527 struct edid *edid;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200528 void *con_priv;
Dave Airlie445282d2009-09-09 17:40:54 +1000529 bool dac_load_detect;
Alex Deucherd0d0a222011-10-07 14:23:48 -0400530 bool detected_by_load; /* if the connection status was determined by load */
Alex Deucherb75fad02009-11-05 13:16:01 -0500531 uint16_t connector_object_id;
Alex Deuchereed45b32009-12-04 14:45:27 -0500532 struct radeon_hpd hpd;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400533 struct radeon_router router;
534 struct radeon_i2c_chan *router_bus;
Alex Deucher8666c072013-09-03 14:58:44 -0400535 enum radeon_connector_audio audio;
Alex Deucher6214bb72013-09-24 17:26:26 -0400536 enum radeon_connector_dither dither;
Mario Kleinerea292862014-06-05 09:58:24 -0400537 int pixelclock_for_modeset;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200538};
539
540struct radeon_framebuffer {
541 struct drm_framebuffer base;
542 struct drm_gem_object *obj;
543};
544
Alex Deucher996d5c52011-10-26 15:59:50 -0400545#define ENCODER_MODE_IS_DP(em) (((em) == ATOM_ENCODER_MODE_DP) || \
546 ((em) == ATOM_ENCODER_MODE_DP_MST))
Mario Kleiner6383cf72010-10-05 19:57:36 -0400547
Christian König7062ab672013-04-08 12:41:31 +0200548struct atom_clock_dividers {
549 u32 post_div;
550 union {
551 struct {
552#ifdef __BIG_ENDIAN
553 u32 reserved : 6;
554 u32 whole_fb_div : 12;
555 u32 frac_fb_div : 14;
556#else
557 u32 frac_fb_div : 14;
558 u32 whole_fb_div : 12;
559 u32 reserved : 6;
560#endif
561 };
562 u32 fb_div;
563 };
564 u32 ref_div;
565 bool enable_post_div;
566 bool enable_dithen;
567 u32 vco_mode;
568 u32 real_clock;
Alex Deucher9219ed62013-02-19 14:35:34 -0500569 /* added for CI */
570 u32 post_divider;
571 u32 flags;
Christian König7062ab672013-04-08 12:41:31 +0200572};
573
Alex Deuchereaa778a2013-02-13 16:38:25 -0500574struct atom_mpll_param {
575 union {
576 struct {
577#ifdef __BIG_ENDIAN
578 u32 reserved : 8;
579 u32 clkfrac : 12;
580 u32 clkf : 12;
581#else
582 u32 clkf : 12;
583 u32 clkfrac : 12;
584 u32 reserved : 8;
585#endif
586 };
587 u32 fb_div;
588 };
589 u32 post_div;
590 u32 bwcntl;
591 u32 dll_speed;
592 u32 vco_mode;
593 u32 yclk_sel;
594 u32 qdr;
595 u32 half_rate;
596};
597
Alex Deucherae5b0ab2013-06-24 10:50:34 -0400598#define MEM_TYPE_GDDR5 0x50
599#define MEM_TYPE_GDDR4 0x40
600#define MEM_TYPE_GDDR3 0x30
601#define MEM_TYPE_DDR2 0x20
602#define MEM_TYPE_GDDR1 0x10
603#define MEM_TYPE_DDR3 0xb0
604#define MEM_TYPE_MASK 0xf0
605
606struct atom_memory_info {
607 u8 mem_vendor;
608 u8 mem_type;
609};
610
611#define MAX_AC_TIMING_ENTRIES 16
612
613struct atom_memory_clock_range_table
614{
615 u8 num_entries;
616 u8 rsv[3];
617 u32 mclk[MAX_AC_TIMING_ENTRIES];
618};
619
620#define VBIOS_MC_REGISTER_ARRAY_SIZE 32
621#define VBIOS_MAX_AC_TIMING_ENTRIES 20
622
623struct atom_mc_reg_entry {
624 u32 mclk_max;
625 u32 mc_data[VBIOS_MC_REGISTER_ARRAY_SIZE];
626};
627
628struct atom_mc_register_address {
629 u16 s1;
630 u8 pre_reg_data;
631};
632
633struct atom_mc_reg_table {
634 u8 last;
635 u8 num_entries;
636 struct atom_mc_reg_entry mc_reg_table_entry[VBIOS_MAX_AC_TIMING_ENTRIES];
637 struct atom_mc_register_address mc_reg_address[VBIOS_MC_REGISTER_ARRAY_SIZE];
638};
639
640#define MAX_VOLTAGE_ENTRIES 32
641
642struct atom_voltage_table_entry
643{
644 u16 value;
645 u32 smio_low;
646};
647
648struct atom_voltage_table
649{
650 u32 count;
651 u32 mask_low;
Alex Deucher65171942013-02-13 17:29:54 -0500652 u32 phase_delay;
Alex Deucherae5b0ab2013-06-24 10:50:34 -0400653 struct atom_voltage_table_entry entries[MAX_VOLTAGE_ENTRIES];
654};
655
Rashika Kheriaa38eab52014-01-07 13:01:32 -0500656
657extern void
658radeon_add_atom_connector(struct drm_device *dev,
659 uint32_t connector_id,
660 uint32_t supported_device,
661 int connector_type,
662 struct radeon_i2c_bus_rec *i2c_bus,
663 uint32_t igp_lane_info,
664 uint16_t connector_object_id,
665 struct radeon_hpd *hpd,
666 struct radeon_router *router);
667extern void
668radeon_add_legacy_connector(struct drm_device *dev,
669 uint32_t connector_id,
670 uint32_t supported_device,
671 int connector_type,
672 struct radeon_i2c_bus_rec *i2c_bus,
673 uint16_t connector_object_id,
674 struct radeon_hpd *hpd);
Rashika Kheria0091fc12014-01-07 13:06:31 -0500675extern uint32_t
676radeon_get_encoder_enum(struct drm_device *dev, uint32_t supported_device,
677 uint8_t dac);
678extern void radeon_link_encoder_connector(struct drm_device *dev);
Rashika Kheriaa38eab52014-01-07 13:01:32 -0500679
Alex Deucherd79766f2009-12-17 19:00:29 -0500680extern enum radeon_tv_std
681radeon_combios_get_tv_info(struct radeon_device *rdev);
682extern enum radeon_tv_std
683radeon_atombios_get_tv_info(struct radeon_device *rdev);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400684extern void radeon_atombios_get_default_voltages(struct radeon_device *rdev,
Alex Deucher2abba662013-03-25 12:47:23 -0400685 u16 *vddc, u16 *vddci, u16 *mvdd);
Alex Deucherd79766f2009-12-17 19:00:29 -0500686
Alex Deucher84ac68e2014-01-07 12:53:29 -0500687extern void
688radeon_combios_connected_scratch_regs(struct drm_connector *connector,
689 struct drm_encoder *encoder,
690 bool connected);
691extern void
692radeon_atombios_connected_scratch_regs(struct drm_connector *connector,
693 struct drm_encoder *encoder,
694 bool connected);
695
Alex Deucher5b1714d2010-08-03 19:59:20 -0400696extern struct drm_connector *
697radeon_get_connector_for_encoder(struct drm_encoder *encoder);
Alex Deucher9aa59992012-01-20 15:03:30 -0500698extern struct drm_connector *
699radeon_get_connector_for_encoder_init(struct drm_encoder *encoder);
700extern bool radeon_dig_monitor_is_duallink(struct drm_encoder *encoder,
701 u32 pixel_clock);
Alex Deucher5b1714d2010-08-03 19:59:20 -0400702
Alex Deucher1d33e1f2011-10-31 08:58:47 -0400703extern u16 radeon_encoder_get_dp_bridge_encoder_id(struct drm_encoder *encoder);
704extern u16 radeon_connector_encoder_get_dp_bridge_encoder_id(struct drm_connector *connector);
Alex Deucherd7fa8bb2011-05-20 04:34:21 -0400705extern bool radeon_connector_is_dp12_capable(struct drm_connector *connector);
Alex Deuchereccea792012-03-26 15:12:54 -0400706extern int radeon_get_monitor_bpc(struct drm_connector *connector);
Alex Deucherd7fa8bb2011-05-20 04:34:21 -0400707
Alex Deucher377bd8a2014-07-15 11:00:47 -0400708extern struct edid *radeon_connector_edid(struct drm_connector *connector);
709
Alex Deucherd4877cf2009-12-04 16:56:37 -0500710extern void radeon_connector_hotplug(struct drm_connector *connector);
Alex Deucher224d94b2011-05-20 04:34:28 -0400711extern int radeon_dp_mode_valid_helper(struct drm_connector *connector,
Alex Deucher5801ead2009-11-24 13:32:59 -0500712 struct drm_display_mode *mode);
713extern void radeon_dp_set_link_config(struct drm_connector *connector,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200714 const struct drm_display_mode *mode);
Alex Deucher224d94b2011-05-20 04:34:28 -0400715extern void radeon_dp_link_train(struct drm_encoder *encoder,
716 struct drm_connector *connector);
Alex Deucherd5811e82011-08-13 13:36:13 -0400717extern bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector);
Alex Deucher4143e912009-11-23 18:02:35 -0500718extern u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector);
Alex Deucher9fa05c92009-11-27 13:01:46 -0500719extern bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector);
Alex Deucher386d4d72012-01-20 15:01:29 -0500720extern int radeon_dp_get_panel_mode(struct drm_encoder *encoder,
721 struct drm_connector *connector);
Alex Deucher2953da12014-03-17 23:48:15 -0400722extern void radeon_dp_set_rx_power_state(struct drm_connector *connector,
723 u8 power_state);
Alex Deucher496263b2014-03-21 10:34:07 -0400724extern void radeon_dp_aux_init(struct radeon_connector *radeon_connector);
Dave Airlie875711f2015-02-20 09:21:36 +1000725extern ssize_t
726radeon_dp_aux_transfer_native(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg);
727
Alex Deucher558e27d2011-05-20 04:34:27 -0400728extern void atombios_dig_encoder_setup(struct drm_encoder *encoder, int action, int panel_mode);
Alex Deucherac89af12011-05-22 13:20:36 -0400729extern void radeon_atom_encoder_init(struct radeon_device *rdev);
Alex Deucherf3f1f032012-03-20 17:18:04 -0400730extern void radeon_atom_disp_eng_pll_init(struct radeon_device *rdev);
Alex Deucher5801ead2009-11-24 13:32:59 -0500731extern void atombios_dig_transmitter_setup(struct drm_encoder *encoder,
732 int action, uint8_t lane_num,
733 uint8_t lane_set);
Alex Deucher591a10e2011-06-13 17:13:34 -0400734extern void radeon_atom_ext_encoder_setup_ddc(struct drm_encoder *encoder);
Alex Deucher3f03ced2011-10-30 17:20:22 -0400735extern struct drm_encoder *radeon_get_external_encoder(struct drm_encoder *encoder);
Rashika Kheria4cf3b492014-01-06 21:16:34 +0530736void radeon_atom_copy_swap(u8 *dst, u8 *src, u8 num_bytes, bool to_le);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000737
Alex Deucherf376b942010-08-05 21:21:16 -0400738extern void radeon_i2c_init(struct radeon_device *rdev);
739extern void radeon_i2c_fini(struct radeon_device *rdev);
740extern void radeon_combios_i2c_init(struct radeon_device *rdev);
741extern void radeon_atombios_i2c_init(struct radeon_device *rdev);
742extern void radeon_i2c_add(struct radeon_device *rdev,
743 struct radeon_i2c_bus_rec *rec,
744 const char *name);
745extern struct radeon_i2c_chan *radeon_i2c_lookup(struct radeon_device *rdev,
746 struct radeon_i2c_bus_rec *i2c_bus);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200747extern struct radeon_i2c_chan *radeon_i2c_create(struct drm_device *dev,
748 struct radeon_i2c_bus_rec *rec,
749 const char *name);
750extern void radeon_i2c_destroy(struct radeon_i2c_chan *i2c);
Alex Deucher5a6f98f2009-12-22 15:04:48 -0500751extern void radeon_i2c_get_byte(struct radeon_i2c_chan *i2c_bus,
752 u8 slave_addr,
753 u8 addr,
754 u8 *val);
755extern void radeon_i2c_put_byte(struct radeon_i2c_chan *i2c,
756 u8 slave_addr,
757 u8 addr,
758 u8 val);
Alex Deucherfb939df2010-11-08 16:08:29 +0000759extern void radeon_router_select_ddc_port(struct radeon_connector *radeon_connector);
760extern void radeon_router_select_cd_port(struct radeon_connector *radeon_connector);
Niels Ole Salscheider0a9069d2013-01-03 19:09:28 +0100761extern bool radeon_ddc_probe(struct radeon_connector *radeon_connector, bool use_aux);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200762
Alex Deucherba032a52010-10-04 17:13:01 -0400763extern bool radeon_atombios_get_ppll_ss_info(struct radeon_device *rdev,
764 struct radeon_atom_ss *ss,
765 int id);
766extern bool radeon_atombios_get_asic_ss_info(struct radeon_device *rdev,
767 struct radeon_atom_ss *ss,
768 int id, u32 clock);
Alex Deucher09e619c2014-11-07 11:16:25 -0500769extern struct radeon_gpio_rec radeon_atombios_lookup_gpio(struct radeon_device *rdev,
770 u8 id);
Alex Deucherba032a52010-10-04 17:13:01 -0400771
Alex Deucherf523f742011-01-31 16:48:52 -0500772extern void radeon_compute_pll_legacy(struct radeon_pll *pll,
773 uint64_t freq,
774 uint32_t *dot_clock_p,
775 uint32_t *fb_div_p,
776 uint32_t *frac_fb_div_p,
777 uint32_t *ref_div_p,
778 uint32_t *post_div_p);
779
780extern void radeon_compute_pll_avivo(struct radeon_pll *pll,
781 u32 freq,
782 u32 *dot_clock_p,
783 u32 *fb_div_p,
784 u32 *frac_fb_div_p,
785 u32 *ref_div_p,
786 u32 *post_div_p);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200787
Dave Airlie1f3b6a42009-10-13 14:10:37 +1000788extern void radeon_setup_encoder_clones(struct drm_device *dev);
789
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200790struct drm_encoder *radeon_encoder_legacy_lvds_add(struct drm_device *dev, int bios_index);
791struct drm_encoder *radeon_encoder_legacy_primary_dac_add(struct drm_device *dev, int bios_index, int with_tv);
792struct drm_encoder *radeon_encoder_legacy_tv_dac_add(struct drm_device *dev, int bios_index, int with_tv);
793struct drm_encoder *radeon_encoder_legacy_tmds_int_add(struct drm_device *dev, int bios_index);
794struct drm_encoder *radeon_encoder_legacy_tmds_ext_add(struct drm_device *dev, int bios_index);
Alex Deucher99999aa2010-11-16 12:09:41 -0500795extern void atombios_dvo_setup(struct drm_encoder *encoder, int action);
Alex Deucher32f48ff2009-11-30 01:54:16 -0500796extern void atombios_digital_setup(struct drm_encoder *encoder, int action);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200797extern int atombios_get_encoder_mode(struct drm_encoder *encoder);
Alex Deucher2dafb742011-05-20 04:34:19 -0400798extern bool atombios_set_edp_panel_power(struct drm_connector *connector, int action);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000799extern void radeon_encoder_set_active_device(struct drm_encoder *encoder);
Alex Deucherd740a932014-09-18 16:27:46 -0400800extern bool radeon_encoder_is_digital(struct drm_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200801
802extern void radeon_crtc_load_lut(struct drm_crtc *crtc);
803extern int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
804 struct drm_framebuffer *old_fb);
Chris Ball4dd19b02010-09-26 06:47:23 -0500805extern int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
806 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500807 int x, int y,
808 enum mode_set_atomic state);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200809extern int atombios_crtc_mode_set(struct drm_crtc *crtc,
810 struct drm_display_mode *mode,
811 struct drm_display_mode *adjusted_mode,
812 int x, int y,
813 struct drm_framebuffer *old_fb);
814extern void atombios_crtc_dpms(struct drm_crtc *crtc, int mode);
815
816extern int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y,
817 struct drm_framebuffer *old_fb);
Chris Ball4dd19b02010-09-26 06:47:23 -0500818extern int radeon_crtc_set_base_atomic(struct drm_crtc *crtc,
819 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500820 int x, int y,
821 enum mode_set_atomic state);
Chris Ball4dd19b02010-09-26 06:47:23 -0500822extern int radeon_crtc_do_set_base(struct drm_crtc *crtc,
823 struct drm_framebuffer *fb,
824 int x, int y, int atomic);
Michel Dänzer78b1a602014-11-18 18:00:08 +0900825extern int radeon_crtc_cursor_set2(struct drm_crtc *crtc,
826 struct drm_file *file_priv,
827 uint32_t handle,
828 uint32_t width,
829 uint32_t height,
830 int32_t hot_x,
831 int32_t hot_y);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200832extern int radeon_crtc_cursor_move(struct drm_crtc *crtc,
833 int x, int y);
Michel Dänzer6d3759f2014-11-21 11:48:57 +0900834extern void radeon_cursor_reset(struct drm_crtc *crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200835
Mario Kleinerf5a80202010-10-23 04:42:17 +0200836extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
Ville Syrjäläabca9e452013-10-28 20:50:48 +0200837 unsigned int flags,
Mario Kleinerd47abc52013-10-30 05:13:07 +0100838 int *vpos, int *hpos, ktime_t *stime,
839 ktime_t *etime);
Mario Kleiner6383cf72010-10-05 19:57:36 -0400840
Alex Deucher3c537882010-02-05 04:21:19 -0500841extern bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev);
842extern struct edid *
Alex Deucherc324acd2010-12-08 22:13:06 -0500843radeon_bios_get_hardcoded_edid(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200844extern bool radeon_atom_get_clock_info(struct drm_device *dev);
845extern bool radeon_combios_get_clock_info(struct drm_device *dev);
846extern struct radeon_encoder_atom_dig *
847radeon_atombios_get_lvds_info(struct radeon_encoder *encoder);
Alex Deucherfcec5702009-11-10 21:25:07 -0500848extern bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder,
849 struct radeon_encoder_int_tmds *tmds);
850extern bool radeon_legacy_get_tmds_info_from_combios(struct radeon_encoder *encoder,
851 struct radeon_encoder_int_tmds *tmds);
852extern bool radeon_legacy_get_tmds_info_from_table(struct radeon_encoder *encoder,
853 struct radeon_encoder_int_tmds *tmds);
854extern bool radeon_legacy_get_ext_tmds_info_from_combios(struct radeon_encoder *encoder,
855 struct radeon_encoder_ext_tmds *tmds);
856extern bool radeon_legacy_get_ext_tmds_info_from_table(struct radeon_encoder *encoder,
857 struct radeon_encoder_ext_tmds *tmds);
Alex Deucher6fe7ac32009-06-12 17:26:08 +0000858extern struct radeon_encoder_primary_dac *
859radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder);
860extern struct radeon_encoder_tv_dac *
861radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200862extern struct radeon_encoder_lvds *
863radeon_combios_get_lvds_info(struct radeon_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200864extern void radeon_combios_get_ext_tmds_info(struct radeon_encoder *encoder);
865extern struct radeon_encoder_tv_dac *
866radeon_combios_get_tv_dac_info(struct radeon_encoder *encoder);
867extern struct radeon_encoder_primary_dac *
868radeon_combios_get_primary_dac_info(struct radeon_encoder *encoder);
Alex Deucherfcec5702009-11-10 21:25:07 -0500869extern bool radeon_combios_external_tmds_setup(struct drm_encoder *encoder);
870extern void radeon_external_tmds_setup(struct drm_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200871extern void radeon_combios_output_lock(struct drm_encoder *encoder, bool lock);
872extern void radeon_combios_initialize_bios_scratch_regs(struct drm_device *dev);
873extern void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock);
874extern void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev);
Yang Zhaof657c2a2009-09-15 12:21:01 +1000875extern void radeon_save_bios_scratch_regs(struct radeon_device *rdev);
876extern void radeon_restore_bios_scratch_regs(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200877extern void
878radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc);
879extern void
880radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on);
881extern void
882radeon_combios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc);
883extern void
884radeon_combios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on);
885extern void radeon_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
886 u16 blue, int regno);
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000887extern void radeon_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
888 u16 *blue, int regno);
Dave Airlieaaefcd42012-03-06 10:44:40 +0000889int radeon_framebuffer_init(struct drm_device *dev,
Dave Airlie38651672010-03-30 05:34:13 +0000890 struct radeon_framebuffer *rfb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800891 struct drm_mode_fb_cmd2 *mode_cmd,
Dave Airlie38651672010-03-30 05:34:13 +0000892 struct drm_gem_object *obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200893
894int radeonfb_remove(struct drm_device *dev, struct drm_framebuffer *fb);
895bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev);
896bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev);
897void radeon_atombios_init_crtc(struct drm_device *dev,
898 struct radeon_crtc *radeon_crtc);
899void radeon_legacy_init_crtc(struct drm_device *dev,
900 struct radeon_crtc *radeon_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200901
902void radeon_get_clock_info(struct drm_device *dev);
903
904extern bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev);
905extern bool radeon_get_atom_connector_info_from_supported_devices_table(struct drm_device *dev);
906
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200907void radeon_enc_destroy(struct drm_encoder *encoder);
908void radeon_copy_fb(struct drm_device *dev, struct drm_gem_object *dst_obj);
909void radeon_combios_asic_init(struct drm_device *dev);
Jerome Glissec93bb852009-07-13 21:04:08 +0200910bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200911 const struct drm_display_mode *mode,
Jerome Glissec93bb852009-07-13 21:04:08 +0200912 struct drm_display_mode *adjusted_mode);
Alex Deucher35153872010-04-30 12:00:44 -0400913void radeon_panel_mode_fixup(struct drm_encoder *encoder,
914 struct drm_display_mode *adjusted_mode);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000915void atom_rv515_force_tv_scaler(struct radeon_device *rdev, struct radeon_crtc *radeon_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200916
Dave Airlie4ce001a2009-08-13 16:32:14 +1000917/* legacy tv */
918void radeon_legacy_tv_adjust_crtc_reg(struct drm_encoder *encoder,
919 uint32_t *h_total_disp, uint32_t *h_sync_strt_wid,
920 uint32_t *v_total_disp, uint32_t *v_sync_strt_wid);
921void radeon_legacy_tv_adjust_pll1(struct drm_encoder *encoder,
922 uint32_t *htotal_cntl, uint32_t *ppll_ref_div,
923 uint32_t *ppll_div_3, uint32_t *pixclks_cntl);
924void radeon_legacy_tv_adjust_pll2(struct drm_encoder *encoder,
925 uint32_t *htotal2_cntl, uint32_t *p2pll_ref_div,
926 uint32_t *p2pll_div_0, uint32_t *pixclks_cntl);
927void radeon_legacy_tv_mode_set(struct drm_encoder *encoder,
928 struct drm_display_mode *mode,
929 struct drm_display_mode *adjusted_mode);
Dave Airlie38651672010-03-30 05:34:13 +0000930
Alex Deucher134b4802013-09-23 12:22:11 -0400931/* fmt blocks */
932void avivo_program_fmt(struct drm_encoder *encoder);
933void dce3_program_fmt(struct drm_encoder *encoder);
934void dce4_program_fmt(struct drm_encoder *encoder);
935void dce8_program_fmt(struct drm_encoder *encoder);
936
Dave Airlie38651672010-03-30 05:34:13 +0000937/* fbdev layer */
938int radeon_fbdev_init(struct radeon_device *rdev);
939void radeon_fbdev_fini(struct radeon_device *rdev);
940void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state);
Dave Airlie38651672010-03-30 05:34:13 +0000941bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000942
943void radeon_fb_output_poll_changed(struct radeon_device *rdev);
Alex Deucher6f34be52010-11-21 10:59:01 -0500944
Christian König1a0e7912014-05-27 16:49:21 +0200945void radeon_crtc_handle_vblank(struct radeon_device *rdev, int crtc_id);
Dave Airliebb262702015-02-24 09:23:59 +1000946
947void radeon_fb_add_connector(struct radeon_device *rdev, struct drm_connector *connector);
948void radeon_fb_remove_connector(struct radeon_device *rdev, struct drm_connector *connector);
949
Alex Deucher6f34be52010-11-21 10:59:01 -0500950void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id);
951
Dave Airlieff72145b2011-02-07 12:16:14 +1000952int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200953#endif