2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
23 * Authors: Dave Airlie
27 #include "radeon_drm.h"
31 #include <asm/div64.h>
33 #include "drm_crtc_helper.h"
36 static int radeon_ddc_dump(struct drm_connector
*connector
);
38 static void avivo_crtc_load_lut(struct drm_crtc
*crtc
)
40 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
41 struct drm_device
*dev
= crtc
->dev
;
42 struct radeon_device
*rdev
= dev
->dev_private
;
45 DRM_DEBUG("%d\n", radeon_crtc
->crtc_id
);
46 WREG32(AVIVO_DC_LUTA_CONTROL
+ radeon_crtc
->crtc_offset
, 0);
48 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_BLUE
+ radeon_crtc
->crtc_offset
, 0);
49 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_GREEN
+ radeon_crtc
->crtc_offset
, 0);
50 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_RED
+ radeon_crtc
->crtc_offset
, 0);
52 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_BLUE
+ radeon_crtc
->crtc_offset
, 0xffff);
53 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_GREEN
+ radeon_crtc
->crtc_offset
, 0xffff);
54 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_RED
+ radeon_crtc
->crtc_offset
, 0xffff);
56 WREG32(AVIVO_DC_LUT_RW_SELECT
, radeon_crtc
->crtc_id
);
57 WREG32(AVIVO_DC_LUT_RW_MODE
, 0);
58 WREG32(AVIVO_DC_LUT_WRITE_EN_MASK
, 0x0000003f);
60 WREG8(AVIVO_DC_LUT_RW_INDEX
, 0);
61 for (i
= 0; i
< 256; i
++) {
62 WREG32(AVIVO_DC_LUT_30_COLOR
,
63 (radeon_crtc
->lut_r
[i
] << 20) |
64 (radeon_crtc
->lut_g
[i
] << 10) |
65 (radeon_crtc
->lut_b
[i
] << 0));
68 WREG32(AVIVO_D1GRPH_LUT_SEL
+ radeon_crtc
->crtc_offset
, radeon_crtc
->crtc_id
);
71 static void legacy_crtc_load_lut(struct drm_crtc
*crtc
)
73 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
74 struct drm_device
*dev
= crtc
->dev
;
75 struct radeon_device
*rdev
= dev
->dev_private
;
79 dac2_cntl
= RREG32(RADEON_DAC_CNTL2
);
80 if (radeon_crtc
->crtc_id
== 0)
81 dac2_cntl
&= (uint32_t)~RADEON_DAC2_PALETTE_ACC_CTL
;
83 dac2_cntl
|= RADEON_DAC2_PALETTE_ACC_CTL
;
84 WREG32(RADEON_DAC_CNTL2
, dac2_cntl
);
86 WREG8(RADEON_PALETTE_INDEX
, 0);
87 for (i
= 0; i
< 256; i
++) {
88 WREG32(RADEON_PALETTE_30_DATA
,
89 (radeon_crtc
->lut_r
[i
] << 20) |
90 (radeon_crtc
->lut_g
[i
] << 10) |
91 (radeon_crtc
->lut_b
[i
] << 0));
95 void radeon_crtc_load_lut(struct drm_crtc
*crtc
)
97 struct drm_device
*dev
= crtc
->dev
;
98 struct radeon_device
*rdev
= dev
->dev_private
;
103 if (ASIC_IS_AVIVO(rdev
))
104 avivo_crtc_load_lut(crtc
);
106 legacy_crtc_load_lut(crtc
);
109 /** Sets the color ramps on behalf of RandR */
110 void radeon_crtc_fb_gamma_set(struct drm_crtc
*crtc
, u16 red
, u16 green
,
113 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
116 DRM_DEBUG("gamma set %d\n", radeon_crtc
->crtc_id
);
117 radeon_crtc
->lut_r
[regno
] = red
>> 6;
118 radeon_crtc
->lut_g
[regno
] = green
>> 6;
119 radeon_crtc
->lut_b
[regno
] = blue
>> 6;
122 static void radeon_crtc_gamma_set(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
123 u16
*blue
, uint32_t size
)
125 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
131 if (crtc
->fb
== NULL
) {
135 if (crtc
->fb
->depth
== 16) {
136 for (i
= 0; i
< 64; i
++) {
138 for (j
= 0; j
< 8; j
++) {
139 radeon_crtc
->lut_r
[i
* 8 + j
] = red
[i
] >> 6;
140 radeon_crtc
->lut_b
[i
* 8 + j
] = blue
[i
] >> 6;
143 for (j
= 0; j
< 4; j
++)
144 radeon_crtc
->lut_g
[i
* 4 + j
] = green
[i
] >> 6;
147 for (i
= 0; i
< 256; i
++) {
148 radeon_crtc
->lut_r
[i
] = red
[i
] >> 6;
149 radeon_crtc
->lut_g
[i
] = green
[i
] >> 6;
150 radeon_crtc
->lut_b
[i
] = blue
[i
] >> 6;
154 radeon_crtc_load_lut(crtc
);
157 static void radeon_crtc_destroy(struct drm_crtc
*crtc
)
159 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
161 if (radeon_crtc
->mode_set
.mode
) {
162 drm_mode_destroy(crtc
->dev
, radeon_crtc
->mode_set
.mode
);
164 drm_crtc_cleanup(crtc
);
168 static const struct drm_crtc_funcs radeon_crtc_funcs
= {
169 .cursor_set
= radeon_crtc_cursor_set
,
170 .cursor_move
= radeon_crtc_cursor_move
,
171 .gamma_set
= radeon_crtc_gamma_set
,
172 .set_config
= drm_crtc_helper_set_config
,
173 .destroy
= radeon_crtc_destroy
,
176 static void radeon_crtc_init(struct drm_device
*dev
, int index
)
178 struct radeon_device
*rdev
= dev
->dev_private
;
179 struct radeon_crtc
*radeon_crtc
;
182 radeon_crtc
= kzalloc(sizeof(struct radeon_crtc
) + (RADEONFB_CONN_LIMIT
* sizeof(struct drm_connector
*)), GFP_KERNEL
);
183 if (radeon_crtc
== NULL
)
186 drm_crtc_init(dev
, &radeon_crtc
->base
, &radeon_crtc_funcs
);
188 drm_mode_crtc_set_gamma_size(&radeon_crtc
->base
, 256);
189 radeon_crtc
->crtc_id
= index
;
190 rdev
->mode_info
.crtcs
[index
] = radeon_crtc
;
192 radeon_crtc
->mode_set
.crtc
= &radeon_crtc
->base
;
193 radeon_crtc
->mode_set
.connectors
= (struct drm_connector
**)(radeon_crtc
+ 1);
194 radeon_crtc
->mode_set
.num_connectors
= 0;
196 for (i
= 0; i
< 256; i
++) {
197 radeon_crtc
->lut_r
[i
] = i
<< 2;
198 radeon_crtc
->lut_g
[i
] = i
<< 2;
199 radeon_crtc
->lut_b
[i
] = i
<< 2;
202 if (rdev
->is_atom_bios
&& (ASIC_IS_AVIVO(rdev
) || radeon_r4xx_atom
))
203 radeon_atombios_init_crtc(dev
, radeon_crtc
);
205 radeon_legacy_init_crtc(dev
, radeon_crtc
);
208 static const char *encoder_names
[34] = {
228 "INTERNAL_KLDSCP_TMDS1",
229 "INTERNAL_KLDSCP_DVO1",
230 "INTERNAL_KLDSCP_DAC1",
231 "INTERNAL_KLDSCP_DAC2",
240 "INTERNAL_KLDSCP_LVTMA",
245 static const char *connector_names
[13] = {
261 static void radeon_print_display_setup(struct drm_device
*dev
)
263 struct drm_connector
*connector
;
264 struct radeon_connector
*radeon_connector
;
265 struct drm_encoder
*encoder
;
266 struct radeon_encoder
*radeon_encoder
;
270 DRM_INFO("Radeon Display Connectors\n");
271 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
272 radeon_connector
= to_radeon_connector(connector
);
273 DRM_INFO("Connector %d:\n", i
);
274 DRM_INFO(" %s\n", connector_names
[connector
->connector_type
]);
275 if (radeon_connector
->ddc_bus
)
276 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
277 radeon_connector
->ddc_bus
->rec
.mask_clk_reg
,
278 radeon_connector
->ddc_bus
->rec
.mask_data_reg
,
279 radeon_connector
->ddc_bus
->rec
.a_clk_reg
,
280 radeon_connector
->ddc_bus
->rec
.a_data_reg
,
281 radeon_connector
->ddc_bus
->rec
.put_clk_reg
,
282 radeon_connector
->ddc_bus
->rec
.put_data_reg
,
283 radeon_connector
->ddc_bus
->rec
.get_clk_reg
,
284 radeon_connector
->ddc_bus
->rec
.get_data_reg
);
285 DRM_INFO(" Encoders:\n");
286 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
287 radeon_encoder
= to_radeon_encoder(encoder
);
288 devices
= radeon_encoder
->devices
& radeon_connector
->devices
;
290 if (devices
& ATOM_DEVICE_CRT1_SUPPORT
)
291 DRM_INFO(" CRT1: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
292 if (devices
& ATOM_DEVICE_CRT2_SUPPORT
)
293 DRM_INFO(" CRT2: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
294 if (devices
& ATOM_DEVICE_LCD1_SUPPORT
)
295 DRM_INFO(" LCD1: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
296 if (devices
& ATOM_DEVICE_DFP1_SUPPORT
)
297 DRM_INFO(" DFP1: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
298 if (devices
& ATOM_DEVICE_DFP2_SUPPORT
)
299 DRM_INFO(" DFP2: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
300 if (devices
& ATOM_DEVICE_DFP3_SUPPORT
)
301 DRM_INFO(" DFP3: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
302 if (devices
& ATOM_DEVICE_DFP4_SUPPORT
)
303 DRM_INFO(" DFP4: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
304 if (devices
& ATOM_DEVICE_DFP5_SUPPORT
)
305 DRM_INFO(" DFP5: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
306 if (devices
& ATOM_DEVICE_TV1_SUPPORT
)
307 DRM_INFO(" TV1: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
308 if (devices
& ATOM_DEVICE_CV_SUPPORT
)
309 DRM_INFO(" CV: %s\n", encoder_names
[radeon_encoder
->encoder_id
]);
316 bool radeon_setup_enc_conn(struct drm_device
*dev
)
318 struct radeon_device
*rdev
= dev
->dev_private
;
319 struct drm_connector
*drm_connector
;
323 if (rdev
->is_atom_bios
) {
324 if (rdev
->family
>= CHIP_R600
)
325 ret
= radeon_get_atom_connector_info_from_object_table(dev
);
327 ret
= radeon_get_atom_connector_info_from_supported_devices_table(dev
);
329 ret
= radeon_get_legacy_connector_info_from_bios(dev
);
331 if (!ASIC_IS_AVIVO(rdev
))
332 ret
= radeon_get_legacy_connector_info_from_table(dev
);
335 radeon_print_display_setup(dev
);
336 list_for_each_entry(drm_connector
, &dev
->mode_config
.connector_list
, head
)
337 radeon_ddc_dump(drm_connector
);
343 int radeon_ddc_get_modes(struct radeon_connector
*radeon_connector
)
348 if (!radeon_connector
->ddc_bus
)
350 radeon_i2c_do_lock(radeon_connector
, 1);
351 edid
= drm_get_edid(&radeon_connector
->base
, &radeon_connector
->ddc_bus
->adapter
);
352 radeon_i2c_do_lock(radeon_connector
, 0);
354 /* update digital bits here */
355 if (edid
->input
& DRM_EDID_INPUT_DIGITAL
)
356 radeon_connector
->use_digital
= 1;
358 radeon_connector
->use_digital
= 0;
359 drm_mode_connector_update_edid_property(&radeon_connector
->base
, edid
);
360 ret
= drm_add_edid_modes(&radeon_connector
->base
, edid
);
364 drm_mode_connector_update_edid_property(&radeon_connector
->base
, NULL
);
368 static int radeon_ddc_dump(struct drm_connector
*connector
)
371 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
374 if (!radeon_connector
->ddc_bus
)
376 radeon_i2c_do_lock(radeon_connector
, 1);
377 edid
= drm_get_edid(connector
, &radeon_connector
->ddc_bus
->adapter
);
378 radeon_i2c_do_lock(radeon_connector
, 0);
385 static inline uint32_t radeon_div(uint64_t n
, uint32_t d
)
395 void radeon_compute_pll(struct radeon_pll
*pll
,
397 uint32_t *dot_clock_p
,
399 uint32_t *frac_fb_div_p
,
401 uint32_t *post_div_p
,
404 uint32_t min_ref_div
= pll
->min_ref_div
;
405 uint32_t max_ref_div
= pll
->max_ref_div
;
406 uint32_t min_fractional_feed_div
= 0;
407 uint32_t max_fractional_feed_div
= 0;
408 uint32_t best_vco
= pll
->best_vco
;
409 uint32_t best_post_div
= 1;
410 uint32_t best_ref_div
= 1;
411 uint32_t best_feedback_div
= 1;
412 uint32_t best_frac_feedback_div
= 0;
413 uint32_t best_freq
= -1;
414 uint32_t best_error
= 0xffffffff;
415 uint32_t best_vco_diff
= 1;
418 DRM_DEBUG("PLL freq %llu %u %u\n", freq
, pll
->min_ref_div
, pll
->max_ref_div
);
421 if (flags
& RADEON_PLL_USE_REF_DIV
)
422 min_ref_div
= max_ref_div
= pll
->reference_div
;
424 while (min_ref_div
< max_ref_div
-1) {
425 uint32_t mid
= (min_ref_div
+ max_ref_div
) / 2;
426 uint32_t pll_in
= pll
->reference_freq
/ mid
;
427 if (pll_in
< pll
->pll_in_min
)
429 else if (pll_in
> pll
->pll_in_max
)
436 if (flags
& RADEON_PLL_USE_FRAC_FB_DIV
) {
437 min_fractional_feed_div
= pll
->min_frac_feedback_div
;
438 max_fractional_feed_div
= pll
->max_frac_feedback_div
;
441 for (post_div
= pll
->min_post_div
; post_div
<= pll
->max_post_div
; ++post_div
) {
444 if ((flags
& RADEON_PLL_NO_ODD_POST_DIV
) && (post_div
& 1))
447 /* legacy radeons only have a few post_divs */
448 if (flags
& RADEON_PLL_LEGACY
) {
449 if ((post_div
== 5) ||
460 for (ref_div
= min_ref_div
; ref_div
<= max_ref_div
; ++ref_div
) {
461 uint32_t feedback_div
, current_freq
= 0, error
, vco_diff
;
462 uint32_t pll_in
= pll
->reference_freq
/ ref_div
;
463 uint32_t min_feed_div
= pll
->min_feedback_div
;
464 uint32_t max_feed_div
= pll
->max_feedback_div
+ 1;
466 if (pll_in
< pll
->pll_in_min
|| pll_in
> pll
->pll_in_max
)
469 while (min_feed_div
< max_feed_div
) {
471 uint32_t min_frac_feed_div
= min_fractional_feed_div
;
472 uint32_t max_frac_feed_div
= max_fractional_feed_div
+ 1;
473 uint32_t frac_feedback_div
;
476 feedback_div
= (min_feed_div
+ max_feed_div
) / 2;
478 tmp
= (uint64_t)pll
->reference_freq
* feedback_div
;
479 vco
= radeon_div(tmp
, ref_div
);
481 if (vco
< pll
->pll_out_min
) {
482 min_feed_div
= feedback_div
+ 1;
484 } else if (vco
> pll
->pll_out_max
) {
485 max_feed_div
= feedback_div
;
489 while (min_frac_feed_div
< max_frac_feed_div
) {
490 frac_feedback_div
= (min_frac_feed_div
+ max_frac_feed_div
) / 2;
491 tmp
= (uint64_t)pll
->reference_freq
* 10000 * feedback_div
;
492 tmp
+= (uint64_t)pll
->reference_freq
* 1000 * frac_feedback_div
;
493 current_freq
= radeon_div(tmp
, ref_div
* post_div
);
495 if (flags
& RADEON_PLL_PREFER_CLOSEST_LOWER
) {
496 error
= freq
- current_freq
;
497 error
= error
< 0 ? 0xffffffff : error
;
499 error
= abs(current_freq
- freq
);
500 vco_diff
= abs(vco
- best_vco
);
502 if ((best_vco
== 0 && error
< best_error
) ||
504 (error
< best_error
- 100 ||
505 (abs(error
- best_error
) < 100 && vco_diff
< best_vco_diff
)))) {
506 best_post_div
= post_div
;
507 best_ref_div
= ref_div
;
508 best_feedback_div
= feedback_div
;
509 best_frac_feedback_div
= frac_feedback_div
;
510 best_freq
= current_freq
;
512 best_vco_diff
= vco_diff
;
513 } else if (current_freq
== freq
) {
514 if (best_freq
== -1) {
515 best_post_div
= post_div
;
516 best_ref_div
= ref_div
;
517 best_feedback_div
= feedback_div
;
518 best_frac_feedback_div
= frac_feedback_div
;
519 best_freq
= current_freq
;
521 best_vco_diff
= vco_diff
;
522 } else if (((flags
& RADEON_PLL_PREFER_LOW_REF_DIV
) && (ref_div
< best_ref_div
)) ||
523 ((flags
& RADEON_PLL_PREFER_HIGH_REF_DIV
) && (ref_div
> best_ref_div
)) ||
524 ((flags
& RADEON_PLL_PREFER_LOW_FB_DIV
) && (feedback_div
< best_feedback_div
)) ||
525 ((flags
& RADEON_PLL_PREFER_HIGH_FB_DIV
) && (feedback_div
> best_feedback_div
)) ||
526 ((flags
& RADEON_PLL_PREFER_LOW_POST_DIV
) && (post_div
< best_post_div
)) ||
527 ((flags
& RADEON_PLL_PREFER_HIGH_POST_DIV
) && (post_div
> best_post_div
))) {
528 best_post_div
= post_div
;
529 best_ref_div
= ref_div
;
530 best_feedback_div
= feedback_div
;
531 best_frac_feedback_div
= frac_feedback_div
;
532 best_freq
= current_freq
;
534 best_vco_diff
= vco_diff
;
537 if (current_freq
< freq
)
538 min_frac_feed_div
= frac_feedback_div
+ 1;
540 max_frac_feed_div
= frac_feedback_div
;
542 if (current_freq
< freq
)
543 min_feed_div
= feedback_div
+ 1;
545 max_feed_div
= feedback_div
;
550 *dot_clock_p
= best_freq
/ 10000;
551 *fb_div_p
= best_feedback_div
;
552 *frac_fb_div_p
= best_frac_feedback_div
;
553 *ref_div_p
= best_ref_div
;
554 *post_div_p
= best_post_div
;
557 static void radeon_user_framebuffer_destroy(struct drm_framebuffer
*fb
)
559 struct radeon_framebuffer
*radeon_fb
= to_radeon_framebuffer(fb
);
560 struct drm_device
*dev
= fb
->dev
;
563 radeonfb_remove(dev
, fb
);
565 if (radeon_fb
->obj
) {
566 radeon_gem_object_unpin(radeon_fb
->obj
);
567 mutex_lock(&dev
->struct_mutex
);
568 drm_gem_object_unreference(radeon_fb
->obj
);
569 mutex_unlock(&dev
->struct_mutex
);
571 drm_framebuffer_cleanup(fb
);
575 static int radeon_user_framebuffer_create_handle(struct drm_framebuffer
*fb
,
576 struct drm_file
*file_priv
,
577 unsigned int *handle
)
579 struct radeon_framebuffer
*radeon_fb
= to_radeon_framebuffer(fb
);
581 return drm_gem_handle_create(file_priv
, radeon_fb
->obj
, handle
);
584 static const struct drm_framebuffer_funcs radeon_fb_funcs
= {
585 .destroy
= radeon_user_framebuffer_destroy
,
586 .create_handle
= radeon_user_framebuffer_create_handle
,
589 struct drm_framebuffer
*
590 radeon_framebuffer_create(struct drm_device
*dev
,
591 struct drm_mode_fb_cmd
*mode_cmd
,
592 struct drm_gem_object
*obj
)
594 struct radeon_framebuffer
*radeon_fb
;
596 radeon_fb
= kzalloc(sizeof(*radeon_fb
), GFP_KERNEL
);
597 if (radeon_fb
== NULL
) {
600 drm_framebuffer_init(dev
, &radeon_fb
->base
, &radeon_fb_funcs
);
601 drm_helper_mode_fill_fb_struct(&radeon_fb
->base
, mode_cmd
);
602 radeon_fb
->obj
= obj
;
603 return &radeon_fb
->base
;
606 static struct drm_framebuffer
*
607 radeon_user_framebuffer_create(struct drm_device
*dev
,
608 struct drm_file
*file_priv
,
609 struct drm_mode_fb_cmd
*mode_cmd
)
611 struct drm_gem_object
*obj
;
613 obj
= drm_gem_object_lookup(dev
, file_priv
, mode_cmd
->handle
);
615 return radeon_framebuffer_create(dev
, mode_cmd
, obj
);
618 static const struct drm_mode_config_funcs radeon_mode_funcs
= {
619 .fb_create
= radeon_user_framebuffer_create
,
620 .fb_changed
= radeonfb_probe
,
623 int radeon_modeset_init(struct radeon_device
*rdev
)
628 drm_mode_config_init(rdev
->ddev
);
629 rdev
->mode_info
.mode_config_initialized
= true;
631 rdev
->ddev
->mode_config
.funcs
= (void *)&radeon_mode_funcs
;
633 if (ASIC_IS_AVIVO(rdev
)) {
634 rdev
->ddev
->mode_config
.max_width
= 8192;
635 rdev
->ddev
->mode_config
.max_height
= 8192;
637 rdev
->ddev
->mode_config
.max_width
= 4096;
638 rdev
->ddev
->mode_config
.max_height
= 4096;
641 rdev
->ddev
->mode_config
.fb_base
= rdev
->mc
.aper_base
;
643 /* allocate crtcs - TODO single crtc */
644 for (i
= 0; i
< num_crtc
; i
++) {
645 radeon_crtc_init(rdev
->ddev
, i
);
648 /* okay we should have all the bios connectors */
649 ret
= radeon_setup_enc_conn(rdev
->ddev
);
653 drm_helper_initial_config(rdev
->ddev
);
657 void radeon_modeset_fini(struct radeon_device
*rdev
)
659 if (rdev
->mode_info
.mode_config_initialized
) {
660 drm_mode_config_cleanup(rdev
->ddev
);
661 rdev
->mode_info
.mode_config_initialized
= false;
665 bool radeon_crtc_scaling_mode_fixup(struct drm_crtc
*crtc
,
666 struct drm_display_mode
*mode
,
667 struct drm_display_mode
*adjusted_mode
)
669 struct drm_device
*dev
= crtc
->dev
;
670 struct drm_encoder
*encoder
;
671 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
672 struct radeon_encoder
*radeon_encoder
;
675 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
676 radeon_encoder
= to_radeon_encoder(encoder
);
677 if (encoder
->crtc
!= crtc
)
680 radeon_crtc
->rmx_type
= radeon_encoder
->rmx_type
;
681 radeon_crtc
->devices
= radeon_encoder
->devices
;
682 memcpy(&radeon_crtc
->native_mode
,
683 &radeon_encoder
->native_mode
,
684 sizeof(struct radeon_native_mode
));
687 if (radeon_crtc
->rmx_type
!= radeon_encoder
->rmx_type
) {
688 /* WARNING: Right now this can't happen but
689 * in the future we need to check that scaling
690 * are consistent accross different encoder
691 * (ie all encoder can work with the same
694 DRM_ERROR("Scaling not consistent accross encoder.\n");
699 if (radeon_crtc
->rmx_type
!= RMX_OFF
) {
701 a
.full
= rfixed_const(crtc
->mode
.vdisplay
);
702 b
.full
= rfixed_const(radeon_crtc
->native_mode
.panel_xres
);
703 radeon_crtc
->vsc
.full
= rfixed_div(a
, b
);
704 a
.full
= rfixed_const(crtc
->mode
.hdisplay
);
705 b
.full
= rfixed_const(radeon_crtc
->native_mode
.panel_yres
);
706 radeon_crtc
->hsc
.full
= rfixed_div(a
, b
);
708 radeon_crtc
->vsc
.full
= rfixed_const(1);
709 radeon_crtc
->hsc
.full
= rfixed_const(1);