blob: 576511f46c9dd8b06c3fdff8171b8286194f5839 [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
Jerome Glisse771fe6b2009-06-05 14:42:42 +020049enum radeon_rmx_type {
50 RMX_OFF,
51 RMX_FULL,
52 RMX_CENTER,
53 RMX_ASPECT
54};
55
56enum radeon_tv_std {
57 TV_STD_NTSC,
58 TV_STD_PAL,
59 TV_STD_PAL_M,
60 TV_STD_PAL_60,
61 TV_STD_NTSC_J,
62 TV_STD_SCART_PAL,
63 TV_STD_SECAM,
64 TV_STD_PAL_CN,
Alex Deucherd79766f2009-12-17 19:00:29 -050065 TV_STD_PAL_N,
Jerome Glisse771fe6b2009-06-05 14:42:42 +020066};
67
Alex Deucher5b1714d2010-08-03 19:59:20 -040068enum radeon_underscan_type {
69 UNDERSCAN_OFF,
70 UNDERSCAN_ON,
71 UNDERSCAN_AUTO,
72};
73
Alex Deucher8e36ed02010-05-18 19:26:47 -040074enum radeon_hpd_id {
75 RADEON_HPD_1 = 0,
76 RADEON_HPD_2,
77 RADEON_HPD_3,
78 RADEON_HPD_4,
79 RADEON_HPD_5,
80 RADEON_HPD_6,
81 RADEON_HPD_NONE = 0xff,
82};
83
Alex Deucherf376b942010-08-05 21:21:16 -040084#define RADEON_MAX_I2C_BUS 16
85
Alex Deucher9b9fe722009-11-10 15:59:44 -050086/* radeon gpio-based i2c
87 * 1. "mask" reg and bits
88 * grabs the gpio pins for software use
89 * 0=not held 1=held
90 * 2. "a" reg and bits
91 * output pin value
92 * 0=low 1=high
93 * 3. "en" reg and bits
94 * sets the pin direction
95 * 0=input 1=output
96 * 4. "y" reg and bits
97 * input pin value
98 * 0=low 1=high
99 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200100struct radeon_i2c_bus_rec {
101 bool valid;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500102 /* id used by atom */
103 uint8_t i2c_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500104 /* id used by atom */
Alex Deucher8e36ed02010-05-18 19:26:47 -0400105 enum radeon_hpd_id hpd;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500106 /* can be used with hw i2c engine */
107 bool hw_capable;
108 /* uses multi-media i2c engine */
109 bool mm_i2c;
110 /* regs and bits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200111 uint32_t mask_clk_reg;
112 uint32_t mask_data_reg;
113 uint32_t a_clk_reg;
114 uint32_t a_data_reg;
Alex Deucher9b9fe722009-11-10 15:59:44 -0500115 uint32_t en_clk_reg;
116 uint32_t en_data_reg;
117 uint32_t y_clk_reg;
118 uint32_t y_data_reg;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200119 uint32_t mask_clk_mask;
120 uint32_t mask_data_mask;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200121 uint32_t a_clk_mask;
122 uint32_t a_data_mask;
Alex Deucher9b9fe722009-11-10 15:59:44 -0500123 uint32_t en_clk_mask;
124 uint32_t en_data_mask;
125 uint32_t y_clk_mask;
126 uint32_t y_data_mask;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200127};
128
129struct radeon_tmds_pll {
130 uint32_t freq;
131 uint32_t value;
132};
133
134#define RADEON_MAX_BIOS_CONNECTOR 16
135
Alex Deucher7c27f872010-02-02 12:05:01 -0500136/* pll flags */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200137#define RADEON_PLL_USE_BIOS_DIVS (1 << 0)
138#define RADEON_PLL_NO_ODD_POST_DIV (1 << 1)
139#define RADEON_PLL_USE_REF_DIV (1 << 2)
140#define RADEON_PLL_LEGACY (1 << 3)
141#define RADEON_PLL_PREFER_LOW_REF_DIV (1 << 4)
142#define RADEON_PLL_PREFER_HIGH_REF_DIV (1 << 5)
143#define RADEON_PLL_PREFER_LOW_FB_DIV (1 << 6)
144#define RADEON_PLL_PREFER_HIGH_FB_DIV (1 << 7)
145#define RADEON_PLL_PREFER_LOW_POST_DIV (1 << 8)
146#define RADEON_PLL_PREFER_HIGH_POST_DIV (1 << 9)
147#define RADEON_PLL_USE_FRAC_FB_DIV (1 << 10)
Alex Deucherd0e275a2009-07-13 11:08:18 -0400148#define RADEON_PLL_PREFER_CLOSEST_LOWER (1 << 11)
Alex Deucherfc103322010-01-19 17:16:10 -0500149#define RADEON_PLL_USE_POST_DIV (1 << 12)
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500150#define RADEON_PLL_IS_LCD (1 << 13)
Alex Deucherf523f742011-01-31 16:48:52 -0500151#define RADEON_PLL_PREFER_MINM_OVER_MAXP (1 << 14)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200152
153struct radeon_pll {
Alex Deucherfc103322010-01-19 17:16:10 -0500154 /* reference frequency */
155 uint32_t reference_freq;
156
157 /* fixed dividers */
158 uint32_t reference_div;
159 uint32_t post_div;
160
161 /* pll in/out limits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162 uint32_t pll_in_min;
163 uint32_t pll_in_max;
164 uint32_t pll_out_min;
165 uint32_t pll_out_max;
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500166 uint32_t lcd_pll_out_min;
167 uint32_t lcd_pll_out_max;
Alex Deucherfc103322010-01-19 17:16:10 -0500168 uint32_t best_vco;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200169
Alex Deucherfc103322010-01-19 17:16:10 -0500170 /* divider limits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200171 uint32_t min_ref_div;
172 uint32_t max_ref_div;
173 uint32_t min_post_div;
174 uint32_t max_post_div;
175 uint32_t min_feedback_div;
176 uint32_t max_feedback_div;
177 uint32_t min_frac_feedback_div;
178 uint32_t max_frac_feedback_div;
Alex Deucherfc103322010-01-19 17:16:10 -0500179
180 /* flags for the current clock */
181 uint32_t flags;
182
183 /* pll id */
184 uint32_t id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200185};
186
187struct radeon_i2c_chan {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188 struct i2c_adapter adapter;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000189 struct drm_device *dev;
190 union {
Alex Deucherac1aade2010-03-14 12:22:44 -0400191 struct i2c_algo_bit_data bit;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000192 struct i2c_algo_dp_aux_data dp;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000193 } algo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200194 struct radeon_i2c_bus_rec rec;
195};
196
197/* mostly for macs, but really any system without connector tables */
198enum radeon_connector_table {
Alex Deucheraa74fbb2010-09-07 14:41:30 -0400199 CT_NONE = 0,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200200 CT_GENERIC,
201 CT_IBOOK,
202 CT_POWERBOOK_EXTERNAL,
203 CT_POWERBOOK_INTERNAL,
204 CT_POWERBOOK_VGA,
205 CT_MINI_EXTERNAL,
206 CT_MINI_INTERNAL,
207 CT_IMAC_G5_ISIGHT,
208 CT_EMAC,
Dave Airlie76a71422010-06-11 01:09:05 -0400209 CT_RN50_POWER,
Alex Deucheraa74fbb2010-09-07 14:41:30 -0400210 CT_MAC_X800,
Alex Deucher9fad3212011-02-07 13:15:28 -0500211 CT_MAC_G5_9600,
Alex Deuchercafa59b2012-12-20 16:35:47 -0500212 CT_SAM440EP,
213 CT_MAC_G4_SILVER
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200214};
215
Alex Deucherfcec5702009-11-10 21:25:07 -0500216enum radeon_dvo_chip {
217 DVO_SIL164,
218 DVO_SIL1178,
219};
220
Dave Airlie8be48d92010-03-30 05:34:14 +0000221struct radeon_fbdev;
Dave Airlie38651672010-03-30 05:34:13 +0000222
Alex Deucher07839862012-05-14 16:52:29 +0200223struct radeon_afmt {
224 bool enabled;
225 int offset;
226 bool last_buffer_filled_status;
227 int id;
228};
229
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230struct radeon_mode_info {
231 struct atom_context *atom_context;
Mathias Fröhlich61c4b242009-10-27 15:08:01 -0400232 struct card_info *atom_card_info;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200233 enum radeon_connector_table connector_table;
234 bool mode_config_initialized;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500235 struct radeon_crtc *crtcs[6];
Alex Deucher07839862012-05-14 16:52:29 +0200236 struct radeon_afmt *afmt[6];
Dave Airlie445282d2009-09-09 17:40:54 +1000237 /* DVI-I properties */
238 struct drm_property *coherent_mode_property;
239 /* DAC enable load detect */
240 struct drm_property *load_detect_property;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400241 /* TV standard */
Dave Airlie445282d2009-09-09 17:40:54 +1000242 struct drm_property *tv_std_property;
243 /* legacy TMDS PLL detect */
244 struct drm_property *tmds_pll_property;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400245 /* underscan */
246 struct drm_property *underscan_property;
Marius Gröger5bccf5e2010-09-21 21:30:59 +0200247 struct drm_property *underscan_hborder_property;
248 struct drm_property *underscan_vborder_property;
Alex Deucher3c537882010-02-05 04:21:19 -0500249 /* hardcoded DFP edid from BIOS */
250 struct edid *bios_hardcoded_edid;
Alex Deucherfafcf942011-03-23 08:10:10 +0000251 int bios_hardcoded_edid_size;
Dave Airlie38651672010-03-30 05:34:13 +0000252
253 /* pointer to fbdev info structure */
Dave Airlie8be48d92010-03-30 05:34:14 +0000254 struct radeon_fbdev *rfbdev;
Alex Deucheraf7912e2012-07-26 09:50:57 -0400255 /* firmware flags */
256 u16 firmware_flags;
Alex Deucherbced76f2012-09-14 09:45:50 -0400257 /* pointer to backlight encoder */
258 struct radeon_encoder *bl_encoder;
Jerome Glissec93bb852009-07-13 21:04:08 +0200259};
260
Alex Deucher91030882012-07-26 11:05:22 -0400261#define RADEON_MAX_BL_LEVEL 0xFF
262
Alex Deucherbced76f2012-09-14 09:45:50 -0400263#if defined(CONFIG_BACKLIGHT_CLASS_DEVICE) || defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE)
264
Alex Deucher91030882012-07-26 11:05:22 -0400265struct radeon_backlight_privdata {
266 struct radeon_encoder *encoder;
267 uint8_t negative;
268};
269
270#endif
271
Dave Airlie4ce001a2009-08-13 16:32:14 +1000272#define MAX_H_CODE_TIMING_LEN 32
273#define MAX_V_CODE_TIMING_LEN 32
274
275/* need to store these as reading
276 back code tables is excessive */
277struct radeon_tv_regs {
278 uint32_t tv_uv_adr;
279 uint32_t timing_cntl;
280 uint32_t hrestart;
281 uint32_t vrestart;
282 uint32_t frestart;
283 uint16_t h_code_timing[MAX_H_CODE_TIMING_LEN];
284 uint16_t v_code_timing[MAX_V_CODE_TIMING_LEN];
285};
286
Alex Deucher19eca432012-09-13 10:56:16 -0400287struct radeon_atom_ss {
288 uint16_t percentage;
289 uint8_t type;
290 uint16_t step;
291 uint8_t delay;
292 uint8_t range;
293 uint8_t refdiv;
294 /* asic_ss */
295 uint16_t rate;
296 uint16_t amount;
297};
298
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200299struct radeon_crtc {
300 struct drm_crtc base;
301 int crtc_id;
302 u16 lut_r[256], lut_g[256], lut_b[256];
303 bool enabled;
304 bool can_tile;
305 uint32_t crtc_offset;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200306 struct drm_gem_object *cursor_bo;
307 uint64_t cursor_addr;
308 int cursor_width;
309 int cursor_height;
Alex Deucher9e05fa12013-01-24 10:06:33 -0500310 int max_cursor_width;
311 int max_cursor_height;
Dave Airlie41623382009-07-09 15:04:19 +1000312 uint32_t legacy_display_base_addr;
Alex Deucherc836e862009-07-13 13:51:03 -0400313 uint32_t legacy_cursor_offset;
Jerome Glissec93bb852009-07-13 21:04:08 +0200314 enum radeon_rmx_type rmx_type;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400315 u8 h_border;
316 u8 v_border;
Jerome Glissec93bb852009-07-13 21:04:08 +0200317 fixed20_12 vsc;
318 fixed20_12 hsc;
Alex Deucherde2103e2009-10-09 15:14:30 -0400319 struct drm_display_mode native_mode;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500320 int pll_id;
Alex Deucher6f34be52010-11-21 10:59:01 -0500321 /* page flipping */
322 struct radeon_unpin_work *unpin_work;
323 int deferred_flip_completion;
Alex Deucher19eca432012-09-13 10:56:16 -0400324 /* pll sharing */
325 struct radeon_atom_ss ss;
326 bool ss_enabled;
327 u32 adjusted_clock;
328 int bpc;
329 u32 pll_reference_div;
330 u32 pll_post_div;
331 u32 pll_flags;
Alex Deucher5df31962012-09-13 11:52:08 -0400332 struct drm_encoder *encoder;
Alex Deucher57b35e22012-09-17 17:34:45 -0400333 struct drm_connector *connector;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200334};
335
336struct radeon_encoder_primary_dac {
337 /* legacy primary dac */
338 uint32_t ps2_pdac_adj;
339};
340
341struct radeon_encoder_lvds {
342 /* legacy lvds */
343 uint16_t panel_vcc_delay;
344 uint8_t panel_pwr_delay;
345 uint8_t panel_digon_delay;
346 uint8_t panel_blon_delay;
347 uint16_t panel_ref_divider;
348 uint8_t panel_post_divider;
349 uint16_t panel_fb_divider;
350 bool use_bios_dividers;
351 uint32_t lvds_gen_cntl;
352 /* panel mode */
Alex Deucherde2103e2009-10-09 15:14:30 -0400353 struct drm_display_mode native_mode;
Michel Dänzer63ec0112011-03-22 16:30:23 -0700354 struct backlight_device *bl_dev;
355 int dpms_mode;
356 uint8_t backlight_level;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357};
358
359struct radeon_encoder_tv_dac {
360 /* legacy tv dac */
361 uint32_t ps2_tvdac_adj;
362 uint32_t ntsc_tvdac_adj;
363 uint32_t pal_tvdac_adj;
364
Dave Airlie4ce001a2009-08-13 16:32:14 +1000365 int h_pos;
366 int v_pos;
367 int h_size;
368 int supported_tv_stds;
369 bool tv_on;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370 enum radeon_tv_std tv_std;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000371 struct radeon_tv_regs tv;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200372};
373
374struct radeon_encoder_int_tmds {
375 /* legacy int tmds */
376 struct radeon_tmds_pll tmds_pll[4];
377};
378
Alex Deucherfcec5702009-11-10 21:25:07 -0500379struct radeon_encoder_ext_tmds {
380 /* tmds over dvo */
381 struct radeon_i2c_chan *i2c_bus;
382 uint8_t slave_addr;
383 enum radeon_dvo_chip dvo_chip;
384};
385
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400386/* spread spectrum */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200387struct radeon_encoder_atom_dig {
Alex Deucher5137ee92010-08-12 18:58:47 -0400388 bool linkb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200389 /* atom dig */
390 bool coherent_mode;
Alex Deucherba032a52010-10-04 17:13:01 -0400391 int dig_encoder; /* -1 disabled, 0 DIGA, 1 DIGB, etc. */
392 /* atom lvds/edp */
393 uint32_t lcd_misc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200394 uint16_t panel_pwr_delay;
Alex Deucherba032a52010-10-04 17:13:01 -0400395 uint32_t lcd_ss_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200396 /* panel mode */
Alex Deucherde2103e2009-10-09 15:14:30 -0400397 struct drm_display_mode native_mode;
Michel Dänzer63ec0112011-03-22 16:30:23 -0700398 struct backlight_device *bl_dev;
399 int dpms_mode;
400 uint8_t backlight_level;
Alex Deucher386d4d72012-01-20 15:01:29 -0500401 int panel_mode;
Alex Deucher07839862012-05-14 16:52:29 +0200402 struct radeon_afmt *afmt;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200403};
404
Dave Airlie4ce001a2009-08-13 16:32:14 +1000405struct radeon_encoder_atom_dac {
406 enum radeon_tv_std tv_std;
407};
408
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200409struct radeon_encoder {
410 struct drm_encoder base;
Alex Deucher5137ee92010-08-12 18:58:47 -0400411 uint32_t encoder_enum;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200412 uint32_t encoder_id;
413 uint32_t devices;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000414 uint32_t active_device;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200415 uint32_t flags;
416 uint32_t pixel_clock;
417 enum radeon_rmx_type rmx_type;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400418 enum radeon_underscan_type underscan_type;
Marius Gröger5bccf5e2010-09-21 21:30:59 +0200419 uint32_t underscan_hborder;
420 uint32_t underscan_vborder;
Alex Deucherde2103e2009-10-09 15:14:30 -0400421 struct drm_display_mode native_mode;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200422 void *enc_priv;
Christian König58bd0862010-04-05 22:14:55 +0200423 int audio_polling_active;
Alex Deucher3e4b9982010-11-16 12:09:42 -0500424 bool is_ext_encoder;
Alex Deucher36868bd2011-01-06 21:19:21 -0500425 u16 caps;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200426};
427
428struct radeon_connector_atom_dig {
429 uint32_t igp_lane_info;
Alex Deucher4143e912009-11-23 18:02:35 -0500430 /* displayport */
Dave Airlie746c1aa2009-12-08 07:07:28 +1000431 struct radeon_i2c_chan *dp_i2c_bus;
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200432 u8 dpcd[DP_RECEIVER_CAP_SIZE];
Alex Deucher4143e912009-11-23 18:02:35 -0500433 u8 dp_sink_type;
Alex Deucher5801ead2009-11-24 13:32:59 -0500434 int dp_clock;
435 int dp_lane_count;
Alex Deucher8b834852010-11-17 02:54:42 -0500436 bool edp_on;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200437};
438
Alex Deuchereed45b32009-12-04 14:45:27 -0500439struct radeon_gpio_rec {
440 bool valid;
441 u8 id;
442 u32 reg;
443 u32 mask;
444};
445
Alex Deuchereed45b32009-12-04 14:45:27 -0500446struct radeon_hpd {
447 enum radeon_hpd_id hpd;
448 u8 plugged_state;
449 struct radeon_gpio_rec gpio;
450};
451
Alex Deucher26b5bc92010-08-05 21:21:18 -0400452struct radeon_router {
Alex Deucher26b5bc92010-08-05 21:21:18 -0400453 u32 router_id;
454 struct radeon_i2c_bus_rec i2c_info;
455 u8 i2c_addr;
Alex Deucherfb939df2010-11-08 16:08:29 +0000456 /* i2c mux */
457 bool ddc_valid;
458 u8 ddc_mux_type;
459 u8 ddc_mux_control_pin;
460 u8 ddc_mux_state;
461 /* clock/data mux */
462 bool cd_valid;
463 u8 cd_mux_type;
464 u8 cd_mux_control_pin;
465 u8 cd_mux_state;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400466};
467
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200468struct radeon_connector {
469 struct drm_connector base;
470 uint32_t connector_id;
471 uint32_t devices;
472 struct radeon_i2c_chan *ddc_bus;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400473 /* some systems have an hdmi and vga port with a shared ddc line */
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400474 bool shared_ddc;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000475 bool use_digital;
476 /* we need to mind the EDID between detect
477 and get modes due to analog/digital/tvencoder */
478 struct edid *edid;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200479 void *con_priv;
Dave Airlie445282d2009-09-09 17:40:54 +1000480 bool dac_load_detect;
Alex Deucherd0d0a222011-10-07 14:23:48 -0400481 bool detected_by_load; /* if the connection status was determined by load */
Alex Deucherb75fad02009-11-05 13:16:01 -0500482 uint16_t connector_object_id;
Alex Deuchereed45b32009-12-04 14:45:27 -0500483 struct radeon_hpd hpd;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400484 struct radeon_router router;
485 struct radeon_i2c_chan *router_bus;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200486};
487
488struct radeon_framebuffer {
489 struct drm_framebuffer base;
490 struct drm_gem_object *obj;
491};
492
Alex Deucher996d5c52011-10-26 15:59:50 -0400493#define ENCODER_MODE_IS_DP(em) (((em) == ATOM_ENCODER_MODE_DP) || \
494 ((em) == ATOM_ENCODER_MODE_DP_MST))
Mario Kleiner6383cf72010-10-05 19:57:36 -0400495
Christian König7062ab62013-04-08 12:41:31 +0200496struct atom_clock_dividers {
497 u32 post_div;
498 union {
499 struct {
500#ifdef __BIG_ENDIAN
501 u32 reserved : 6;
502 u32 whole_fb_div : 12;
503 u32 frac_fb_div : 14;
504#else
505 u32 frac_fb_div : 14;
506 u32 whole_fb_div : 12;
507 u32 reserved : 6;
508#endif
509 };
510 u32 fb_div;
511 };
512 u32 ref_div;
513 bool enable_post_div;
514 bool enable_dithen;
515 u32 vco_mode;
516 u32 real_clock;
Alex Deucher9219ed62013-02-19 14:35:34 -0500517 /* added for CI */
518 u32 post_divider;
519 u32 flags;
Christian König7062ab62013-04-08 12:41:31 +0200520};
521
Alex Deucherd79766f2009-12-17 19:00:29 -0500522extern enum radeon_tv_std
523radeon_combios_get_tv_info(struct radeon_device *rdev);
524extern enum radeon_tv_std
525radeon_atombios_get_tv_info(struct radeon_device *rdev);
526
Alex Deucher5b1714d2010-08-03 19:59:20 -0400527extern struct drm_connector *
528radeon_get_connector_for_encoder(struct drm_encoder *encoder);
Alex Deucher9aa59992012-01-20 15:03:30 -0500529extern struct drm_connector *
530radeon_get_connector_for_encoder_init(struct drm_encoder *encoder);
531extern bool radeon_dig_monitor_is_duallink(struct drm_encoder *encoder,
532 u32 pixel_clock);
Alex Deucher5b1714d2010-08-03 19:59:20 -0400533
Alex Deucher1d33e1f2011-10-31 08:58:47 -0400534extern u16 radeon_encoder_get_dp_bridge_encoder_id(struct drm_encoder *encoder);
535extern u16 radeon_connector_encoder_get_dp_bridge_encoder_id(struct drm_connector *connector);
Alex Deucherd7fa8bb2011-05-20 04:34:21 -0400536extern bool radeon_connector_encoder_is_hbr2(struct drm_connector *connector);
537extern bool radeon_connector_is_dp12_capable(struct drm_connector *connector);
Alex Deuchereccea792012-03-26 15:12:54 -0400538extern int radeon_get_monitor_bpc(struct drm_connector *connector);
Alex Deucherd7fa8bb2011-05-20 04:34:21 -0400539
Alex Deucherd4877cf2009-12-04 16:56:37 -0500540extern void radeon_connector_hotplug(struct drm_connector *connector);
Alex Deucher224d94b2011-05-20 04:34:28 -0400541extern int radeon_dp_mode_valid_helper(struct drm_connector *connector,
Alex Deucher5801ead2009-11-24 13:32:59 -0500542 struct drm_display_mode *mode);
543extern void radeon_dp_set_link_config(struct drm_connector *connector,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200544 const struct drm_display_mode *mode);
Alex Deucher224d94b2011-05-20 04:34:28 -0400545extern void radeon_dp_link_train(struct drm_encoder *encoder,
546 struct drm_connector *connector);
Alex Deucherd5811e82011-08-13 13:36:13 -0400547extern bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector);
Alex Deucher4143e912009-11-23 18:02:35 -0500548extern u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector);
Alex Deucher9fa05c92009-11-27 13:01:46 -0500549extern bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector);
Alex Deucher386d4d72012-01-20 15:01:29 -0500550extern int radeon_dp_get_panel_mode(struct drm_encoder *encoder,
551 struct drm_connector *connector);
Alex Deucher558e27d2011-05-20 04:34:27 -0400552extern void atombios_dig_encoder_setup(struct drm_encoder *encoder, int action, int panel_mode);
Alex Deucherac89af12011-05-22 13:20:36 -0400553extern void radeon_atom_encoder_init(struct radeon_device *rdev);
Alex Deucherf3f1f032012-03-20 17:18:04 -0400554extern void radeon_atom_disp_eng_pll_init(struct radeon_device *rdev);
Alex Deucher5801ead2009-11-24 13:32:59 -0500555extern void atombios_dig_transmitter_setup(struct drm_encoder *encoder,
556 int action, uint8_t lane_num,
557 uint8_t lane_set);
Alex Deucher591a10e2011-06-13 17:13:34 -0400558extern void radeon_atom_ext_encoder_setup_ddc(struct drm_encoder *encoder);
Alex Deucher3f03ced2011-10-30 17:20:22 -0400559extern struct drm_encoder *radeon_get_external_encoder(struct drm_encoder *encoder);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000560extern int radeon_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
Alex Deucher834b2902011-05-20 04:34:24 -0400561 u8 write_byte, u8 *read_byte);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000562
Alex Deucherf376b942010-08-05 21:21:16 -0400563extern void radeon_i2c_init(struct radeon_device *rdev);
564extern void radeon_i2c_fini(struct radeon_device *rdev);
565extern void radeon_combios_i2c_init(struct radeon_device *rdev);
566extern void radeon_atombios_i2c_init(struct radeon_device *rdev);
567extern void radeon_i2c_add(struct radeon_device *rdev,
568 struct radeon_i2c_bus_rec *rec,
569 const char *name);
570extern struct radeon_i2c_chan *radeon_i2c_lookup(struct radeon_device *rdev,
571 struct radeon_i2c_bus_rec *i2c_bus);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000572extern struct radeon_i2c_chan *radeon_i2c_create_dp(struct drm_device *dev,
Alex Deucher6a93cb22009-11-23 17:39:28 -0500573 struct radeon_i2c_bus_rec *rec,
574 const char *name);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200575extern struct radeon_i2c_chan *radeon_i2c_create(struct drm_device *dev,
576 struct radeon_i2c_bus_rec *rec,
577 const char *name);
578extern void radeon_i2c_destroy(struct radeon_i2c_chan *i2c);
Alex Deucher5a6f98f2009-12-22 15:04:48 -0500579extern void radeon_i2c_get_byte(struct radeon_i2c_chan *i2c_bus,
580 u8 slave_addr,
581 u8 addr,
582 u8 *val);
583extern void radeon_i2c_put_byte(struct radeon_i2c_chan *i2c,
584 u8 slave_addr,
585 u8 addr,
586 u8 val);
Alex Deucherfb939df2010-11-08 16:08:29 +0000587extern void radeon_router_select_ddc_port(struct radeon_connector *radeon_connector);
588extern void radeon_router_select_cd_port(struct radeon_connector *radeon_connector);
Niels Ole Salscheider0a9069d2013-01-03 19:09:28 +0100589extern bool radeon_ddc_probe(struct radeon_connector *radeon_connector, bool use_aux);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200590extern int radeon_ddc_get_modes(struct radeon_connector *radeon_connector);
591
592extern struct drm_encoder *radeon_best_encoder(struct drm_connector *connector);
593
Alex Deucherba032a52010-10-04 17:13:01 -0400594extern bool radeon_atombios_get_ppll_ss_info(struct radeon_device *rdev,
595 struct radeon_atom_ss *ss,
596 int id);
597extern bool radeon_atombios_get_asic_ss_info(struct radeon_device *rdev,
598 struct radeon_atom_ss *ss,
599 int id, u32 clock);
600
Alex Deucherf523f742011-01-31 16:48:52 -0500601extern void radeon_compute_pll_legacy(struct radeon_pll *pll,
602 uint64_t freq,
603 uint32_t *dot_clock_p,
604 uint32_t *fb_div_p,
605 uint32_t *frac_fb_div_p,
606 uint32_t *ref_div_p,
607 uint32_t *post_div_p);
608
609extern void radeon_compute_pll_avivo(struct radeon_pll *pll,
610 u32 freq,
611 u32 *dot_clock_p,
612 u32 *fb_div_p,
613 u32 *frac_fb_div_p,
614 u32 *ref_div_p,
615 u32 *post_div_p);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200616
Dave Airlie1f3b6a42009-10-13 14:10:37 +1000617extern void radeon_setup_encoder_clones(struct drm_device *dev);
618
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200619struct drm_encoder *radeon_encoder_legacy_lvds_add(struct drm_device *dev, int bios_index);
620struct drm_encoder *radeon_encoder_legacy_primary_dac_add(struct drm_device *dev, int bios_index, int with_tv);
621struct drm_encoder *radeon_encoder_legacy_tv_dac_add(struct drm_device *dev, int bios_index, int with_tv);
622struct drm_encoder *radeon_encoder_legacy_tmds_int_add(struct drm_device *dev, int bios_index);
623struct drm_encoder *radeon_encoder_legacy_tmds_ext_add(struct drm_device *dev, int bios_index);
Alex Deucher99999aa2010-11-16 12:09:41 -0500624extern void atombios_dvo_setup(struct drm_encoder *encoder, int action);
Alex Deucher32f48ff2009-11-30 01:54:16 -0500625extern void atombios_digital_setup(struct drm_encoder *encoder, int action);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200626extern int atombios_get_encoder_mode(struct drm_encoder *encoder);
Alex Deucher2dafb742011-05-20 04:34:19 -0400627extern bool atombios_set_edp_panel_power(struct drm_connector *connector, int action);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000628extern void radeon_encoder_set_active_device(struct drm_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200629
630extern void radeon_crtc_load_lut(struct drm_crtc *crtc);
631extern int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
632 struct drm_framebuffer *old_fb);
Chris Ball4dd19b02010-09-26 06:47:23 -0500633extern int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
634 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500635 int x, int y,
636 enum mode_set_atomic state);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200637extern int atombios_crtc_mode_set(struct drm_crtc *crtc,
638 struct drm_display_mode *mode,
639 struct drm_display_mode *adjusted_mode,
640 int x, int y,
641 struct drm_framebuffer *old_fb);
642extern void atombios_crtc_dpms(struct drm_crtc *crtc, int mode);
643
644extern int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y,
645 struct drm_framebuffer *old_fb);
Chris Ball4dd19b02010-09-26 06:47:23 -0500646extern int radeon_crtc_set_base_atomic(struct drm_crtc *crtc,
647 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500648 int x, int y,
649 enum mode_set_atomic state);
Chris Ball4dd19b02010-09-26 06:47:23 -0500650extern int radeon_crtc_do_set_base(struct drm_crtc *crtc,
651 struct drm_framebuffer *fb,
652 int x, int y, int atomic);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200653extern int radeon_crtc_cursor_set(struct drm_crtc *crtc,
654 struct drm_file *file_priv,
655 uint32_t handle,
656 uint32_t width,
657 uint32_t height);
658extern int radeon_crtc_cursor_move(struct drm_crtc *crtc,
659 int x, int y);
660
Mario Kleinerf5a80202010-10-23 04:42:17 +0200661extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
662 int *vpos, int *hpos);
Mario Kleiner6383cf72010-10-05 19:57:36 -0400663
Alex Deucher3c537882010-02-05 04:21:19 -0500664extern bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev);
665extern struct edid *
Alex Deucherc324acd2010-12-08 22:13:06 -0500666radeon_bios_get_hardcoded_edid(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200667extern bool radeon_atom_get_clock_info(struct drm_device *dev);
668extern bool radeon_combios_get_clock_info(struct drm_device *dev);
669extern struct radeon_encoder_atom_dig *
670radeon_atombios_get_lvds_info(struct radeon_encoder *encoder);
Alex Deucherfcec5702009-11-10 21:25:07 -0500671extern bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder,
672 struct radeon_encoder_int_tmds *tmds);
673extern bool radeon_legacy_get_tmds_info_from_combios(struct radeon_encoder *encoder,
674 struct radeon_encoder_int_tmds *tmds);
675extern bool radeon_legacy_get_tmds_info_from_table(struct radeon_encoder *encoder,
676 struct radeon_encoder_int_tmds *tmds);
677extern bool radeon_legacy_get_ext_tmds_info_from_combios(struct radeon_encoder *encoder,
678 struct radeon_encoder_ext_tmds *tmds);
679extern bool radeon_legacy_get_ext_tmds_info_from_table(struct radeon_encoder *encoder,
680 struct radeon_encoder_ext_tmds *tmds);
Alex Deucher6fe7ac32009-06-12 17:26:08 +0000681extern struct radeon_encoder_primary_dac *
682radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder);
683extern struct radeon_encoder_tv_dac *
684radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200685extern struct radeon_encoder_lvds *
686radeon_combios_get_lvds_info(struct radeon_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200687extern void radeon_combios_get_ext_tmds_info(struct radeon_encoder *encoder);
688extern struct radeon_encoder_tv_dac *
689radeon_combios_get_tv_dac_info(struct radeon_encoder *encoder);
690extern struct radeon_encoder_primary_dac *
691radeon_combios_get_primary_dac_info(struct radeon_encoder *encoder);
Alex Deucherfcec5702009-11-10 21:25:07 -0500692extern bool radeon_combios_external_tmds_setup(struct drm_encoder *encoder);
693extern void radeon_external_tmds_setup(struct drm_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200694extern void radeon_combios_output_lock(struct drm_encoder *encoder, bool lock);
695extern void radeon_combios_initialize_bios_scratch_regs(struct drm_device *dev);
696extern void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock);
697extern void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev);
Yang Zhaof657c2a2009-09-15 12:21:01 +1000698extern void radeon_save_bios_scratch_regs(struct radeon_device *rdev);
699extern void radeon_restore_bios_scratch_regs(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200700extern void
701radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc);
702extern void
703radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on);
704extern void
705radeon_combios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc);
706extern void
707radeon_combios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on);
708extern void radeon_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
709 u16 blue, int regno);
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000710extern void radeon_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
711 u16 *blue, int regno);
Dave Airlieaaefcd42012-03-06 10:44:40 +0000712int radeon_framebuffer_init(struct drm_device *dev,
Dave Airlie38651672010-03-30 05:34:13 +0000713 struct radeon_framebuffer *rfb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800714 struct drm_mode_fb_cmd2 *mode_cmd,
Dave Airlie38651672010-03-30 05:34:13 +0000715 struct drm_gem_object *obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200716
717int radeonfb_remove(struct drm_device *dev, struct drm_framebuffer *fb);
718bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev);
719bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev);
720void radeon_atombios_init_crtc(struct drm_device *dev,
721 struct radeon_crtc *radeon_crtc);
722void radeon_legacy_init_crtc(struct drm_device *dev,
723 struct radeon_crtc *radeon_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200724
725void radeon_get_clock_info(struct drm_device *dev);
726
727extern bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev);
728extern bool radeon_get_atom_connector_info_from_supported_devices_table(struct drm_device *dev);
729
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200730void radeon_enc_destroy(struct drm_encoder *encoder);
731void radeon_copy_fb(struct drm_device *dev, struct drm_gem_object *dst_obj);
732void radeon_combios_asic_init(struct drm_device *dev);
Jerome Glissec93bb852009-07-13 21:04:08 +0200733bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200734 const struct drm_display_mode *mode,
Jerome Glissec93bb852009-07-13 21:04:08 +0200735 struct drm_display_mode *adjusted_mode);
Alex Deucher35153872010-04-30 12:00:44 -0400736void radeon_panel_mode_fixup(struct drm_encoder *encoder,
737 struct drm_display_mode *adjusted_mode);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000738void atom_rv515_force_tv_scaler(struct radeon_device *rdev, struct radeon_crtc *radeon_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200739
Dave Airlie4ce001a2009-08-13 16:32:14 +1000740/* legacy tv */
741void radeon_legacy_tv_adjust_crtc_reg(struct drm_encoder *encoder,
742 uint32_t *h_total_disp, uint32_t *h_sync_strt_wid,
743 uint32_t *v_total_disp, uint32_t *v_sync_strt_wid);
744void radeon_legacy_tv_adjust_pll1(struct drm_encoder *encoder,
745 uint32_t *htotal_cntl, uint32_t *ppll_ref_div,
746 uint32_t *ppll_div_3, uint32_t *pixclks_cntl);
747void radeon_legacy_tv_adjust_pll2(struct drm_encoder *encoder,
748 uint32_t *htotal2_cntl, uint32_t *p2pll_ref_div,
749 uint32_t *p2pll_div_0, uint32_t *pixclks_cntl);
750void radeon_legacy_tv_mode_set(struct drm_encoder *encoder,
751 struct drm_display_mode *mode,
752 struct drm_display_mode *adjusted_mode);
Dave Airlie38651672010-03-30 05:34:13 +0000753
754/* fbdev layer */
755int radeon_fbdev_init(struct radeon_device *rdev);
756void radeon_fbdev_fini(struct radeon_device *rdev);
757void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state);
758int radeon_fbdev_total_size(struct radeon_device *rdev);
759bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000760
761void radeon_fb_output_poll_changed(struct radeon_device *rdev);
Alex Deucher6f34be52010-11-21 10:59:01 -0500762
763void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id);
764
Dave Airlieff72145b2011-02-07 12:16:14 +1000765int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200766#endif