blob: 1ae6846de82739523258f1fe59a44b63edf12cb5 [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
33#include <drm_crtc.h>
34#include <drm_mode.h>
35#include <drm_edid.h>
Dave Airlie746c1aa2009-12-08 07:07:28 +100036#include <drm_dp_helper.h>
Ben Skeggs68adac52010-04-28 11:46:42 +100037#include <drm_fixed.h>
Jason Wessel21c74a82010-10-13 14:09:44 -050038#include <drm_crtc_helper.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020039#include <linux/i2c.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020040#include <linux/i2c-algo-bit.h>
Jerome Glissec93bb852009-07-13 21:04:08 +020041
Dave Airlie38651672010-03-30 05:34:13 +000042struct radeon_bo;
Jerome Glissec93bb852009-07-13 21:04:08 +020043struct radeon_device;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020044
45#define to_radeon_crtc(x) container_of(x, struct radeon_crtc, base)
46#define to_radeon_connector(x) container_of(x, struct radeon_connector, base)
47#define to_radeon_encoder(x) container_of(x, struct radeon_encoder, base)
48#define to_radeon_framebuffer(x) container_of(x, struct radeon_framebuffer, base)
49
Jerome Glisse771fe6b2009-06-05 14:42:42 +020050enum radeon_rmx_type {
51 RMX_OFF,
52 RMX_FULL,
53 RMX_CENTER,
54 RMX_ASPECT
55};
56
57enum radeon_tv_std {
58 TV_STD_NTSC,
59 TV_STD_PAL,
60 TV_STD_PAL_M,
61 TV_STD_PAL_60,
62 TV_STD_NTSC_J,
63 TV_STD_SCART_PAL,
64 TV_STD_SECAM,
65 TV_STD_PAL_CN,
Alex Deucherd79766f2009-12-17 19:00:29 -050066 TV_STD_PAL_N,
Jerome Glisse771fe6b2009-06-05 14:42:42 +020067};
68
Alex Deucher5b1714d2010-08-03 19:59:20 -040069enum radeon_underscan_type {
70 UNDERSCAN_OFF,
71 UNDERSCAN_ON,
72 UNDERSCAN_AUTO,
73};
74
Alex Deucher8e36ed02010-05-18 19:26:47 -040075enum radeon_hpd_id {
76 RADEON_HPD_1 = 0,
77 RADEON_HPD_2,
78 RADEON_HPD_3,
79 RADEON_HPD_4,
80 RADEON_HPD_5,
81 RADEON_HPD_6,
82 RADEON_HPD_NONE = 0xff,
83};
84
Alex Deucherf376b942010-08-05 21:21:16 -040085#define RADEON_MAX_I2C_BUS 16
86
Alex Deucher9b9fe722009-11-10 15:59:44 -050087/* radeon gpio-based i2c
88 * 1. "mask" reg and bits
89 * grabs the gpio pins for software use
90 * 0=not held 1=held
91 * 2. "a" reg and bits
92 * output pin value
93 * 0=low 1=high
94 * 3. "en" reg and bits
95 * sets the pin direction
96 * 0=input 1=output
97 * 4. "y" reg and bits
98 * input pin value
99 * 0=low 1=high
100 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200101struct radeon_i2c_bus_rec {
102 bool valid;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500103 /* id used by atom */
104 uint8_t i2c_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500105 /* id used by atom */
Alex Deucher8e36ed02010-05-18 19:26:47 -0400106 enum radeon_hpd_id hpd;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500107 /* can be used with hw i2c engine */
108 bool hw_capable;
109 /* uses multi-media i2c engine */
110 bool mm_i2c;
111 /* regs and bits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200112 uint32_t mask_clk_reg;
113 uint32_t mask_data_reg;
114 uint32_t a_clk_reg;
115 uint32_t a_data_reg;
Alex Deucher9b9fe722009-11-10 15:59:44 -0500116 uint32_t en_clk_reg;
117 uint32_t en_data_reg;
118 uint32_t y_clk_reg;
119 uint32_t y_data_reg;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200120 uint32_t mask_clk_mask;
121 uint32_t mask_data_mask;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200122 uint32_t a_clk_mask;
123 uint32_t a_data_mask;
Alex Deucher9b9fe722009-11-10 15:59:44 -0500124 uint32_t en_clk_mask;
125 uint32_t en_data_mask;
126 uint32_t y_clk_mask;
127 uint32_t y_data_mask;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200128};
129
130struct radeon_tmds_pll {
131 uint32_t freq;
132 uint32_t value;
133};
134
135#define RADEON_MAX_BIOS_CONNECTOR 16
136
Alex Deucher7c27f872010-02-02 12:05:01 -0500137/* pll flags */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200138#define RADEON_PLL_USE_BIOS_DIVS (1 << 0)
139#define RADEON_PLL_NO_ODD_POST_DIV (1 << 1)
140#define RADEON_PLL_USE_REF_DIV (1 << 2)
141#define RADEON_PLL_LEGACY (1 << 3)
142#define RADEON_PLL_PREFER_LOW_REF_DIV (1 << 4)
143#define RADEON_PLL_PREFER_HIGH_REF_DIV (1 << 5)
144#define RADEON_PLL_PREFER_LOW_FB_DIV (1 << 6)
145#define RADEON_PLL_PREFER_HIGH_FB_DIV (1 << 7)
146#define RADEON_PLL_PREFER_LOW_POST_DIV (1 << 8)
147#define RADEON_PLL_PREFER_HIGH_POST_DIV (1 << 9)
148#define RADEON_PLL_USE_FRAC_FB_DIV (1 << 10)
Alex Deucherd0e275a2009-07-13 11:08:18 -0400149#define RADEON_PLL_PREFER_CLOSEST_LOWER (1 << 11)
Alex Deucherfc103322010-01-19 17:16:10 -0500150#define RADEON_PLL_USE_POST_DIV (1 << 12)
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500151#define RADEON_PLL_IS_LCD (1 << 13)
Alex Deucherf523f742011-01-31 16:48:52 -0500152#define RADEON_PLL_PREFER_MINM_OVER_MAXP (1 << 14)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200153
154struct radeon_pll {
Alex Deucherfc103322010-01-19 17:16:10 -0500155 /* reference frequency */
156 uint32_t reference_freq;
157
158 /* fixed dividers */
159 uint32_t reference_div;
160 uint32_t post_div;
161
162 /* pll in/out limits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200163 uint32_t pll_in_min;
164 uint32_t pll_in_max;
165 uint32_t pll_out_min;
166 uint32_t pll_out_max;
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500167 uint32_t lcd_pll_out_min;
168 uint32_t lcd_pll_out_max;
Alex Deucherfc103322010-01-19 17:16:10 -0500169 uint32_t best_vco;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200170
Alex Deucherfc103322010-01-19 17:16:10 -0500171 /* divider limits */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200172 uint32_t min_ref_div;
173 uint32_t max_ref_div;
174 uint32_t min_post_div;
175 uint32_t max_post_div;
176 uint32_t min_feedback_div;
177 uint32_t max_feedback_div;
178 uint32_t min_frac_feedback_div;
179 uint32_t max_frac_feedback_div;
Alex Deucherfc103322010-01-19 17:16:10 -0500180
181 /* flags for the current clock */
182 uint32_t flags;
183
184 /* pll id */
185 uint32_t id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200186};
187
188struct radeon_i2c_chan {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200189 struct i2c_adapter adapter;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000190 struct drm_device *dev;
191 union {
Alex Deucherac1aade2010-03-14 12:22:44 -0400192 struct i2c_algo_bit_data bit;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000193 struct i2c_algo_dp_aux_data dp;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000194 } algo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200195 struct radeon_i2c_bus_rec rec;
196};
197
198/* mostly for macs, but really any system without connector tables */
199enum radeon_connector_table {
Alex Deucheraa74fbb2010-09-07 14:41:30 -0400200 CT_NONE = 0,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200201 CT_GENERIC,
202 CT_IBOOK,
203 CT_POWERBOOK_EXTERNAL,
204 CT_POWERBOOK_INTERNAL,
205 CT_POWERBOOK_VGA,
206 CT_MINI_EXTERNAL,
207 CT_MINI_INTERNAL,
208 CT_IMAC_G5_ISIGHT,
209 CT_EMAC,
Dave Airlie76a71422010-06-11 01:09:05 -0400210 CT_RN50_POWER,
Alex Deucheraa74fbb2010-09-07 14:41:30 -0400211 CT_MAC_X800,
Alex Deucher9fad3212011-02-07 13:15:28 -0500212 CT_MAC_G5_9600,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200213};
214
Alex Deucherfcec5702009-11-10 21:25:07 -0500215enum radeon_dvo_chip {
216 DVO_SIL164,
217 DVO_SIL1178,
218};
219
Dave Airlie8be48d92010-03-30 05:34:14 +0000220struct radeon_fbdev;
Dave Airlie38651672010-03-30 05:34:13 +0000221
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200222struct radeon_mode_info {
223 struct atom_context *atom_context;
Mathias Fröhlich61c4b242009-10-27 15:08:01 -0400224 struct card_info *atom_card_info;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200225 enum radeon_connector_table connector_table;
226 bool mode_config_initialized;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500227 struct radeon_crtc *crtcs[6];
Dave Airlie445282d2009-09-09 17:40:54 +1000228 /* DVI-I properties */
229 struct drm_property *coherent_mode_property;
230 /* DAC enable load detect */
231 struct drm_property *load_detect_property;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400232 /* TV standard */
Dave Airlie445282d2009-09-09 17:40:54 +1000233 struct drm_property *tv_std_property;
234 /* legacy TMDS PLL detect */
235 struct drm_property *tmds_pll_property;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400236 /* underscan */
237 struct drm_property *underscan_property;
Marius Gröger5bccf5e2010-09-21 21:30:59 +0200238 struct drm_property *underscan_hborder_property;
239 struct drm_property *underscan_vborder_property;
Alex Deucher3c537882010-02-05 04:21:19 -0500240 /* hardcoded DFP edid from BIOS */
241 struct edid *bios_hardcoded_edid;
Alex Deucherfafcf942011-03-23 08:10:10 +0000242 int bios_hardcoded_edid_size;
Dave Airlie38651672010-03-30 05:34:13 +0000243
244 /* pointer to fbdev info structure */
Dave Airlie8be48d92010-03-30 05:34:14 +0000245 struct radeon_fbdev *rfbdev;
Jerome Glissec93bb852009-07-13 21:04:08 +0200246};
247
Dave Airlie4ce001a2009-08-13 16:32:14 +1000248#define MAX_H_CODE_TIMING_LEN 32
249#define MAX_V_CODE_TIMING_LEN 32
250
251/* need to store these as reading
252 back code tables is excessive */
253struct radeon_tv_regs {
254 uint32_t tv_uv_adr;
255 uint32_t timing_cntl;
256 uint32_t hrestart;
257 uint32_t vrestart;
258 uint32_t frestart;
259 uint16_t h_code_timing[MAX_H_CODE_TIMING_LEN];
260 uint16_t v_code_timing[MAX_V_CODE_TIMING_LEN];
261};
262
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200263struct radeon_crtc {
264 struct drm_crtc base;
265 int crtc_id;
266 u16 lut_r[256], lut_g[256], lut_b[256];
267 bool enabled;
268 bool can_tile;
269 uint32_t crtc_offset;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200270 struct drm_gem_object *cursor_bo;
271 uint64_t cursor_addr;
272 int cursor_width;
273 int cursor_height;
Dave Airlie41623382009-07-09 15:04:19 +1000274 uint32_t legacy_display_base_addr;
Alex Deucherc836e862009-07-13 13:51:03 -0400275 uint32_t legacy_cursor_offset;
Jerome Glissec93bb852009-07-13 21:04:08 +0200276 enum radeon_rmx_type rmx_type;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400277 u8 h_border;
278 u8 v_border;
Jerome Glissec93bb852009-07-13 21:04:08 +0200279 fixed20_12 vsc;
280 fixed20_12 hsc;
Alex Deucherde2103e2009-10-09 15:14:30 -0400281 struct drm_display_mode native_mode;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500282 int pll_id;
Alex Deucher6f34be52010-11-21 10:59:01 -0500283 /* page flipping */
284 struct radeon_unpin_work *unpin_work;
285 int deferred_flip_completion;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200286};
287
288struct radeon_encoder_primary_dac {
289 /* legacy primary dac */
290 uint32_t ps2_pdac_adj;
291};
292
293struct radeon_encoder_lvds {
294 /* legacy lvds */
295 uint16_t panel_vcc_delay;
296 uint8_t panel_pwr_delay;
297 uint8_t panel_digon_delay;
298 uint8_t panel_blon_delay;
299 uint16_t panel_ref_divider;
300 uint8_t panel_post_divider;
301 uint16_t panel_fb_divider;
302 bool use_bios_dividers;
303 uint32_t lvds_gen_cntl;
304 /* panel mode */
Alex Deucherde2103e2009-10-09 15:14:30 -0400305 struct drm_display_mode native_mode;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200306};
307
308struct radeon_encoder_tv_dac {
309 /* legacy tv dac */
310 uint32_t ps2_tvdac_adj;
311 uint32_t ntsc_tvdac_adj;
312 uint32_t pal_tvdac_adj;
313
Dave Airlie4ce001a2009-08-13 16:32:14 +1000314 int h_pos;
315 int v_pos;
316 int h_size;
317 int supported_tv_stds;
318 bool tv_on;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200319 enum radeon_tv_std tv_std;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000320 struct radeon_tv_regs tv;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200321};
322
323struct radeon_encoder_int_tmds {
324 /* legacy int tmds */
325 struct radeon_tmds_pll tmds_pll[4];
326};
327
Alex Deucherfcec5702009-11-10 21:25:07 -0500328struct radeon_encoder_ext_tmds {
329 /* tmds over dvo */
330 struct radeon_i2c_chan *i2c_bus;
331 uint8_t slave_addr;
332 enum radeon_dvo_chip dvo_chip;
333};
334
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400335/* spread spectrum */
336struct radeon_atom_ss {
337 uint16_t percentage;
338 uint8_t type;
Alex Deucherba032a52010-10-04 17:13:01 -0400339 uint16_t step;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400340 uint8_t delay;
341 uint8_t range;
342 uint8_t refdiv;
Alex Deucherba032a52010-10-04 17:13:01 -0400343 /* asic_ss */
344 uint16_t rate;
345 uint16_t amount;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400346};
347
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200348struct radeon_encoder_atom_dig {
Alex Deucher5137ee92010-08-12 18:58:47 -0400349 bool linkb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200350 /* atom dig */
351 bool coherent_mode;
Alex Deucherba032a52010-10-04 17:13:01 -0400352 int dig_encoder; /* -1 disabled, 0 DIGA, 1 DIGB, etc. */
353 /* atom lvds/edp */
354 uint32_t lcd_misc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200355 uint16_t panel_pwr_delay;
Alex Deucherba032a52010-10-04 17:13:01 -0400356 uint32_t lcd_ss_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357 /* panel mode */
Alex Deucherde2103e2009-10-09 15:14:30 -0400358 struct drm_display_mode native_mode;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200359};
360
Dave Airlie4ce001a2009-08-13 16:32:14 +1000361struct radeon_encoder_atom_dac {
362 enum radeon_tv_std tv_std;
363};
364
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200365struct radeon_encoder {
366 struct drm_encoder base;
Alex Deucher5137ee92010-08-12 18:58:47 -0400367 uint32_t encoder_enum;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200368 uint32_t encoder_id;
369 uint32_t devices;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000370 uint32_t active_device;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200371 uint32_t flags;
372 uint32_t pixel_clock;
373 enum radeon_rmx_type rmx_type;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400374 enum radeon_underscan_type underscan_type;
Marius Gröger5bccf5e2010-09-21 21:30:59 +0200375 uint32_t underscan_hborder;
376 uint32_t underscan_vborder;
Alex Deucherde2103e2009-10-09 15:14:30 -0400377 struct drm_display_mode native_mode;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200378 void *enc_priv;
Christian König58bd0862010-04-05 22:14:55 +0200379 int audio_polling_active;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200380 int hdmi_offset;
Rafał Miłecki808032e2010-03-06 13:03:33 +0000381 int hdmi_config_offset;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200382 int hdmi_audio_workaround;
383 int hdmi_buffer_status;
Alex Deucher3e4b9982010-11-16 12:09:42 -0500384 bool is_ext_encoder;
Alex Deucher36868bd2011-01-06 21:19:21 -0500385 u16 caps;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200386};
387
388struct radeon_connector_atom_dig {
389 uint32_t igp_lane_info;
Alex Deucher4143e912009-11-23 18:02:35 -0500390 /* displayport */
Dave Airlie746c1aa2009-12-08 07:07:28 +1000391 struct radeon_i2c_chan *dp_i2c_bus;
Alex Deucher1a66c952009-11-20 19:40:13 -0500392 u8 dpcd[8];
Alex Deucher4143e912009-11-23 18:02:35 -0500393 u8 dp_sink_type;
Alex Deucher5801ead2009-11-24 13:32:59 -0500394 int dp_clock;
395 int dp_lane_count;
Alex Deucher8b834852010-11-17 02:54:42 -0500396 bool edp_on;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200397};
398
Alex Deuchereed45b32009-12-04 14:45:27 -0500399struct radeon_gpio_rec {
400 bool valid;
401 u8 id;
402 u32 reg;
403 u32 mask;
404};
405
Alex Deuchereed45b32009-12-04 14:45:27 -0500406struct radeon_hpd {
407 enum radeon_hpd_id hpd;
408 u8 plugged_state;
409 struct radeon_gpio_rec gpio;
410};
411
Alex Deucher26b5bc92010-08-05 21:21:18 -0400412struct radeon_router {
Alex Deucher26b5bc92010-08-05 21:21:18 -0400413 u32 router_id;
414 struct radeon_i2c_bus_rec i2c_info;
415 u8 i2c_addr;
Alex Deucherfb939df2010-11-08 16:08:29 +0000416 /* i2c mux */
417 bool ddc_valid;
418 u8 ddc_mux_type;
419 u8 ddc_mux_control_pin;
420 u8 ddc_mux_state;
421 /* clock/data mux */
422 bool cd_valid;
423 u8 cd_mux_type;
424 u8 cd_mux_control_pin;
425 u8 cd_mux_state;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400426};
427
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200428struct radeon_connector {
429 struct drm_connector base;
430 uint32_t connector_id;
431 uint32_t devices;
432 struct radeon_i2c_chan *ddc_bus;
Alex Deucher5b1714d2010-08-03 19:59:20 -0400433 /* some systems have an hdmi and vga port with a shared ddc line */
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400434 bool shared_ddc;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000435 bool use_digital;
436 /* we need to mind the EDID between detect
437 and get modes due to analog/digital/tvencoder */
438 struct edid *edid;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200439 void *con_priv;
Dave Airlie445282d2009-09-09 17:40:54 +1000440 bool dac_load_detect;
Alex Deucherb75fad02009-11-05 13:16:01 -0500441 uint16_t connector_object_id;
Alex Deuchereed45b32009-12-04 14:45:27 -0500442 struct radeon_hpd hpd;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400443 struct radeon_router router;
444 struct radeon_i2c_chan *router_bus;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200445};
446
447struct radeon_framebuffer {
448 struct drm_framebuffer base;
449 struct drm_gem_object *obj;
450};
451
Mario Kleiner6383cf72010-10-05 19:57:36 -0400452
Alex Deucherd79766f2009-12-17 19:00:29 -0500453extern enum radeon_tv_std
454radeon_combios_get_tv_info(struct radeon_device *rdev);
455extern enum radeon_tv_std
456radeon_atombios_get_tv_info(struct radeon_device *rdev);
457
Alex Deucher5b1714d2010-08-03 19:59:20 -0400458extern struct drm_connector *
459radeon_get_connector_for_encoder(struct drm_encoder *encoder);
460
Alex Deucherd4877cf2009-12-04 16:56:37 -0500461extern void radeon_connector_hotplug(struct drm_connector *connector);
462extern bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector);
Alex Deucher5801ead2009-11-24 13:32:59 -0500463extern int radeon_dp_mode_valid_helper(struct radeon_connector *radeon_connector,
464 struct drm_display_mode *mode);
465extern void radeon_dp_set_link_config(struct drm_connector *connector,
466 struct drm_display_mode *mode);
467extern void dp_link_train(struct drm_encoder *encoder,
468 struct drm_connector *connector);
Alex Deucher4143e912009-11-23 18:02:35 -0500469extern u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector);
Alex Deucher9fa05c92009-11-27 13:01:46 -0500470extern bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500471extern void atombios_dig_encoder_setup(struct drm_encoder *encoder, int action);
Alex Deucher5801ead2009-11-24 13:32:59 -0500472extern void atombios_dig_transmitter_setup(struct drm_encoder *encoder,
473 int action, uint8_t lane_num,
474 uint8_t lane_set);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000475extern int radeon_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode,
476 uint8_t write_byte, uint8_t *read_byte);
477
Alex Deucherf376b942010-08-05 21:21:16 -0400478extern void radeon_i2c_init(struct radeon_device *rdev);
479extern void radeon_i2c_fini(struct radeon_device *rdev);
480extern void radeon_combios_i2c_init(struct radeon_device *rdev);
481extern void radeon_atombios_i2c_init(struct radeon_device *rdev);
482extern void radeon_i2c_add(struct radeon_device *rdev,
483 struct radeon_i2c_bus_rec *rec,
484 const char *name);
485extern struct radeon_i2c_chan *radeon_i2c_lookup(struct radeon_device *rdev,
486 struct radeon_i2c_bus_rec *i2c_bus);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000487extern struct radeon_i2c_chan *radeon_i2c_create_dp(struct drm_device *dev,
Alex Deucher6a93cb22009-11-23 17:39:28 -0500488 struct radeon_i2c_bus_rec *rec,
489 const char *name);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200490extern struct radeon_i2c_chan *radeon_i2c_create(struct drm_device *dev,
491 struct radeon_i2c_bus_rec *rec,
492 const char *name);
493extern void radeon_i2c_destroy(struct radeon_i2c_chan *i2c);
Alex Deucher5a6f98f2009-12-22 15:04:48 -0500494extern void radeon_i2c_get_byte(struct radeon_i2c_chan *i2c_bus,
495 u8 slave_addr,
496 u8 addr,
497 u8 *val);
498extern void radeon_i2c_put_byte(struct radeon_i2c_chan *i2c,
499 u8 slave_addr,
500 u8 addr,
501 u8 val);
Alex Deucherfb939df2010-11-08 16:08:29 +0000502extern void radeon_router_select_ddc_port(struct radeon_connector *radeon_connector);
503extern void radeon_router_select_cd_port(struct radeon_connector *radeon_connector);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200504extern bool radeon_ddc_probe(struct radeon_connector *radeon_connector);
505extern int radeon_ddc_get_modes(struct radeon_connector *radeon_connector);
506
507extern struct drm_encoder *radeon_best_encoder(struct drm_connector *connector);
508
Alex Deucherba032a52010-10-04 17:13:01 -0400509extern bool radeon_atombios_get_ppll_ss_info(struct radeon_device *rdev,
510 struct radeon_atom_ss *ss,
511 int id);
512extern bool radeon_atombios_get_asic_ss_info(struct radeon_device *rdev,
513 struct radeon_atom_ss *ss,
514 int id, u32 clock);
515
Alex Deucherf523f742011-01-31 16:48:52 -0500516extern void radeon_compute_pll_legacy(struct radeon_pll *pll,
517 uint64_t freq,
518 uint32_t *dot_clock_p,
519 uint32_t *fb_div_p,
520 uint32_t *frac_fb_div_p,
521 uint32_t *ref_div_p,
522 uint32_t *post_div_p);
523
524extern void radeon_compute_pll_avivo(struct radeon_pll *pll,
525 u32 freq,
526 u32 *dot_clock_p,
527 u32 *fb_div_p,
528 u32 *frac_fb_div_p,
529 u32 *ref_div_p,
530 u32 *post_div_p);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200531
Dave Airlie1f3b6a42009-10-13 14:10:37 +1000532extern void radeon_setup_encoder_clones(struct drm_device *dev);
533
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200534struct drm_encoder *radeon_encoder_legacy_lvds_add(struct drm_device *dev, int bios_index);
535struct drm_encoder *radeon_encoder_legacy_primary_dac_add(struct drm_device *dev, int bios_index, int with_tv);
536struct drm_encoder *radeon_encoder_legacy_tv_dac_add(struct drm_device *dev, int bios_index, int with_tv);
537struct drm_encoder *radeon_encoder_legacy_tmds_int_add(struct drm_device *dev, int bios_index);
538struct drm_encoder *radeon_encoder_legacy_tmds_ext_add(struct drm_device *dev, int bios_index);
Alex Deucher99999aa2010-11-16 12:09:41 -0500539extern void atombios_dvo_setup(struct drm_encoder *encoder, int action);
Alex Deucher32f48ff2009-11-30 01:54:16 -0500540extern void atombios_digital_setup(struct drm_encoder *encoder, int action);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200541extern int atombios_get_encoder_mode(struct drm_encoder *encoder);
Alex Deucher8b834852010-11-17 02:54:42 -0500542extern void atombios_set_edp_panel_power(struct drm_connector *connector, int action);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000543extern void radeon_encoder_set_active_device(struct drm_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200544
545extern void radeon_crtc_load_lut(struct drm_crtc *crtc);
546extern int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
547 struct drm_framebuffer *old_fb);
Chris Ball4dd19b02010-09-26 06:47:23 -0500548extern int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
549 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500550 int x, int y,
551 enum mode_set_atomic state);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200552extern int atombios_crtc_mode_set(struct drm_crtc *crtc,
553 struct drm_display_mode *mode,
554 struct drm_display_mode *adjusted_mode,
555 int x, int y,
556 struct drm_framebuffer *old_fb);
557extern void atombios_crtc_dpms(struct drm_crtc *crtc, int mode);
558
559extern int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y,
560 struct drm_framebuffer *old_fb);
Chris Ball4dd19b02010-09-26 06:47:23 -0500561extern int radeon_crtc_set_base_atomic(struct drm_crtc *crtc,
562 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500563 int x, int y,
564 enum mode_set_atomic state);
Chris Ball4dd19b02010-09-26 06:47:23 -0500565extern int radeon_crtc_do_set_base(struct drm_crtc *crtc,
566 struct drm_framebuffer *fb,
567 int x, int y, int atomic);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200568extern int radeon_crtc_cursor_set(struct drm_crtc *crtc,
569 struct drm_file *file_priv,
570 uint32_t handle,
571 uint32_t width,
572 uint32_t height);
573extern int radeon_crtc_cursor_move(struct drm_crtc *crtc,
574 int x, int y);
575
Mario Kleinerf5a80202010-10-23 04:42:17 +0200576extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
577 int *vpos, int *hpos);
Mario Kleiner6383cf72010-10-05 19:57:36 -0400578
Alex Deucher3c537882010-02-05 04:21:19 -0500579extern bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev);
580extern struct edid *
Alex Deucherc324acd2010-12-08 22:13:06 -0500581radeon_bios_get_hardcoded_edid(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200582extern bool radeon_atom_get_clock_info(struct drm_device *dev);
583extern bool radeon_combios_get_clock_info(struct drm_device *dev);
584extern struct radeon_encoder_atom_dig *
585radeon_atombios_get_lvds_info(struct radeon_encoder *encoder);
Alex Deucherfcec5702009-11-10 21:25:07 -0500586extern bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder,
587 struct radeon_encoder_int_tmds *tmds);
588extern bool radeon_legacy_get_tmds_info_from_combios(struct radeon_encoder *encoder,
589 struct radeon_encoder_int_tmds *tmds);
590extern bool radeon_legacy_get_tmds_info_from_table(struct radeon_encoder *encoder,
591 struct radeon_encoder_int_tmds *tmds);
592extern bool radeon_legacy_get_ext_tmds_info_from_combios(struct radeon_encoder *encoder,
593 struct radeon_encoder_ext_tmds *tmds);
594extern bool radeon_legacy_get_ext_tmds_info_from_table(struct radeon_encoder *encoder,
595 struct radeon_encoder_ext_tmds *tmds);
Alex Deucher6fe7ac32009-06-12 17:26:08 +0000596extern struct radeon_encoder_primary_dac *
597radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder);
598extern struct radeon_encoder_tv_dac *
599radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200600extern struct radeon_encoder_lvds *
601radeon_combios_get_lvds_info(struct radeon_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200602extern void radeon_combios_get_ext_tmds_info(struct radeon_encoder *encoder);
603extern struct radeon_encoder_tv_dac *
604radeon_combios_get_tv_dac_info(struct radeon_encoder *encoder);
605extern struct radeon_encoder_primary_dac *
606radeon_combios_get_primary_dac_info(struct radeon_encoder *encoder);
Alex Deucherfcec5702009-11-10 21:25:07 -0500607extern bool radeon_combios_external_tmds_setup(struct drm_encoder *encoder);
608extern void radeon_external_tmds_setup(struct drm_encoder *encoder);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200609extern void radeon_combios_output_lock(struct drm_encoder *encoder, bool lock);
610extern void radeon_combios_initialize_bios_scratch_regs(struct drm_device *dev);
611extern void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock);
612extern void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev);
Yang Zhaof657c2a2009-09-15 12:21:01 +1000613extern void radeon_save_bios_scratch_regs(struct radeon_device *rdev);
614extern void radeon_restore_bios_scratch_regs(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200615extern void
616radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc);
617extern void
618radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on);
619extern void
620radeon_combios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc);
621extern void
622radeon_combios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on);
623extern void radeon_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
624 u16 blue, int regno);
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000625extern void radeon_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
626 u16 *blue, int regno);
Dave Airlie38651672010-03-30 05:34:13 +0000627void radeon_framebuffer_init(struct drm_device *dev,
628 struct radeon_framebuffer *rfb,
629 struct drm_mode_fb_cmd *mode_cmd,
630 struct drm_gem_object *obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200631
632int radeonfb_remove(struct drm_device *dev, struct drm_framebuffer *fb);
633bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev);
634bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev);
635void radeon_atombios_init_crtc(struct drm_device *dev,
636 struct radeon_crtc *radeon_crtc);
637void radeon_legacy_init_crtc(struct drm_device *dev,
638 struct radeon_crtc *radeon_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200639
640void radeon_get_clock_info(struct drm_device *dev);
641
642extern bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev);
643extern bool radeon_get_atom_connector_info_from_supported_devices_table(struct drm_device *dev);
644
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200645void radeon_enc_destroy(struct drm_encoder *encoder);
646void radeon_copy_fb(struct drm_device *dev, struct drm_gem_object *dst_obj);
647void radeon_combios_asic_init(struct drm_device *dev);
Jerome Glissec93bb852009-07-13 21:04:08 +0200648bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
649 struct drm_display_mode *mode,
650 struct drm_display_mode *adjusted_mode);
Alex Deucher35153872010-04-30 12:00:44 -0400651void radeon_panel_mode_fixup(struct drm_encoder *encoder,
652 struct drm_display_mode *adjusted_mode);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000653void atom_rv515_force_tv_scaler(struct radeon_device *rdev, struct radeon_crtc *radeon_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200654
Dave Airlie4ce001a2009-08-13 16:32:14 +1000655/* legacy tv */
656void radeon_legacy_tv_adjust_crtc_reg(struct drm_encoder *encoder,
657 uint32_t *h_total_disp, uint32_t *h_sync_strt_wid,
658 uint32_t *v_total_disp, uint32_t *v_sync_strt_wid);
659void radeon_legacy_tv_adjust_pll1(struct drm_encoder *encoder,
660 uint32_t *htotal_cntl, uint32_t *ppll_ref_div,
661 uint32_t *ppll_div_3, uint32_t *pixclks_cntl);
662void radeon_legacy_tv_adjust_pll2(struct drm_encoder *encoder,
663 uint32_t *htotal2_cntl, uint32_t *p2pll_ref_div,
664 uint32_t *p2pll_div_0, uint32_t *pixclks_cntl);
665void radeon_legacy_tv_mode_set(struct drm_encoder *encoder,
666 struct drm_display_mode *mode,
667 struct drm_display_mode *adjusted_mode);
Dave Airlie38651672010-03-30 05:34:13 +0000668
669/* fbdev layer */
670int radeon_fbdev_init(struct radeon_device *rdev);
671void radeon_fbdev_fini(struct radeon_device *rdev);
672void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state);
673int radeon_fbdev_total_size(struct radeon_device *rdev);
674bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000675
676void radeon_fb_output_poll_changed(struct radeon_device *rdev);
Alex Deucher6f34be52010-11-21 10:59:01 -0500677
678void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id);
679
Dave Airlieff72145b2011-02-07 12:16:14 +1000680int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200681#endif