2 * Copyright 2004 ATI Technologies Inc., Markham, Ontario
3 * Copyright 2007-8 Advanced Micro Devices, Inc.
4 * Copyright 2008 Red Hat Inc.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
28 #include "radeon_drm.h"
32 #ifdef CONFIG_PPC_PMAC
33 /* not sure which of these are needed */
34 #include <asm/machdep.h>
35 #include <asm/pmac_feature.h>
37 #include <asm/pci-bridge.h>
38 #endif /* CONFIG_PPC_PMAC */
40 /* from radeon_encoder.c */
42 radeon_get_encoder_enum(struct drm_device
*dev
, uint32_t supported_device
,
44 extern void radeon_link_encoder_connector(struct drm_device
*dev
);
46 /* from radeon_connector.c */
48 radeon_add_legacy_connector(struct drm_device
*dev
,
49 uint32_t connector_id
,
50 uint32_t supported_device
,
52 struct radeon_i2c_bus_rec
*i2c_bus
,
53 uint16_t connector_object_id
,
54 struct radeon_hpd
*hpd
);
56 /* from radeon_legacy_encoder.c */
58 radeon_add_legacy_encoder(struct drm_device
*dev
, uint32_t encoder_enum
,
59 uint32_t supported_device
);
61 /* old legacy ATI BIOS routines */
63 /* COMBIOS table offsets */
64 enum radeon_combios_table_offset
{
65 /* absolute offset tables */
66 COMBIOS_ASIC_INIT_1_TABLE
,
67 COMBIOS_BIOS_SUPPORT_TABLE
,
68 COMBIOS_DAC_PROGRAMMING_TABLE
,
69 COMBIOS_MAX_COLOR_DEPTH_TABLE
,
70 COMBIOS_CRTC_INFO_TABLE
,
71 COMBIOS_PLL_INFO_TABLE
,
72 COMBIOS_TV_INFO_TABLE
,
73 COMBIOS_DFP_INFO_TABLE
,
74 COMBIOS_HW_CONFIG_INFO_TABLE
,
75 COMBIOS_MULTIMEDIA_INFO_TABLE
,
76 COMBIOS_TV_STD_PATCH_TABLE
,
77 COMBIOS_LCD_INFO_TABLE
,
78 COMBIOS_MOBILE_INFO_TABLE
,
79 COMBIOS_PLL_INIT_TABLE
,
80 COMBIOS_MEM_CONFIG_TABLE
,
81 COMBIOS_SAVE_MASK_TABLE
,
82 COMBIOS_HARDCODED_EDID_TABLE
,
83 COMBIOS_ASIC_INIT_2_TABLE
,
84 COMBIOS_CONNECTOR_INFO_TABLE
,
85 COMBIOS_DYN_CLK_1_TABLE
,
86 COMBIOS_RESERVED_MEM_TABLE
,
87 COMBIOS_EXT_TMDS_INFO_TABLE
,
88 COMBIOS_MEM_CLK_INFO_TABLE
,
89 COMBIOS_EXT_DAC_INFO_TABLE
,
90 COMBIOS_MISC_INFO_TABLE
,
91 COMBIOS_CRT_INFO_TABLE
,
92 COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE
,
93 COMBIOS_COMPONENT_VIDEO_INFO_TABLE
,
94 COMBIOS_FAN_SPEED_INFO_TABLE
,
95 COMBIOS_OVERDRIVE_INFO_TABLE
,
96 COMBIOS_OEM_INFO_TABLE
,
97 COMBIOS_DYN_CLK_2_TABLE
,
98 COMBIOS_POWER_CONNECTOR_INFO_TABLE
,
99 COMBIOS_I2C_INFO_TABLE
,
100 /* relative offset tables */
101 COMBIOS_ASIC_INIT_3_TABLE
, /* offset from misc info */
102 COMBIOS_ASIC_INIT_4_TABLE
, /* offset from misc info */
103 COMBIOS_DETECTED_MEM_TABLE
, /* offset from misc info */
104 COMBIOS_ASIC_INIT_5_TABLE
, /* offset from misc info */
105 COMBIOS_RAM_RESET_TABLE
, /* offset from mem config */
106 COMBIOS_POWERPLAY_INFO_TABLE
, /* offset from mobile info */
107 COMBIOS_GPIO_INFO_TABLE
, /* offset from mobile info */
108 COMBIOS_LCD_DDC_INFO_TABLE
, /* offset from mobile info */
109 COMBIOS_TMDS_POWER_TABLE
, /* offset from mobile info */
110 COMBIOS_TMDS_POWER_ON_TABLE
, /* offset from tmds power */
111 COMBIOS_TMDS_POWER_OFF_TABLE
, /* offset from tmds power */
114 enum radeon_combios_ddc
{
124 enum radeon_combios_connector
{
125 CONNECTOR_NONE_LEGACY
,
126 CONNECTOR_PROPRIETARY_LEGACY
,
127 CONNECTOR_CRT_LEGACY
,
128 CONNECTOR_DVI_I_LEGACY
,
129 CONNECTOR_DVI_D_LEGACY
,
130 CONNECTOR_CTV_LEGACY
,
131 CONNECTOR_STV_LEGACY
,
132 CONNECTOR_UNSUPPORTED_LEGACY
135 const int legacy_connector_convert
[] = {
136 DRM_MODE_CONNECTOR_Unknown
,
137 DRM_MODE_CONNECTOR_DVID
,
138 DRM_MODE_CONNECTOR_VGA
,
139 DRM_MODE_CONNECTOR_DVII
,
140 DRM_MODE_CONNECTOR_DVID
,
141 DRM_MODE_CONNECTOR_Composite
,
142 DRM_MODE_CONNECTOR_SVIDEO
,
143 DRM_MODE_CONNECTOR_Unknown
,
146 static uint16_t combios_get_table_offset(struct drm_device
*dev
,
147 enum radeon_combios_table_offset table
)
149 struct radeon_device
*rdev
= dev
->dev_private
;
151 uint16_t offset
= 0, check_offset
;
157 /* absolute offset tables */
158 case COMBIOS_ASIC_INIT_1_TABLE
:
159 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0xc);
161 offset
= check_offset
;
163 case COMBIOS_BIOS_SUPPORT_TABLE
:
164 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x14);
166 offset
= check_offset
;
168 case COMBIOS_DAC_PROGRAMMING_TABLE
:
169 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x2a);
171 offset
= check_offset
;
173 case COMBIOS_MAX_COLOR_DEPTH_TABLE
:
174 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x2c);
176 offset
= check_offset
;
178 case COMBIOS_CRTC_INFO_TABLE
:
179 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x2e);
181 offset
= check_offset
;
183 case COMBIOS_PLL_INFO_TABLE
:
184 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x30);
186 offset
= check_offset
;
188 case COMBIOS_TV_INFO_TABLE
:
189 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x32);
191 offset
= check_offset
;
193 case COMBIOS_DFP_INFO_TABLE
:
194 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x34);
196 offset
= check_offset
;
198 case COMBIOS_HW_CONFIG_INFO_TABLE
:
199 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x36);
201 offset
= check_offset
;
203 case COMBIOS_MULTIMEDIA_INFO_TABLE
:
204 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x38);
206 offset
= check_offset
;
208 case COMBIOS_TV_STD_PATCH_TABLE
:
209 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x3e);
211 offset
= check_offset
;
213 case COMBIOS_LCD_INFO_TABLE
:
214 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x40);
216 offset
= check_offset
;
218 case COMBIOS_MOBILE_INFO_TABLE
:
219 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x42);
221 offset
= check_offset
;
223 case COMBIOS_PLL_INIT_TABLE
:
224 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x46);
226 offset
= check_offset
;
228 case COMBIOS_MEM_CONFIG_TABLE
:
229 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x48);
231 offset
= check_offset
;
233 case COMBIOS_SAVE_MASK_TABLE
:
234 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x4a);
236 offset
= check_offset
;
238 case COMBIOS_HARDCODED_EDID_TABLE
:
239 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x4c);
241 offset
= check_offset
;
243 case COMBIOS_ASIC_INIT_2_TABLE
:
244 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x4e);
246 offset
= check_offset
;
248 case COMBIOS_CONNECTOR_INFO_TABLE
:
249 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x50);
251 offset
= check_offset
;
253 case COMBIOS_DYN_CLK_1_TABLE
:
254 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x52);
256 offset
= check_offset
;
258 case COMBIOS_RESERVED_MEM_TABLE
:
259 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x54);
261 offset
= check_offset
;
263 case COMBIOS_EXT_TMDS_INFO_TABLE
:
264 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x58);
266 offset
= check_offset
;
268 case COMBIOS_MEM_CLK_INFO_TABLE
:
269 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x5a);
271 offset
= check_offset
;
273 case COMBIOS_EXT_DAC_INFO_TABLE
:
274 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x5c);
276 offset
= check_offset
;
278 case COMBIOS_MISC_INFO_TABLE
:
279 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x5e);
281 offset
= check_offset
;
283 case COMBIOS_CRT_INFO_TABLE
:
284 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x60);
286 offset
= check_offset
;
288 case COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE
:
289 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x62);
291 offset
= check_offset
;
293 case COMBIOS_COMPONENT_VIDEO_INFO_TABLE
:
294 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x64);
296 offset
= check_offset
;
298 case COMBIOS_FAN_SPEED_INFO_TABLE
:
299 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x66);
301 offset
= check_offset
;
303 case COMBIOS_OVERDRIVE_INFO_TABLE
:
304 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x68);
306 offset
= check_offset
;
308 case COMBIOS_OEM_INFO_TABLE
:
309 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x6a);
311 offset
= check_offset
;
313 case COMBIOS_DYN_CLK_2_TABLE
:
314 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x6c);
316 offset
= check_offset
;
318 case COMBIOS_POWER_CONNECTOR_INFO_TABLE
:
319 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x6e);
321 offset
= check_offset
;
323 case COMBIOS_I2C_INFO_TABLE
:
324 check_offset
= RBIOS16(rdev
->bios_header_start
+ 0x70);
326 offset
= check_offset
;
328 /* relative offset tables */
329 case COMBIOS_ASIC_INIT_3_TABLE
: /* offset from misc info */
331 combios_get_table_offset(dev
, COMBIOS_MISC_INFO_TABLE
);
333 rev
= RBIOS8(check_offset
);
335 check_offset
= RBIOS16(check_offset
+ 0x3);
337 offset
= check_offset
;
341 case COMBIOS_ASIC_INIT_4_TABLE
: /* offset from misc info */
343 combios_get_table_offset(dev
, COMBIOS_MISC_INFO_TABLE
);
345 rev
= RBIOS8(check_offset
);
347 check_offset
= RBIOS16(check_offset
+ 0x5);
349 offset
= check_offset
;
353 case COMBIOS_DETECTED_MEM_TABLE
: /* offset from misc info */
355 combios_get_table_offset(dev
, COMBIOS_MISC_INFO_TABLE
);
357 rev
= RBIOS8(check_offset
);
359 check_offset
= RBIOS16(check_offset
+ 0x7);
361 offset
= check_offset
;
365 case COMBIOS_ASIC_INIT_5_TABLE
: /* offset from misc info */
367 combios_get_table_offset(dev
, COMBIOS_MISC_INFO_TABLE
);
369 rev
= RBIOS8(check_offset
);
371 check_offset
= RBIOS16(check_offset
+ 0x9);
373 offset
= check_offset
;
377 case COMBIOS_RAM_RESET_TABLE
: /* offset from mem config */
379 combios_get_table_offset(dev
, COMBIOS_MEM_CONFIG_TABLE
);
381 while (RBIOS8(check_offset
++));
384 offset
= check_offset
;
387 case COMBIOS_POWERPLAY_INFO_TABLE
: /* offset from mobile info */
389 combios_get_table_offset(dev
, COMBIOS_MOBILE_INFO_TABLE
);
391 check_offset
= RBIOS16(check_offset
+ 0x11);
393 offset
= check_offset
;
396 case COMBIOS_GPIO_INFO_TABLE
: /* offset from mobile info */
398 combios_get_table_offset(dev
, COMBIOS_MOBILE_INFO_TABLE
);
400 check_offset
= RBIOS16(check_offset
+ 0x13);
402 offset
= check_offset
;
405 case COMBIOS_LCD_DDC_INFO_TABLE
: /* offset from mobile info */
407 combios_get_table_offset(dev
, COMBIOS_MOBILE_INFO_TABLE
);
409 check_offset
= RBIOS16(check_offset
+ 0x15);
411 offset
= check_offset
;
414 case COMBIOS_TMDS_POWER_TABLE
: /* offset from mobile info */
416 combios_get_table_offset(dev
, COMBIOS_MOBILE_INFO_TABLE
);
418 check_offset
= RBIOS16(check_offset
+ 0x17);
420 offset
= check_offset
;
423 case COMBIOS_TMDS_POWER_ON_TABLE
: /* offset from tmds power */
425 combios_get_table_offset(dev
, COMBIOS_TMDS_POWER_TABLE
);
427 check_offset
= RBIOS16(check_offset
+ 0x2);
429 offset
= check_offset
;
432 case COMBIOS_TMDS_POWER_OFF_TABLE
: /* offset from tmds power */
434 combios_get_table_offset(dev
, COMBIOS_TMDS_POWER_TABLE
);
436 check_offset
= RBIOS16(check_offset
+ 0x4);
438 offset
= check_offset
;
449 bool radeon_combios_check_hardcoded_edid(struct radeon_device
*rdev
)
454 edid_info
= combios_get_table_offset(rdev
->ddev
, COMBIOS_HARDCODED_EDID_TABLE
);
458 raw
= rdev
->bios
+ edid_info
;
459 size
= EDID_LENGTH
* (raw
[0x7e] + 1);
460 edid
= kmalloc(size
, GFP_KERNEL
);
464 memcpy((unsigned char *)edid
, raw
, size
);
466 if (!drm_edid_is_valid(edid
)) {
471 rdev
->mode_info
.bios_hardcoded_edid
= edid
;
472 rdev
->mode_info
.bios_hardcoded_edid_size
= size
;
476 /* this is used for atom LCDs as well */
478 radeon_bios_get_hardcoded_edid(struct radeon_device
*rdev
)
482 if (rdev
->mode_info
.bios_hardcoded_edid
) {
483 edid
= kmalloc(rdev
->mode_info
.bios_hardcoded_edid_size
, GFP_KERNEL
);
485 memcpy((unsigned char *)edid
,
486 (unsigned char *)rdev
->mode_info
.bios_hardcoded_edid
,
487 rdev
->mode_info
.bios_hardcoded_edid_size
);
494 static struct radeon_i2c_bus_rec
combios_setup_i2c_bus(struct radeon_device
*rdev
,
495 enum radeon_combios_ddc ddc
,
499 struct radeon_i2c_bus_rec i2c
;
503 * DDC_NONE_DETECTED = none
504 * DDC_DVI = RADEON_GPIO_DVI_DDC
505 * DDC_VGA = RADEON_GPIO_VGA_DDC
506 * DDC_LCD = RADEON_GPIOPAD_MASK
507 * DDC_GPIO = RADEON_MDGPIO_MASK
509 * DDC_MONID = RADEON_GPIO_MONID
510 * DDC_CRT2 = RADEON_GPIO_CRT2_DDC
512 * DDC_MONID = RADEON_GPIO_MONID
513 * DDC_CRT2 = RADEON_GPIO_DVI_DDC
515 * DDC_MONID = RADEON_GPIO_DVI_DDC
516 * DDC_CRT2 = RADEON_GPIO_DVI_DDC
518 * DDC_MONID = RADEON_GPIO_MONID
519 * DDC_CRT2 = RADEON_GPIO_MONID
521 * DDC_MONID = RADEON_GPIOPAD_MASK
522 * DDC_CRT2 = RADEON_GPIO_MONID
525 case DDC_NONE_DETECTED
:
530 ddc_line
= RADEON_GPIO_DVI_DDC
;
533 ddc_line
= RADEON_GPIO_VGA_DDC
;
536 ddc_line
= RADEON_GPIOPAD_MASK
;
539 ddc_line
= RADEON_MDGPIO_MASK
;
542 if (rdev
->family
== CHIP_RS300
||
543 rdev
->family
== CHIP_RS400
||
544 rdev
->family
== CHIP_RS480
)
545 ddc_line
= RADEON_GPIOPAD_MASK
;
546 else if (rdev
->family
== CHIP_R300
||
547 rdev
->family
== CHIP_R350
) {
548 ddc_line
= RADEON_GPIO_DVI_DDC
;
551 ddc_line
= RADEON_GPIO_MONID
;
554 if (rdev
->family
== CHIP_R200
||
555 rdev
->family
== CHIP_R300
||
556 rdev
->family
== CHIP_R350
) {
557 ddc_line
= RADEON_GPIO_DVI_DDC
;
559 } else if (rdev
->family
== CHIP_RS300
||
560 rdev
->family
== CHIP_RS400
||
561 rdev
->family
== CHIP_RS480
)
562 ddc_line
= RADEON_GPIO_MONID
;
563 else if (rdev
->family
>= CHIP_RV350
) {
564 ddc_line
= RADEON_GPIO_MONID
;
567 ddc_line
= RADEON_GPIO_CRT2_DDC
;
571 if (ddc_line
== RADEON_GPIOPAD_MASK
) {
572 i2c
.mask_clk_reg
= RADEON_GPIOPAD_MASK
;
573 i2c
.mask_data_reg
= RADEON_GPIOPAD_MASK
;
574 i2c
.a_clk_reg
= RADEON_GPIOPAD_A
;
575 i2c
.a_data_reg
= RADEON_GPIOPAD_A
;
576 i2c
.en_clk_reg
= RADEON_GPIOPAD_EN
;
577 i2c
.en_data_reg
= RADEON_GPIOPAD_EN
;
578 i2c
.y_clk_reg
= RADEON_GPIOPAD_Y
;
579 i2c
.y_data_reg
= RADEON_GPIOPAD_Y
;
580 } else if (ddc_line
== RADEON_MDGPIO_MASK
) {
581 i2c
.mask_clk_reg
= RADEON_MDGPIO_MASK
;
582 i2c
.mask_data_reg
= RADEON_MDGPIO_MASK
;
583 i2c
.a_clk_reg
= RADEON_MDGPIO_A
;
584 i2c
.a_data_reg
= RADEON_MDGPIO_A
;
585 i2c
.en_clk_reg
= RADEON_MDGPIO_EN
;
586 i2c
.en_data_reg
= RADEON_MDGPIO_EN
;
587 i2c
.y_clk_reg
= RADEON_MDGPIO_Y
;
588 i2c
.y_data_reg
= RADEON_MDGPIO_Y
;
590 i2c
.mask_clk_reg
= ddc_line
;
591 i2c
.mask_data_reg
= ddc_line
;
592 i2c
.a_clk_reg
= ddc_line
;
593 i2c
.a_data_reg
= ddc_line
;
594 i2c
.en_clk_reg
= ddc_line
;
595 i2c
.en_data_reg
= ddc_line
;
596 i2c
.y_clk_reg
= ddc_line
;
597 i2c
.y_data_reg
= ddc_line
;
600 if (clk_mask
&& data_mask
) {
601 /* system specific masks */
602 i2c
.mask_clk_mask
= clk_mask
;
603 i2c
.mask_data_mask
= data_mask
;
604 i2c
.a_clk_mask
= clk_mask
;
605 i2c
.a_data_mask
= data_mask
;
606 i2c
.en_clk_mask
= clk_mask
;
607 i2c
.en_data_mask
= data_mask
;
608 i2c
.y_clk_mask
= clk_mask
;
609 i2c
.y_data_mask
= data_mask
;
610 } else if ((ddc_line
== RADEON_GPIOPAD_MASK
) ||
611 (ddc_line
== RADEON_MDGPIO_MASK
)) {
612 /* default gpiopad masks */
613 i2c
.mask_clk_mask
= (0x20 << 8);
614 i2c
.mask_data_mask
= 0x80;
615 i2c
.a_clk_mask
= (0x20 << 8);
616 i2c
.a_data_mask
= 0x80;
617 i2c
.en_clk_mask
= (0x20 << 8);
618 i2c
.en_data_mask
= 0x80;
619 i2c
.y_clk_mask
= (0x20 << 8);
620 i2c
.y_data_mask
= 0x80;
622 /* default masks for ddc pads */
623 i2c
.mask_clk_mask
= RADEON_GPIO_MASK_1
;
624 i2c
.mask_data_mask
= RADEON_GPIO_MASK_0
;
625 i2c
.a_clk_mask
= RADEON_GPIO_A_1
;
626 i2c
.a_data_mask
= RADEON_GPIO_A_0
;
627 i2c
.en_clk_mask
= RADEON_GPIO_EN_1
;
628 i2c
.en_data_mask
= RADEON_GPIO_EN_0
;
629 i2c
.y_clk_mask
= RADEON_GPIO_Y_1
;
630 i2c
.y_data_mask
= RADEON_GPIO_Y_0
;
633 switch (rdev
->family
) {
641 case RADEON_GPIO_DVI_DDC
:
642 i2c
.hw_capable
= true;
645 i2c
.hw_capable
= false;
651 case RADEON_GPIO_DVI_DDC
:
652 case RADEON_GPIO_MONID
:
653 i2c
.hw_capable
= true;
656 i2c
.hw_capable
= false;
663 case RADEON_GPIO_VGA_DDC
:
664 case RADEON_GPIO_DVI_DDC
:
665 case RADEON_GPIO_CRT2_DDC
:
666 i2c
.hw_capable
= true;
669 i2c
.hw_capable
= false;
676 case RADEON_GPIO_VGA_DDC
:
677 case RADEON_GPIO_DVI_DDC
:
678 i2c
.hw_capable
= true;
681 i2c
.hw_capable
= false;
690 case RADEON_GPIO_VGA_DDC
:
691 case RADEON_GPIO_DVI_DDC
:
692 i2c
.hw_capable
= true;
694 case RADEON_GPIO_MONID
:
695 /* hw i2c on RADEON_GPIO_MONID doesn't seem to work
696 * reliably on some pre-r4xx hardware; not sure why.
698 i2c
.hw_capable
= false;
701 i2c
.hw_capable
= false;
706 i2c
.hw_capable
= false;
712 i2c
.hpd
= RADEON_HPD_NONE
;
722 void radeon_combios_i2c_init(struct radeon_device
*rdev
)
724 struct drm_device
*dev
= rdev
->ddev
;
725 struct radeon_i2c_bus_rec i2c
;
729 * 0x60, 0x64, 0x68, 0x6c, gpiopads, mm
731 * 0x60, 0x64, 0x68, mm
735 * 0x60, 0x64, 0x68, gpiopads, mm
739 i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
740 rdev
->i2c_bus
[0] = radeon_i2c_create(dev
, &i2c
, "DVI_DDC");
742 i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
743 rdev
->i2c_bus
[1] = radeon_i2c_create(dev
, &i2c
, "VGA_DDC");
747 i2c
.hw_capable
= true;
750 rdev
->i2c_bus
[2] = radeon_i2c_create(dev
, &i2c
, "MM_I2C");
752 if (rdev
->family
== CHIP_R300
||
753 rdev
->family
== CHIP_R350
) {
754 /* only 2 sw i2c pads */
755 } else if (rdev
->family
== CHIP_RS300
||
756 rdev
->family
== CHIP_RS400
||
757 rdev
->family
== CHIP_RS480
) {
759 u8 id
, blocks
, clk
, data
;
763 i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
764 rdev
->i2c_bus
[3] = radeon_i2c_create(dev
, &i2c
, "MONID");
766 offset
= combios_get_table_offset(dev
, COMBIOS_I2C_INFO_TABLE
);
768 blocks
= RBIOS8(offset
+ 2);
769 for (i
= 0; i
< blocks
; i
++) {
770 id
= RBIOS8(offset
+ 3 + (i
* 5) + 0);
772 clk
= RBIOS8(offset
+ 3 + (i
* 5) + 3);
773 data
= RBIOS8(offset
+ 3 + (i
* 5) + 4);
775 i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
,
776 (1 << clk
), (1 << data
));
777 rdev
->i2c_bus
[4] = radeon_i2c_create(dev
, &i2c
, "GPIOPAD_MASK");
782 } else if ((rdev
->family
== CHIP_R200
) ||
783 (rdev
->family
>= CHIP_R300
)) {
785 i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
786 rdev
->i2c_bus
[3] = radeon_i2c_create(dev
, &i2c
, "MONID");
789 i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
790 rdev
->i2c_bus
[3] = radeon_i2c_create(dev
, &i2c
, "MONID");
792 i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
793 rdev
->i2c_bus
[4] = radeon_i2c_create(dev
, &i2c
, "CRT2_DDC");
797 bool radeon_combios_get_clock_info(struct drm_device
*dev
)
799 struct radeon_device
*rdev
= dev
->dev_private
;
801 struct radeon_pll
*p1pll
= &rdev
->clock
.p1pll
;
802 struct radeon_pll
*p2pll
= &rdev
->clock
.p2pll
;
803 struct radeon_pll
*spll
= &rdev
->clock
.spll
;
804 struct radeon_pll
*mpll
= &rdev
->clock
.mpll
;
808 pll_info
= combios_get_table_offset(dev
, COMBIOS_PLL_INFO_TABLE
);
810 rev
= RBIOS8(pll_info
);
813 p1pll
->reference_freq
= RBIOS16(pll_info
+ 0xe);
814 p1pll
->reference_div
= RBIOS16(pll_info
+ 0x10);
815 p1pll
->pll_out_min
= RBIOS32(pll_info
+ 0x12);
816 p1pll
->pll_out_max
= RBIOS32(pll_info
+ 0x16);
817 p1pll
->lcd_pll_out_min
= p1pll
->pll_out_min
;
818 p1pll
->lcd_pll_out_max
= p1pll
->pll_out_max
;
821 p1pll
->pll_in_min
= RBIOS32(pll_info
+ 0x36);
822 p1pll
->pll_in_max
= RBIOS32(pll_info
+ 0x3a);
824 p1pll
->pll_in_min
= 40;
825 p1pll
->pll_in_max
= 500;
830 spll
->reference_freq
= RBIOS16(pll_info
+ 0x1a);
831 spll
->reference_div
= RBIOS16(pll_info
+ 0x1c);
832 spll
->pll_out_min
= RBIOS32(pll_info
+ 0x1e);
833 spll
->pll_out_max
= RBIOS32(pll_info
+ 0x22);
836 spll
->pll_in_min
= RBIOS32(pll_info
+ 0x48);
837 spll
->pll_in_max
= RBIOS32(pll_info
+ 0x4c);
840 spll
->pll_in_min
= 40;
841 spll
->pll_in_max
= 500;
845 mpll
->reference_freq
= RBIOS16(pll_info
+ 0x26);
846 mpll
->reference_div
= RBIOS16(pll_info
+ 0x28);
847 mpll
->pll_out_min
= RBIOS32(pll_info
+ 0x2a);
848 mpll
->pll_out_max
= RBIOS32(pll_info
+ 0x2e);
851 mpll
->pll_in_min
= RBIOS32(pll_info
+ 0x5a);
852 mpll
->pll_in_max
= RBIOS32(pll_info
+ 0x5e);
855 mpll
->pll_in_min
= 40;
856 mpll
->pll_in_max
= 500;
859 /* default sclk/mclk */
860 sclk
= RBIOS16(pll_info
+ 0xa);
861 mclk
= RBIOS16(pll_info
+ 0x8);
867 rdev
->clock
.default_sclk
= sclk
;
868 rdev
->clock
.default_mclk
= mclk
;
870 if (RBIOS32(pll_info
+ 0x16))
871 rdev
->clock
.max_pixel_clock
= RBIOS32(pll_info
+ 0x16);
873 rdev
->clock
.max_pixel_clock
= 35000; /* might need something asic specific */
880 bool radeon_combios_sideport_present(struct radeon_device
*rdev
)
882 struct drm_device
*dev
= rdev
->ddev
;
885 /* sideport is AMD only */
886 if (rdev
->family
== CHIP_RS400
)
889 igp_info
= combios_get_table_offset(dev
, COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE
);
892 if (RBIOS16(igp_info
+ 0x4))
898 static const uint32_t default_primarydac_adj
[CHIP_LAST
] = {
899 0x00000808, /* r100 */
900 0x00000808, /* rv100 */
901 0x00000808, /* rs100 */
902 0x00000808, /* rv200 */
903 0x00000808, /* rs200 */
904 0x00000808, /* r200 */
905 0x00000808, /* rv250 */
906 0x00000000, /* rs300 */
907 0x00000808, /* rv280 */
908 0x00000808, /* r300 */
909 0x00000808, /* r350 */
910 0x00000808, /* rv350 */
911 0x00000808, /* rv380 */
912 0x00000808, /* r420 */
913 0x00000808, /* r423 */
914 0x00000808, /* rv410 */
915 0x00000000, /* rs400 */
916 0x00000000, /* rs480 */
919 static void radeon_legacy_get_primary_dac_info_from_table(struct radeon_device
*rdev
,
920 struct radeon_encoder_primary_dac
*p_dac
)
922 p_dac
->ps2_pdac_adj
= default_primarydac_adj
[rdev
->family
];
926 struct radeon_encoder_primary_dac
*radeon_combios_get_primary_dac_info(struct
930 struct drm_device
*dev
= encoder
->base
.dev
;
931 struct radeon_device
*rdev
= dev
->dev_private
;
933 uint8_t rev
, bg
, dac
;
934 struct radeon_encoder_primary_dac
*p_dac
= NULL
;
937 p_dac
= kzalloc(sizeof(struct radeon_encoder_primary_dac
),
943 /* check CRT table */
944 dac_info
= combios_get_table_offset(dev
, COMBIOS_CRT_INFO_TABLE
);
946 rev
= RBIOS8(dac_info
) & 0x3;
948 bg
= RBIOS8(dac_info
+ 0x2) & 0xf;
949 dac
= (RBIOS8(dac_info
+ 0x2) >> 4) & 0xf;
950 p_dac
->ps2_pdac_adj
= (bg
<< 8) | (dac
);
952 bg
= RBIOS8(dac_info
+ 0x2) & 0xf;
953 dac
= RBIOS8(dac_info
+ 0x3) & 0xf;
954 p_dac
->ps2_pdac_adj
= (bg
<< 8) | (dac
);
956 /* if the values are all zeros, use the table */
957 if (p_dac
->ps2_pdac_adj
)
961 if (!found
) /* fallback to defaults */
962 radeon_legacy_get_primary_dac_info_from_table(rdev
, p_dac
);
968 radeon_combios_get_tv_info(struct radeon_device
*rdev
)
970 struct drm_device
*dev
= rdev
->ddev
;
972 enum radeon_tv_std tv_std
= TV_STD_NTSC
;
974 tv_info
= combios_get_table_offset(dev
, COMBIOS_TV_INFO_TABLE
);
976 if (RBIOS8(tv_info
+ 6) == 'T') {
977 switch (RBIOS8(tv_info
+ 7) & 0xf) {
979 tv_std
= TV_STD_NTSC
;
980 DRM_DEBUG_KMS("Default TV standard: NTSC\n");
984 DRM_DEBUG_KMS("Default TV standard: PAL\n");
987 tv_std
= TV_STD_PAL_M
;
988 DRM_DEBUG_KMS("Default TV standard: PAL-M\n");
991 tv_std
= TV_STD_PAL_60
;
992 DRM_DEBUG_KMS("Default TV standard: PAL-60\n");
995 tv_std
= TV_STD_NTSC_J
;
996 DRM_DEBUG_KMS("Default TV standard: NTSC-J\n");
999 tv_std
= TV_STD_SCART_PAL
;
1000 DRM_DEBUG_KMS("Default TV standard: SCART-PAL\n");
1003 tv_std
= TV_STD_NTSC
;
1005 ("Unknown TV standard; defaulting to NTSC\n");
1009 switch ((RBIOS8(tv_info
+ 9) >> 2) & 0x3) {
1011 DRM_DEBUG_KMS("29.498928713 MHz TV ref clk\n");
1014 DRM_DEBUG_KMS("28.636360000 MHz TV ref clk\n");
1017 DRM_DEBUG_KMS("14.318180000 MHz TV ref clk\n");
1020 DRM_DEBUG_KMS("27.000000000 MHz TV ref clk\n");
1030 static const uint32_t default_tvdac_adj
[CHIP_LAST
] = {
1031 0x00000000, /* r100 */
1032 0x00280000, /* rv100 */
1033 0x00000000, /* rs100 */
1034 0x00880000, /* rv200 */
1035 0x00000000, /* rs200 */
1036 0x00000000, /* r200 */
1037 0x00770000, /* rv250 */
1038 0x00290000, /* rs300 */
1039 0x00560000, /* rv280 */
1040 0x00780000, /* r300 */
1041 0x00770000, /* r350 */
1042 0x00780000, /* rv350 */
1043 0x00780000, /* rv380 */
1044 0x01080000, /* r420 */
1045 0x01080000, /* r423 */
1046 0x01080000, /* rv410 */
1047 0x00780000, /* rs400 */
1048 0x00780000, /* rs480 */
1051 static void radeon_legacy_get_tv_dac_info_from_table(struct radeon_device
*rdev
,
1052 struct radeon_encoder_tv_dac
*tv_dac
)
1054 tv_dac
->ps2_tvdac_adj
= default_tvdac_adj
[rdev
->family
];
1055 if ((rdev
->flags
& RADEON_IS_MOBILITY
) && (rdev
->family
== CHIP_RV250
))
1056 tv_dac
->ps2_tvdac_adj
= 0x00880000;
1057 tv_dac
->pal_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1058 tv_dac
->ntsc_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1062 struct radeon_encoder_tv_dac
*radeon_combios_get_tv_dac_info(struct
1066 struct drm_device
*dev
= encoder
->base
.dev
;
1067 struct radeon_device
*rdev
= dev
->dev_private
;
1069 uint8_t rev
, bg
, dac
;
1070 struct radeon_encoder_tv_dac
*tv_dac
= NULL
;
1073 tv_dac
= kzalloc(sizeof(struct radeon_encoder_tv_dac
), GFP_KERNEL
);
1077 /* first check TV table */
1078 dac_info
= combios_get_table_offset(dev
, COMBIOS_TV_INFO_TABLE
);
1080 rev
= RBIOS8(dac_info
+ 0x3);
1082 bg
= RBIOS8(dac_info
+ 0xc) & 0xf;
1083 dac
= RBIOS8(dac_info
+ 0xd) & 0xf;
1084 tv_dac
->ps2_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1086 bg
= RBIOS8(dac_info
+ 0xe) & 0xf;
1087 dac
= RBIOS8(dac_info
+ 0xf) & 0xf;
1088 tv_dac
->pal_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1090 bg
= RBIOS8(dac_info
+ 0x10) & 0xf;
1091 dac
= RBIOS8(dac_info
+ 0x11) & 0xf;
1092 tv_dac
->ntsc_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1093 /* if the values are all zeros, use the table */
1094 if (tv_dac
->ps2_tvdac_adj
)
1096 } else if (rev
> 1) {
1097 bg
= RBIOS8(dac_info
+ 0xc) & 0xf;
1098 dac
= (RBIOS8(dac_info
+ 0xc) >> 4) & 0xf;
1099 tv_dac
->ps2_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1101 bg
= RBIOS8(dac_info
+ 0xd) & 0xf;
1102 dac
= (RBIOS8(dac_info
+ 0xd) >> 4) & 0xf;
1103 tv_dac
->pal_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1105 bg
= RBIOS8(dac_info
+ 0xe) & 0xf;
1106 dac
= (RBIOS8(dac_info
+ 0xe) >> 4) & 0xf;
1107 tv_dac
->ntsc_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1108 /* if the values are all zeros, use the table */
1109 if (tv_dac
->ps2_tvdac_adj
)
1112 tv_dac
->tv_std
= radeon_combios_get_tv_info(rdev
);
1115 /* then check CRT table */
1117 combios_get_table_offset(dev
, COMBIOS_CRT_INFO_TABLE
);
1119 rev
= RBIOS8(dac_info
) & 0x3;
1121 bg
= RBIOS8(dac_info
+ 0x3) & 0xf;
1122 dac
= (RBIOS8(dac_info
+ 0x3) >> 4) & 0xf;
1123 tv_dac
->ps2_tvdac_adj
=
1124 (bg
<< 16) | (dac
<< 20);
1125 tv_dac
->pal_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1126 tv_dac
->ntsc_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1127 /* if the values are all zeros, use the table */
1128 if (tv_dac
->ps2_tvdac_adj
)
1131 bg
= RBIOS8(dac_info
+ 0x4) & 0xf;
1132 dac
= RBIOS8(dac_info
+ 0x5) & 0xf;
1133 tv_dac
->ps2_tvdac_adj
=
1134 (bg
<< 16) | (dac
<< 20);
1135 tv_dac
->pal_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1136 tv_dac
->ntsc_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1137 /* if the values are all zeros, use the table */
1138 if (tv_dac
->ps2_tvdac_adj
)
1142 DRM_INFO("No TV DAC info found in BIOS\n");
1146 if (!found
) /* fallback to defaults */
1147 radeon_legacy_get_tv_dac_info_from_table(rdev
, tv_dac
);
1152 static struct radeon_encoder_lvds
*radeon_legacy_get_lvds_info_from_regs(struct
1156 struct radeon_encoder_lvds
*lvds
= NULL
;
1157 uint32_t fp_vert_stretch
, fp_horz_stretch
;
1158 uint32_t ppll_div_sel
, ppll_val
;
1159 uint32_t lvds_ss_gen_cntl
= RREG32(RADEON_LVDS_SS_GEN_CNTL
);
1161 lvds
= kzalloc(sizeof(struct radeon_encoder_lvds
), GFP_KERNEL
);
1166 fp_vert_stretch
= RREG32(RADEON_FP_VERT_STRETCH
);
1167 fp_horz_stretch
= RREG32(RADEON_FP_HORZ_STRETCH
);
1169 /* These should be fail-safe defaults, fingers crossed */
1170 lvds
->panel_pwr_delay
= 200;
1171 lvds
->panel_vcc_delay
= 2000;
1173 lvds
->lvds_gen_cntl
= RREG32(RADEON_LVDS_GEN_CNTL
);
1174 lvds
->panel_digon_delay
= (lvds_ss_gen_cntl
>> RADEON_LVDS_PWRSEQ_DELAY1_SHIFT
) & 0xf;
1175 lvds
->panel_blon_delay
= (lvds_ss_gen_cntl
>> RADEON_LVDS_PWRSEQ_DELAY2_SHIFT
) & 0xf;
1177 if (fp_vert_stretch
& RADEON_VERT_STRETCH_ENABLE
)
1178 lvds
->native_mode
.vdisplay
=
1179 ((fp_vert_stretch
& RADEON_VERT_PANEL_SIZE
) >>
1180 RADEON_VERT_PANEL_SHIFT
) + 1;
1182 lvds
->native_mode
.vdisplay
=
1183 (RREG32(RADEON_CRTC_V_TOTAL_DISP
) >> 16) + 1;
1185 if (fp_horz_stretch
& RADEON_HORZ_STRETCH_ENABLE
)
1186 lvds
->native_mode
.hdisplay
=
1187 (((fp_horz_stretch
& RADEON_HORZ_PANEL_SIZE
) >>
1188 RADEON_HORZ_PANEL_SHIFT
) + 1) * 8;
1190 lvds
->native_mode
.hdisplay
=
1191 ((RREG32(RADEON_CRTC_H_TOTAL_DISP
) >> 16) + 1) * 8;
1193 if ((lvds
->native_mode
.hdisplay
< 640) ||
1194 (lvds
->native_mode
.vdisplay
< 480)) {
1195 lvds
->native_mode
.hdisplay
= 640;
1196 lvds
->native_mode
.vdisplay
= 480;
1199 ppll_div_sel
= RREG8(RADEON_CLOCK_CNTL_INDEX
+ 1) & 0x3;
1200 ppll_val
= RREG32_PLL(RADEON_PPLL_DIV_0
+ ppll_div_sel
);
1201 if ((ppll_val
& 0x000707ff) == 0x1bb)
1202 lvds
->use_bios_dividers
= false;
1204 lvds
->panel_ref_divider
=
1205 RREG32_PLL(RADEON_PPLL_REF_DIV
) & 0x3ff;
1206 lvds
->panel_post_divider
= (ppll_val
>> 16) & 0x7;
1207 lvds
->panel_fb_divider
= ppll_val
& 0x7ff;
1209 if ((lvds
->panel_ref_divider
!= 0) &&
1210 (lvds
->panel_fb_divider
> 3))
1211 lvds
->use_bios_dividers
= true;
1213 lvds
->panel_vcc_delay
= 200;
1215 DRM_INFO("Panel info derived from registers\n");
1216 DRM_INFO("Panel Size %dx%d\n", lvds
->native_mode
.hdisplay
,
1217 lvds
->native_mode
.vdisplay
);
1222 struct radeon_encoder_lvds
*radeon_combios_get_lvds_info(struct radeon_encoder
1225 struct drm_device
*dev
= encoder
->base
.dev
;
1226 struct radeon_device
*rdev
= dev
->dev_private
;
1228 uint32_t panel_setup
;
1231 struct radeon_encoder_lvds
*lvds
= NULL
;
1233 lcd_info
= combios_get_table_offset(dev
, COMBIOS_LCD_INFO_TABLE
);
1236 lvds
= kzalloc(sizeof(struct radeon_encoder_lvds
), GFP_KERNEL
);
1241 for (i
= 0; i
< 24; i
++)
1242 stmp
[i
] = RBIOS8(lcd_info
+ i
+ 1);
1245 DRM_INFO("Panel ID String: %s\n", stmp
);
1247 lvds
->native_mode
.hdisplay
= RBIOS16(lcd_info
+ 0x19);
1248 lvds
->native_mode
.vdisplay
= RBIOS16(lcd_info
+ 0x1b);
1250 DRM_INFO("Panel Size %dx%d\n", lvds
->native_mode
.hdisplay
,
1251 lvds
->native_mode
.vdisplay
);
1253 lvds
->panel_vcc_delay
= RBIOS16(lcd_info
+ 0x2c);
1254 lvds
->panel_vcc_delay
= min_t(u16
, lvds
->panel_vcc_delay
, 2000);
1256 lvds
->panel_pwr_delay
= RBIOS8(lcd_info
+ 0x24);
1257 lvds
->panel_digon_delay
= RBIOS16(lcd_info
+ 0x38) & 0xf;
1258 lvds
->panel_blon_delay
= (RBIOS16(lcd_info
+ 0x38) >> 4) & 0xf;
1260 lvds
->panel_ref_divider
= RBIOS16(lcd_info
+ 0x2e);
1261 lvds
->panel_post_divider
= RBIOS8(lcd_info
+ 0x30);
1262 lvds
->panel_fb_divider
= RBIOS16(lcd_info
+ 0x31);
1263 if ((lvds
->panel_ref_divider
!= 0) &&
1264 (lvds
->panel_fb_divider
> 3))
1265 lvds
->use_bios_dividers
= true;
1267 panel_setup
= RBIOS32(lcd_info
+ 0x39);
1268 lvds
->lvds_gen_cntl
= 0xff00;
1269 if (panel_setup
& 0x1)
1270 lvds
->lvds_gen_cntl
|= RADEON_LVDS_PANEL_FORMAT
;
1272 if ((panel_setup
>> 4) & 0x1)
1273 lvds
->lvds_gen_cntl
|= RADEON_LVDS_PANEL_TYPE
;
1275 switch ((panel_setup
>> 8) & 0x7) {
1277 lvds
->lvds_gen_cntl
|= RADEON_LVDS_NO_FM
;
1280 lvds
->lvds_gen_cntl
|= RADEON_LVDS_2_GREY
;
1283 lvds
->lvds_gen_cntl
|= RADEON_LVDS_4_GREY
;
1289 if ((panel_setup
>> 16) & 0x1)
1290 lvds
->lvds_gen_cntl
|= RADEON_LVDS_FP_POL_LOW
;
1292 if ((panel_setup
>> 17) & 0x1)
1293 lvds
->lvds_gen_cntl
|= RADEON_LVDS_LP_POL_LOW
;
1295 if ((panel_setup
>> 18) & 0x1)
1296 lvds
->lvds_gen_cntl
|= RADEON_LVDS_DTM_POL_LOW
;
1298 if ((panel_setup
>> 23) & 0x1)
1299 lvds
->lvds_gen_cntl
|= RADEON_LVDS_BL_CLK_SEL
;
1301 lvds
->lvds_gen_cntl
|= (panel_setup
& 0xf0000000);
1303 for (i
= 0; i
< 32; i
++) {
1304 tmp
= RBIOS16(lcd_info
+ 64 + i
* 2);
1308 if ((RBIOS16(tmp
) == lvds
->native_mode
.hdisplay
) &&
1309 (RBIOS16(tmp
+ 2) == lvds
->native_mode
.vdisplay
)) {
1310 lvds
->native_mode
.htotal
= lvds
->native_mode
.hdisplay
+
1311 (RBIOS16(tmp
+ 17) - RBIOS16(tmp
+ 19)) * 8;
1312 lvds
->native_mode
.hsync_start
= lvds
->native_mode
.hdisplay
+
1313 (RBIOS16(tmp
+ 21) - RBIOS16(tmp
+ 19) - 1) * 8;
1314 lvds
->native_mode
.hsync_end
= lvds
->native_mode
.hsync_start
+
1315 (RBIOS8(tmp
+ 23) * 8);
1317 lvds
->native_mode
.vtotal
= lvds
->native_mode
.vdisplay
+
1318 (RBIOS16(tmp
+ 24) - RBIOS16(tmp
+ 26));
1319 lvds
->native_mode
.vsync_start
= lvds
->native_mode
.vdisplay
+
1320 ((RBIOS16(tmp
+ 28) & 0x7ff) - RBIOS16(tmp
+ 26));
1321 lvds
->native_mode
.vsync_end
= lvds
->native_mode
.vsync_start
+
1322 ((RBIOS16(tmp
+ 28) & 0xf800) >> 11);
1324 lvds
->native_mode
.clock
= RBIOS16(tmp
+ 9) * 10;
1325 lvds
->native_mode
.flags
= 0;
1326 /* set crtc values */
1327 drm_mode_set_crtcinfo(&lvds
->native_mode
, CRTC_INTERLACE_HALVE_V
);
1332 DRM_INFO("No panel info found in BIOS\n");
1333 lvds
= radeon_legacy_get_lvds_info_from_regs(rdev
);
1337 encoder
->native_mode
= lvds
->native_mode
;
1341 static const struct radeon_tmds_pll default_tmds_pll
[CHIP_LAST
][4] = {
1342 {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_R100 */
1343 {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_RV100 */
1344 {{0, 0}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_RS100 */
1345 {{15000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_RV200 */
1346 {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_RS200 */
1347 {{15000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_R200 */
1348 {{15500, 0x81b}, {0xffffffff, 0x83f}, {0, 0}, {0, 0}}, /* CHIP_RV250 */
1349 {{0, 0}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_RS300 */
1350 {{13000, 0x400f4}, {15000, 0x400f7}, {0xffffffff, 0x40111}, {0, 0}}, /* CHIP_RV280 */
1351 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R300 */
1352 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R350 */
1353 {{15000, 0xb0155}, {0xffffffff, 0xb01cb}, {0, 0}, {0, 0}}, /* CHIP_RV350 */
1354 {{15000, 0xb0155}, {0xffffffff, 0xb01cb}, {0, 0}, {0, 0}}, /* CHIP_RV380 */
1355 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R420 */
1356 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R423 */
1357 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_RV410 */
1358 { {0, 0}, {0, 0}, {0, 0}, {0, 0} }, /* CHIP_RS400 */
1359 { {0, 0}, {0, 0}, {0, 0}, {0, 0} }, /* CHIP_RS480 */
1362 bool radeon_legacy_get_tmds_info_from_table(struct radeon_encoder
*encoder
,
1363 struct radeon_encoder_int_tmds
*tmds
)
1365 struct drm_device
*dev
= encoder
->base
.dev
;
1366 struct radeon_device
*rdev
= dev
->dev_private
;
1369 for (i
= 0; i
< 4; i
++) {
1370 tmds
->tmds_pll
[i
].value
=
1371 default_tmds_pll
[rdev
->family
][i
].value
;
1372 tmds
->tmds_pll
[i
].freq
= default_tmds_pll
[rdev
->family
][i
].freq
;
1378 bool radeon_legacy_get_tmds_info_from_combios(struct radeon_encoder
*encoder
,
1379 struct radeon_encoder_int_tmds
*tmds
)
1381 struct drm_device
*dev
= encoder
->base
.dev
;
1382 struct radeon_device
*rdev
= dev
->dev_private
;
1387 tmds_info
= combios_get_table_offset(dev
, COMBIOS_DFP_INFO_TABLE
);
1390 ver
= RBIOS8(tmds_info
);
1391 DRM_DEBUG_KMS("DFP table revision: %d\n", ver
);
1393 n
= RBIOS8(tmds_info
+ 5) + 1;
1396 for (i
= 0; i
< n
; i
++) {
1397 tmds
->tmds_pll
[i
].value
=
1398 RBIOS32(tmds_info
+ i
* 10 + 0x08);
1399 tmds
->tmds_pll
[i
].freq
=
1400 RBIOS16(tmds_info
+ i
* 10 + 0x10);
1401 DRM_DEBUG_KMS("TMDS PLL From COMBIOS %u %x\n",
1402 tmds
->tmds_pll
[i
].freq
,
1403 tmds
->tmds_pll
[i
].value
);
1405 } else if (ver
== 4) {
1407 n
= RBIOS8(tmds_info
+ 5) + 1;
1410 for (i
= 0; i
< n
; i
++) {
1411 tmds
->tmds_pll
[i
].value
=
1412 RBIOS32(tmds_info
+ stride
+ 0x08);
1413 tmds
->tmds_pll
[i
].freq
=
1414 RBIOS16(tmds_info
+ stride
+ 0x10);
1419 DRM_DEBUG_KMS("TMDS PLL From COMBIOS %u %x\n",
1420 tmds
->tmds_pll
[i
].freq
,
1421 tmds
->tmds_pll
[i
].value
);
1425 DRM_INFO("No TMDS info found in BIOS\n");
1431 bool radeon_legacy_get_ext_tmds_info_from_table(struct radeon_encoder
*encoder
,
1432 struct radeon_encoder_ext_tmds
*tmds
)
1434 struct drm_device
*dev
= encoder
->base
.dev
;
1435 struct radeon_device
*rdev
= dev
->dev_private
;
1436 struct radeon_i2c_bus_rec i2c_bus
;
1438 /* default for macs */
1439 i2c_bus
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
1440 tmds
->i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
1442 /* XXX some macs have duallink chips */
1443 switch (rdev
->mode_info
.connector_table
) {
1444 case CT_POWERBOOK_EXTERNAL
:
1445 case CT_MINI_EXTERNAL
:
1447 tmds
->dvo_chip
= DVO_SIL164
;
1448 tmds
->slave_addr
= 0x70 >> 1; /* 7 bit addressing */
1455 bool radeon_legacy_get_ext_tmds_info_from_combios(struct radeon_encoder
*encoder
,
1456 struct radeon_encoder_ext_tmds
*tmds
)
1458 struct drm_device
*dev
= encoder
->base
.dev
;
1459 struct radeon_device
*rdev
= dev
->dev_private
;
1462 enum radeon_combios_ddc gpio
;
1463 struct radeon_i2c_bus_rec i2c_bus
;
1465 tmds
->i2c_bus
= NULL
;
1466 if (rdev
->flags
& RADEON_IS_IGP
) {
1467 i2c_bus
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
1468 tmds
->i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
1469 tmds
->dvo_chip
= DVO_SIL164
;
1470 tmds
->slave_addr
= 0x70 >> 1; /* 7 bit addressing */
1472 offset
= combios_get_table_offset(dev
, COMBIOS_EXT_TMDS_INFO_TABLE
);
1474 ver
= RBIOS8(offset
);
1475 DRM_DEBUG_KMS("External TMDS Table revision: %d\n", ver
);
1476 tmds
->slave_addr
= RBIOS8(offset
+ 4 + 2);
1477 tmds
->slave_addr
>>= 1; /* 7 bit addressing */
1478 gpio
= RBIOS8(offset
+ 4 + 3);
1479 if (gpio
== DDC_LCD
) {
1481 i2c_bus
.valid
= true;
1482 i2c_bus
.hw_capable
= true;
1483 i2c_bus
.mm_i2c
= true;
1484 i2c_bus
.i2c_id
= 0xa0;
1486 i2c_bus
= combios_setup_i2c_bus(rdev
, gpio
, 0, 0);
1487 tmds
->i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
1491 if (!tmds
->i2c_bus
) {
1492 DRM_INFO("No valid Ext TMDS info found in BIOS\n");
1499 bool radeon_get_legacy_connector_info_from_table(struct drm_device
*dev
)
1501 struct radeon_device
*rdev
= dev
->dev_private
;
1502 struct radeon_i2c_bus_rec ddc_i2c
;
1503 struct radeon_hpd hpd
;
1505 rdev
->mode_info
.connector_table
= radeon_connector_table
;
1506 if (rdev
->mode_info
.connector_table
== CT_NONE
) {
1507 #ifdef CONFIG_PPC_PMAC
1508 if (of_machine_is_compatible("PowerBook3,3")) {
1509 /* powerbook with VGA */
1510 rdev
->mode_info
.connector_table
= CT_POWERBOOK_VGA
;
1511 } else if (of_machine_is_compatible("PowerBook3,4") ||
1512 of_machine_is_compatible("PowerBook3,5")) {
1513 /* powerbook with internal tmds */
1514 rdev
->mode_info
.connector_table
= CT_POWERBOOK_INTERNAL
;
1515 } else if (of_machine_is_compatible("PowerBook5,1") ||
1516 of_machine_is_compatible("PowerBook5,2") ||
1517 of_machine_is_compatible("PowerBook5,3") ||
1518 of_machine_is_compatible("PowerBook5,4") ||
1519 of_machine_is_compatible("PowerBook5,5")) {
1520 /* powerbook with external single link tmds (sil164) */
1521 rdev
->mode_info
.connector_table
= CT_POWERBOOK_EXTERNAL
;
1522 } else if (of_machine_is_compatible("PowerBook5,6")) {
1523 /* powerbook with external dual or single link tmds */
1524 rdev
->mode_info
.connector_table
= CT_POWERBOOK_EXTERNAL
;
1525 } else if (of_machine_is_compatible("PowerBook5,7") ||
1526 of_machine_is_compatible("PowerBook5,8") ||
1527 of_machine_is_compatible("PowerBook5,9")) {
1528 /* PowerBook6,2 ? */
1529 /* powerbook with external dual link tmds (sil1178?) */
1530 rdev
->mode_info
.connector_table
= CT_POWERBOOK_EXTERNAL
;
1531 } else if (of_machine_is_compatible("PowerBook4,1") ||
1532 of_machine_is_compatible("PowerBook4,2") ||
1533 of_machine_is_compatible("PowerBook4,3") ||
1534 of_machine_is_compatible("PowerBook6,3") ||
1535 of_machine_is_compatible("PowerBook6,5") ||
1536 of_machine_is_compatible("PowerBook6,7")) {
1538 rdev
->mode_info
.connector_table
= CT_IBOOK
;
1539 } else if (of_machine_is_compatible("PowerMac4,4")) {
1541 rdev
->mode_info
.connector_table
= CT_EMAC
;
1542 } else if (of_machine_is_compatible("PowerMac10,1")) {
1543 /* mini with internal tmds */
1544 rdev
->mode_info
.connector_table
= CT_MINI_INTERNAL
;
1545 } else if (of_machine_is_compatible("PowerMac10,2")) {
1546 /* mini with external tmds */
1547 rdev
->mode_info
.connector_table
= CT_MINI_EXTERNAL
;
1548 } else if (of_machine_is_compatible("PowerMac12,1")) {
1550 /* imac g5 isight */
1551 rdev
->mode_info
.connector_table
= CT_IMAC_G5_ISIGHT
;
1552 } else if ((rdev
->pdev
->device
== 0x4a48) &&
1553 (rdev
->pdev
->subsystem_vendor
== 0x1002) &&
1554 (rdev
->pdev
->subsystem_device
== 0x4a48)) {
1556 rdev
->mode_info
.connector_table
= CT_MAC_X800
;
1557 } else if ((of_machine_is_compatible("PowerMac7,2") ||
1558 of_machine_is_compatible("PowerMac7,3")) &&
1559 (rdev
->pdev
->device
== 0x4150) &&
1560 (rdev
->pdev
->subsystem_vendor
== 0x1002) &&
1561 (rdev
->pdev
->subsystem_device
== 0x4150)) {
1562 /* Mac G5 tower 9600 */
1563 rdev
->mode_info
.connector_table
= CT_MAC_G5_9600
;
1565 #endif /* CONFIG_PPC_PMAC */
1567 if (ASIC_IS_RN50(rdev
))
1568 rdev
->mode_info
.connector_table
= CT_RN50_POWER
;
1571 rdev
->mode_info
.connector_table
= CT_GENERIC
;
1574 switch (rdev
->mode_info
.connector_table
) {
1576 DRM_INFO("Connector Table: %d (generic)\n",
1577 rdev
->mode_info
.connector_table
);
1578 /* these are the most common settings */
1579 if (rdev
->flags
& RADEON_SINGLE_CRTC
) {
1580 /* VGA - primary dac */
1581 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1582 hpd
.hpd
= RADEON_HPD_NONE
;
1583 radeon_add_legacy_encoder(dev
,
1584 radeon_get_encoder_enum(dev
,
1585 ATOM_DEVICE_CRT1_SUPPORT
,
1587 ATOM_DEVICE_CRT1_SUPPORT
);
1588 radeon_add_legacy_connector(dev
, 0,
1589 ATOM_DEVICE_CRT1_SUPPORT
,
1590 DRM_MODE_CONNECTOR_VGA
,
1592 CONNECTOR_OBJECT_ID_VGA
,
1594 } else if (rdev
->flags
& RADEON_IS_MOBILITY
) {
1596 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_NONE_DETECTED
, 0, 0);
1597 hpd
.hpd
= RADEON_HPD_NONE
;
1598 radeon_add_legacy_encoder(dev
,
1599 radeon_get_encoder_enum(dev
,
1600 ATOM_DEVICE_LCD1_SUPPORT
,
1602 ATOM_DEVICE_LCD1_SUPPORT
);
1603 radeon_add_legacy_connector(dev
, 0,
1604 ATOM_DEVICE_LCD1_SUPPORT
,
1605 DRM_MODE_CONNECTOR_LVDS
,
1607 CONNECTOR_OBJECT_ID_LVDS
,
1610 /* VGA - primary dac */
1611 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1612 hpd
.hpd
= RADEON_HPD_NONE
;
1613 radeon_add_legacy_encoder(dev
,
1614 radeon_get_encoder_enum(dev
,
1615 ATOM_DEVICE_CRT1_SUPPORT
,
1617 ATOM_DEVICE_CRT1_SUPPORT
);
1618 radeon_add_legacy_connector(dev
, 1,
1619 ATOM_DEVICE_CRT1_SUPPORT
,
1620 DRM_MODE_CONNECTOR_VGA
,
1622 CONNECTOR_OBJECT_ID_VGA
,
1625 /* DVI-I - tv dac, int tmds */
1626 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1627 hpd
.hpd
= RADEON_HPD_1
;
1628 radeon_add_legacy_encoder(dev
,
1629 radeon_get_encoder_enum(dev
,
1630 ATOM_DEVICE_DFP1_SUPPORT
,
1632 ATOM_DEVICE_DFP1_SUPPORT
);
1633 radeon_add_legacy_encoder(dev
,
1634 radeon_get_encoder_enum(dev
,
1635 ATOM_DEVICE_CRT2_SUPPORT
,
1637 ATOM_DEVICE_CRT2_SUPPORT
);
1638 radeon_add_legacy_connector(dev
, 0,
1639 ATOM_DEVICE_DFP1_SUPPORT
|
1640 ATOM_DEVICE_CRT2_SUPPORT
,
1641 DRM_MODE_CONNECTOR_DVII
,
1643 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1646 /* VGA - primary dac */
1647 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1648 hpd
.hpd
= RADEON_HPD_NONE
;
1649 radeon_add_legacy_encoder(dev
,
1650 radeon_get_encoder_enum(dev
,
1651 ATOM_DEVICE_CRT1_SUPPORT
,
1653 ATOM_DEVICE_CRT1_SUPPORT
);
1654 radeon_add_legacy_connector(dev
, 1,
1655 ATOM_DEVICE_CRT1_SUPPORT
,
1656 DRM_MODE_CONNECTOR_VGA
,
1658 CONNECTOR_OBJECT_ID_VGA
,
1662 if (rdev
->family
!= CHIP_R100
&& rdev
->family
!= CHIP_R200
) {
1664 ddc_i2c
.valid
= false;
1665 hpd
.hpd
= RADEON_HPD_NONE
;
1666 radeon_add_legacy_encoder(dev
,
1667 radeon_get_encoder_enum(dev
,
1668 ATOM_DEVICE_TV1_SUPPORT
,
1670 ATOM_DEVICE_TV1_SUPPORT
);
1671 radeon_add_legacy_connector(dev
, 2,
1672 ATOM_DEVICE_TV1_SUPPORT
,
1673 DRM_MODE_CONNECTOR_SVIDEO
,
1675 CONNECTOR_OBJECT_ID_SVIDEO
,
1680 DRM_INFO("Connector Table: %d (ibook)\n",
1681 rdev
->mode_info
.connector_table
);
1683 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1684 hpd
.hpd
= RADEON_HPD_NONE
;
1685 radeon_add_legacy_encoder(dev
,
1686 radeon_get_encoder_enum(dev
,
1687 ATOM_DEVICE_LCD1_SUPPORT
,
1689 ATOM_DEVICE_LCD1_SUPPORT
);
1690 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1691 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1692 CONNECTOR_OBJECT_ID_LVDS
,
1695 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1696 hpd
.hpd
= RADEON_HPD_NONE
;
1697 radeon_add_legacy_encoder(dev
,
1698 radeon_get_encoder_enum(dev
,
1699 ATOM_DEVICE_CRT2_SUPPORT
,
1701 ATOM_DEVICE_CRT2_SUPPORT
);
1702 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
1703 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1704 CONNECTOR_OBJECT_ID_VGA
,
1707 ddc_i2c
.valid
= false;
1708 hpd
.hpd
= RADEON_HPD_NONE
;
1709 radeon_add_legacy_encoder(dev
,
1710 radeon_get_encoder_enum(dev
,
1711 ATOM_DEVICE_TV1_SUPPORT
,
1713 ATOM_DEVICE_TV1_SUPPORT
);
1714 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1715 DRM_MODE_CONNECTOR_SVIDEO
,
1717 CONNECTOR_OBJECT_ID_SVIDEO
,
1720 case CT_POWERBOOK_EXTERNAL
:
1721 DRM_INFO("Connector Table: %d (powerbook external tmds)\n",
1722 rdev
->mode_info
.connector_table
);
1724 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1725 hpd
.hpd
= RADEON_HPD_NONE
;
1726 radeon_add_legacy_encoder(dev
,
1727 radeon_get_encoder_enum(dev
,
1728 ATOM_DEVICE_LCD1_SUPPORT
,
1730 ATOM_DEVICE_LCD1_SUPPORT
);
1731 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1732 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1733 CONNECTOR_OBJECT_ID_LVDS
,
1735 /* DVI-I - primary dac, ext tmds */
1736 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1737 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
1738 radeon_add_legacy_encoder(dev
,
1739 radeon_get_encoder_enum(dev
,
1740 ATOM_DEVICE_DFP2_SUPPORT
,
1742 ATOM_DEVICE_DFP2_SUPPORT
);
1743 radeon_add_legacy_encoder(dev
,
1744 radeon_get_encoder_enum(dev
,
1745 ATOM_DEVICE_CRT1_SUPPORT
,
1747 ATOM_DEVICE_CRT1_SUPPORT
);
1748 /* XXX some are SL */
1749 radeon_add_legacy_connector(dev
, 1,
1750 ATOM_DEVICE_DFP2_SUPPORT
|
1751 ATOM_DEVICE_CRT1_SUPPORT
,
1752 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1753 CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
,
1756 ddc_i2c
.valid
= false;
1757 hpd
.hpd
= RADEON_HPD_NONE
;
1758 radeon_add_legacy_encoder(dev
,
1759 radeon_get_encoder_enum(dev
,
1760 ATOM_DEVICE_TV1_SUPPORT
,
1762 ATOM_DEVICE_TV1_SUPPORT
);
1763 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1764 DRM_MODE_CONNECTOR_SVIDEO
,
1766 CONNECTOR_OBJECT_ID_SVIDEO
,
1769 case CT_POWERBOOK_INTERNAL
:
1770 DRM_INFO("Connector Table: %d (powerbook internal tmds)\n",
1771 rdev
->mode_info
.connector_table
);
1773 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1774 hpd
.hpd
= RADEON_HPD_NONE
;
1775 radeon_add_legacy_encoder(dev
,
1776 radeon_get_encoder_enum(dev
,
1777 ATOM_DEVICE_LCD1_SUPPORT
,
1779 ATOM_DEVICE_LCD1_SUPPORT
);
1780 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1781 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1782 CONNECTOR_OBJECT_ID_LVDS
,
1784 /* DVI-I - primary dac, int tmds */
1785 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1786 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
1787 radeon_add_legacy_encoder(dev
,
1788 radeon_get_encoder_enum(dev
,
1789 ATOM_DEVICE_DFP1_SUPPORT
,
1791 ATOM_DEVICE_DFP1_SUPPORT
);
1792 radeon_add_legacy_encoder(dev
,
1793 radeon_get_encoder_enum(dev
,
1794 ATOM_DEVICE_CRT1_SUPPORT
,
1796 ATOM_DEVICE_CRT1_SUPPORT
);
1797 radeon_add_legacy_connector(dev
, 1,
1798 ATOM_DEVICE_DFP1_SUPPORT
|
1799 ATOM_DEVICE_CRT1_SUPPORT
,
1800 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1801 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1804 ddc_i2c
.valid
= false;
1805 hpd
.hpd
= RADEON_HPD_NONE
;
1806 radeon_add_legacy_encoder(dev
,
1807 radeon_get_encoder_enum(dev
,
1808 ATOM_DEVICE_TV1_SUPPORT
,
1810 ATOM_DEVICE_TV1_SUPPORT
);
1811 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1812 DRM_MODE_CONNECTOR_SVIDEO
,
1814 CONNECTOR_OBJECT_ID_SVIDEO
,
1817 case CT_POWERBOOK_VGA
:
1818 DRM_INFO("Connector Table: %d (powerbook vga)\n",
1819 rdev
->mode_info
.connector_table
);
1821 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1822 hpd
.hpd
= RADEON_HPD_NONE
;
1823 radeon_add_legacy_encoder(dev
,
1824 radeon_get_encoder_enum(dev
,
1825 ATOM_DEVICE_LCD1_SUPPORT
,
1827 ATOM_DEVICE_LCD1_SUPPORT
);
1828 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1829 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1830 CONNECTOR_OBJECT_ID_LVDS
,
1832 /* VGA - primary dac */
1833 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1834 hpd
.hpd
= RADEON_HPD_NONE
;
1835 radeon_add_legacy_encoder(dev
,
1836 radeon_get_encoder_enum(dev
,
1837 ATOM_DEVICE_CRT1_SUPPORT
,
1839 ATOM_DEVICE_CRT1_SUPPORT
);
1840 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT1_SUPPORT
,
1841 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1842 CONNECTOR_OBJECT_ID_VGA
,
1845 ddc_i2c
.valid
= false;
1846 hpd
.hpd
= RADEON_HPD_NONE
;
1847 radeon_add_legacy_encoder(dev
,
1848 radeon_get_encoder_enum(dev
,
1849 ATOM_DEVICE_TV1_SUPPORT
,
1851 ATOM_DEVICE_TV1_SUPPORT
);
1852 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1853 DRM_MODE_CONNECTOR_SVIDEO
,
1855 CONNECTOR_OBJECT_ID_SVIDEO
,
1858 case CT_MINI_EXTERNAL
:
1859 DRM_INFO("Connector Table: %d (mini external tmds)\n",
1860 rdev
->mode_info
.connector_table
);
1861 /* DVI-I - tv dac, ext tmds */
1862 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
1863 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
1864 radeon_add_legacy_encoder(dev
,
1865 radeon_get_encoder_enum(dev
,
1866 ATOM_DEVICE_DFP2_SUPPORT
,
1868 ATOM_DEVICE_DFP2_SUPPORT
);
1869 radeon_add_legacy_encoder(dev
,
1870 radeon_get_encoder_enum(dev
,
1871 ATOM_DEVICE_CRT2_SUPPORT
,
1873 ATOM_DEVICE_CRT2_SUPPORT
);
1874 /* XXX are any DL? */
1875 radeon_add_legacy_connector(dev
, 0,
1876 ATOM_DEVICE_DFP2_SUPPORT
|
1877 ATOM_DEVICE_CRT2_SUPPORT
,
1878 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1879 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1882 ddc_i2c
.valid
= false;
1883 hpd
.hpd
= RADEON_HPD_NONE
;
1884 radeon_add_legacy_encoder(dev
,
1885 radeon_get_encoder_enum(dev
,
1886 ATOM_DEVICE_TV1_SUPPORT
,
1888 ATOM_DEVICE_TV1_SUPPORT
);
1889 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_TV1_SUPPORT
,
1890 DRM_MODE_CONNECTOR_SVIDEO
,
1892 CONNECTOR_OBJECT_ID_SVIDEO
,
1895 case CT_MINI_INTERNAL
:
1896 DRM_INFO("Connector Table: %d (mini internal tmds)\n",
1897 rdev
->mode_info
.connector_table
);
1898 /* DVI-I - tv dac, int tmds */
1899 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
1900 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
1901 radeon_add_legacy_encoder(dev
,
1902 radeon_get_encoder_enum(dev
,
1903 ATOM_DEVICE_DFP1_SUPPORT
,
1905 ATOM_DEVICE_DFP1_SUPPORT
);
1906 radeon_add_legacy_encoder(dev
,
1907 radeon_get_encoder_enum(dev
,
1908 ATOM_DEVICE_CRT2_SUPPORT
,
1910 ATOM_DEVICE_CRT2_SUPPORT
);
1911 radeon_add_legacy_connector(dev
, 0,
1912 ATOM_DEVICE_DFP1_SUPPORT
|
1913 ATOM_DEVICE_CRT2_SUPPORT
,
1914 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1915 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1918 ddc_i2c
.valid
= false;
1919 hpd
.hpd
= RADEON_HPD_NONE
;
1920 radeon_add_legacy_encoder(dev
,
1921 radeon_get_encoder_enum(dev
,
1922 ATOM_DEVICE_TV1_SUPPORT
,
1924 ATOM_DEVICE_TV1_SUPPORT
);
1925 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_TV1_SUPPORT
,
1926 DRM_MODE_CONNECTOR_SVIDEO
,
1928 CONNECTOR_OBJECT_ID_SVIDEO
,
1931 case CT_IMAC_G5_ISIGHT
:
1932 DRM_INFO("Connector Table: %d (imac g5 isight)\n",
1933 rdev
->mode_info
.connector_table
);
1934 /* DVI-D - int tmds */
1935 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
1936 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
1937 radeon_add_legacy_encoder(dev
,
1938 radeon_get_encoder_enum(dev
,
1939 ATOM_DEVICE_DFP1_SUPPORT
,
1941 ATOM_DEVICE_DFP1_SUPPORT
);
1942 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_DFP1_SUPPORT
,
1943 DRM_MODE_CONNECTOR_DVID
, &ddc_i2c
,
1944 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
,
1947 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1948 hpd
.hpd
= RADEON_HPD_NONE
;
1949 radeon_add_legacy_encoder(dev
,
1950 radeon_get_encoder_enum(dev
,
1951 ATOM_DEVICE_CRT2_SUPPORT
,
1953 ATOM_DEVICE_CRT2_SUPPORT
);
1954 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
1955 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1956 CONNECTOR_OBJECT_ID_VGA
,
1959 ddc_i2c
.valid
= false;
1960 hpd
.hpd
= RADEON_HPD_NONE
;
1961 radeon_add_legacy_encoder(dev
,
1962 radeon_get_encoder_enum(dev
,
1963 ATOM_DEVICE_TV1_SUPPORT
,
1965 ATOM_DEVICE_TV1_SUPPORT
);
1966 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1967 DRM_MODE_CONNECTOR_SVIDEO
,
1969 CONNECTOR_OBJECT_ID_SVIDEO
,
1973 DRM_INFO("Connector Table: %d (emac)\n",
1974 rdev
->mode_info
.connector_table
);
1975 /* VGA - primary dac */
1976 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1977 hpd
.hpd
= RADEON_HPD_NONE
;
1978 radeon_add_legacy_encoder(dev
,
1979 radeon_get_encoder_enum(dev
,
1980 ATOM_DEVICE_CRT1_SUPPORT
,
1982 ATOM_DEVICE_CRT1_SUPPORT
);
1983 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_CRT1_SUPPORT
,
1984 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1985 CONNECTOR_OBJECT_ID_VGA
,
1988 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
1989 hpd
.hpd
= RADEON_HPD_NONE
;
1990 radeon_add_legacy_encoder(dev
,
1991 radeon_get_encoder_enum(dev
,
1992 ATOM_DEVICE_CRT2_SUPPORT
,
1994 ATOM_DEVICE_CRT2_SUPPORT
);
1995 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
1996 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1997 CONNECTOR_OBJECT_ID_VGA
,
2000 ddc_i2c
.valid
= false;
2001 hpd
.hpd
= RADEON_HPD_NONE
;
2002 radeon_add_legacy_encoder(dev
,
2003 radeon_get_encoder_enum(dev
,
2004 ATOM_DEVICE_TV1_SUPPORT
,
2006 ATOM_DEVICE_TV1_SUPPORT
);
2007 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
2008 DRM_MODE_CONNECTOR_SVIDEO
,
2010 CONNECTOR_OBJECT_ID_SVIDEO
,
2014 DRM_INFO("Connector Table: %d (rn50-power)\n",
2015 rdev
->mode_info
.connector_table
);
2016 /* VGA - primary dac */
2017 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2018 hpd
.hpd
= RADEON_HPD_NONE
;
2019 radeon_add_legacy_encoder(dev
,
2020 radeon_get_encoder_enum(dev
,
2021 ATOM_DEVICE_CRT1_SUPPORT
,
2023 ATOM_DEVICE_CRT1_SUPPORT
);
2024 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_CRT1_SUPPORT
,
2025 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2026 CONNECTOR_OBJECT_ID_VGA
,
2028 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
2029 hpd
.hpd
= RADEON_HPD_NONE
;
2030 radeon_add_legacy_encoder(dev
,
2031 radeon_get_encoder_enum(dev
,
2032 ATOM_DEVICE_CRT2_SUPPORT
,
2034 ATOM_DEVICE_CRT2_SUPPORT
);
2035 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
2036 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2037 CONNECTOR_OBJECT_ID_VGA
,
2041 DRM_INFO("Connector Table: %d (mac x800)\n",
2042 rdev
->mode_info
.connector_table
);
2043 /* DVI - primary dac, internal tmds */
2044 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2045 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
2046 radeon_add_legacy_encoder(dev
,
2047 radeon_get_encoder_enum(dev
,
2048 ATOM_DEVICE_DFP1_SUPPORT
,
2050 ATOM_DEVICE_DFP1_SUPPORT
);
2051 radeon_add_legacy_encoder(dev
,
2052 radeon_get_encoder_enum(dev
,
2053 ATOM_DEVICE_CRT1_SUPPORT
,
2055 ATOM_DEVICE_CRT1_SUPPORT
);
2056 radeon_add_legacy_connector(dev
, 0,
2057 ATOM_DEVICE_DFP1_SUPPORT
|
2058 ATOM_DEVICE_CRT1_SUPPORT
,
2059 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2060 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2062 /* DVI - tv dac, dvo */
2063 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
2064 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
2065 radeon_add_legacy_encoder(dev
,
2066 radeon_get_encoder_enum(dev
,
2067 ATOM_DEVICE_DFP2_SUPPORT
,
2069 ATOM_DEVICE_DFP2_SUPPORT
);
2070 radeon_add_legacy_encoder(dev
,
2071 radeon_get_encoder_enum(dev
,
2072 ATOM_DEVICE_CRT2_SUPPORT
,
2074 ATOM_DEVICE_CRT2_SUPPORT
);
2075 radeon_add_legacy_connector(dev
, 1,
2076 ATOM_DEVICE_DFP2_SUPPORT
|
2077 ATOM_DEVICE_CRT2_SUPPORT
,
2078 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2079 CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
,
2082 case CT_MAC_G5_9600
:
2083 DRM_INFO("Connector Table: %d (mac g5 9600)\n",
2084 rdev
->mode_info
.connector_table
);
2085 /* DVI - tv dac, dvo */
2086 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2087 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
2088 radeon_add_legacy_encoder(dev
,
2089 radeon_get_encoder_enum(dev
,
2090 ATOM_DEVICE_DFP2_SUPPORT
,
2092 ATOM_DEVICE_DFP2_SUPPORT
);
2093 radeon_add_legacy_encoder(dev
,
2094 radeon_get_encoder_enum(dev
,
2095 ATOM_DEVICE_CRT2_SUPPORT
,
2097 ATOM_DEVICE_CRT2_SUPPORT
);
2098 radeon_add_legacy_connector(dev
, 0,
2099 ATOM_DEVICE_DFP2_SUPPORT
|
2100 ATOM_DEVICE_CRT2_SUPPORT
,
2101 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2102 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2104 /* ADC - primary dac, internal tmds */
2105 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2106 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
2107 radeon_add_legacy_encoder(dev
,
2108 radeon_get_encoder_enum(dev
,
2109 ATOM_DEVICE_DFP1_SUPPORT
,
2111 ATOM_DEVICE_DFP1_SUPPORT
);
2112 radeon_add_legacy_encoder(dev
,
2113 radeon_get_encoder_enum(dev
,
2114 ATOM_DEVICE_CRT1_SUPPORT
,
2116 ATOM_DEVICE_CRT1_SUPPORT
);
2117 radeon_add_legacy_connector(dev
, 1,
2118 ATOM_DEVICE_DFP1_SUPPORT
|
2119 ATOM_DEVICE_CRT1_SUPPORT
,
2120 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2121 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2124 ddc_i2c
.valid
= false;
2125 hpd
.hpd
= RADEON_HPD_NONE
;
2126 radeon_add_legacy_encoder(dev
,
2127 radeon_get_encoder_enum(dev
,
2128 ATOM_DEVICE_TV1_SUPPORT
,
2130 ATOM_DEVICE_TV1_SUPPORT
);
2131 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
2132 DRM_MODE_CONNECTOR_SVIDEO
,
2134 CONNECTOR_OBJECT_ID_SVIDEO
,
2138 DRM_INFO("Connector table: %d (invalid)\n",
2139 rdev
->mode_info
.connector_table
);
2143 radeon_link_encoder_connector(dev
);
2148 static bool radeon_apply_legacy_quirks(struct drm_device
*dev
,
2150 enum radeon_combios_connector
2152 struct radeon_i2c_bus_rec
*ddc_i2c
,
2153 struct radeon_hpd
*hpd
)
2156 /* Certain IBM chipset RN50s have a BIOS reporting two VGAs,
2157 one with VGA DDC and one with CRT2 DDC. - kill the CRT2 DDC one */
2158 if (dev
->pdev
->device
== 0x515e &&
2159 dev
->pdev
->subsystem_vendor
== 0x1014) {
2160 if (*legacy_connector
== CONNECTOR_CRT_LEGACY
&&
2161 ddc_i2c
->mask_clk_reg
== RADEON_GPIO_CRT2_DDC
)
2165 /* X300 card with extra non-existent DVI port */
2166 if (dev
->pdev
->device
== 0x5B60 &&
2167 dev
->pdev
->subsystem_vendor
== 0x17af &&
2168 dev
->pdev
->subsystem_device
== 0x201e && bios_index
== 2) {
2169 if (*legacy_connector
== CONNECTOR_DVI_I_LEGACY
)
2176 static bool radeon_apply_legacy_tv_quirks(struct drm_device
*dev
)
2178 /* Acer 5102 has non-existent TV port */
2179 if (dev
->pdev
->device
== 0x5975 &&
2180 dev
->pdev
->subsystem_vendor
== 0x1025 &&
2181 dev
->pdev
->subsystem_device
== 0x009f)
2184 /* HP dc5750 has non-existent TV port */
2185 if (dev
->pdev
->device
== 0x5974 &&
2186 dev
->pdev
->subsystem_vendor
== 0x103c &&
2187 dev
->pdev
->subsystem_device
== 0x280a)
2190 /* MSI S270 has non-existent TV port */
2191 if (dev
->pdev
->device
== 0x5955 &&
2192 dev
->pdev
->subsystem_vendor
== 0x1462 &&
2193 dev
->pdev
->subsystem_device
== 0x0131)
2199 static uint16_t combios_check_dl_dvi(struct drm_device
*dev
, int is_dvi_d
)
2201 struct radeon_device
*rdev
= dev
->dev_private
;
2202 uint32_t ext_tmds_info
;
2204 if (rdev
->flags
& RADEON_IS_IGP
) {
2206 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
;
2208 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2210 ext_tmds_info
= combios_get_table_offset(dev
, COMBIOS_EXT_TMDS_INFO_TABLE
);
2211 if (ext_tmds_info
) {
2212 uint8_t rev
= RBIOS8(ext_tmds_info
);
2213 uint8_t flags
= RBIOS8(ext_tmds_info
+ 4 + 5);
2216 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D
;
2218 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
;
2222 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D
;
2224 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
;
2229 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
;
2231 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2234 bool radeon_get_legacy_connector_info_from_bios(struct drm_device
*dev
)
2236 struct radeon_device
*rdev
= dev
->dev_private
;
2237 uint32_t conn_info
, entry
, devices
;
2238 uint16_t tmp
, connector_object_id
;
2239 enum radeon_combios_ddc ddc_type
;
2240 enum radeon_combios_connector connector
;
2242 struct radeon_i2c_bus_rec ddc_i2c
;
2243 struct radeon_hpd hpd
;
2245 conn_info
= combios_get_table_offset(dev
, COMBIOS_CONNECTOR_INFO_TABLE
);
2247 for (i
= 0; i
< 4; i
++) {
2248 entry
= conn_info
+ 2 + i
* 2;
2250 if (!RBIOS16(entry
))
2253 tmp
= RBIOS16(entry
);
2255 connector
= (tmp
>> 12) & 0xf;
2257 ddc_type
= (tmp
>> 8) & 0xf;
2258 ddc_i2c
= combios_setup_i2c_bus(rdev
, ddc_type
, 0, 0);
2260 switch (connector
) {
2261 case CONNECTOR_PROPRIETARY_LEGACY
:
2262 case CONNECTOR_DVI_I_LEGACY
:
2263 case CONNECTOR_DVI_D_LEGACY
:
2264 if ((tmp
>> 4) & 0x1)
2265 hpd
.hpd
= RADEON_HPD_2
;
2267 hpd
.hpd
= RADEON_HPD_1
;
2270 hpd
.hpd
= RADEON_HPD_NONE
;
2274 if (!radeon_apply_legacy_quirks(dev
, i
, &connector
,
2278 switch (connector
) {
2279 case CONNECTOR_PROPRIETARY_LEGACY
:
2280 if ((tmp
>> 4) & 0x1)
2281 devices
= ATOM_DEVICE_DFP2_SUPPORT
;
2283 devices
= ATOM_DEVICE_DFP1_SUPPORT
;
2284 radeon_add_legacy_encoder(dev
,
2285 radeon_get_encoder_enum
2288 radeon_add_legacy_connector(dev
, i
, devices
,
2289 legacy_connector_convert
2292 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
,
2295 case CONNECTOR_CRT_LEGACY
:
2297 devices
= ATOM_DEVICE_CRT2_SUPPORT
;
2298 radeon_add_legacy_encoder(dev
,
2299 radeon_get_encoder_enum
2301 ATOM_DEVICE_CRT2_SUPPORT
,
2303 ATOM_DEVICE_CRT2_SUPPORT
);
2305 devices
= ATOM_DEVICE_CRT1_SUPPORT
;
2306 radeon_add_legacy_encoder(dev
,
2307 radeon_get_encoder_enum
2309 ATOM_DEVICE_CRT1_SUPPORT
,
2311 ATOM_DEVICE_CRT1_SUPPORT
);
2313 radeon_add_legacy_connector(dev
,
2316 legacy_connector_convert
2319 CONNECTOR_OBJECT_ID_VGA
,
2322 case CONNECTOR_DVI_I_LEGACY
:
2325 devices
|= ATOM_DEVICE_CRT2_SUPPORT
;
2326 radeon_add_legacy_encoder(dev
,
2327 radeon_get_encoder_enum
2329 ATOM_DEVICE_CRT2_SUPPORT
,
2331 ATOM_DEVICE_CRT2_SUPPORT
);
2333 devices
|= ATOM_DEVICE_CRT1_SUPPORT
;
2334 radeon_add_legacy_encoder(dev
,
2335 radeon_get_encoder_enum
2337 ATOM_DEVICE_CRT1_SUPPORT
,
2339 ATOM_DEVICE_CRT1_SUPPORT
);
2341 if ((tmp
>> 4) & 0x1) {
2342 devices
|= ATOM_DEVICE_DFP2_SUPPORT
;
2343 radeon_add_legacy_encoder(dev
,
2344 radeon_get_encoder_enum
2346 ATOM_DEVICE_DFP2_SUPPORT
,
2348 ATOM_DEVICE_DFP2_SUPPORT
);
2349 connector_object_id
= combios_check_dl_dvi(dev
, 0);
2351 devices
|= ATOM_DEVICE_DFP1_SUPPORT
;
2352 radeon_add_legacy_encoder(dev
,
2353 radeon_get_encoder_enum
2355 ATOM_DEVICE_DFP1_SUPPORT
,
2357 ATOM_DEVICE_DFP1_SUPPORT
);
2358 connector_object_id
= CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2360 radeon_add_legacy_connector(dev
,
2363 legacy_connector_convert
2366 connector_object_id
,
2369 case CONNECTOR_DVI_D_LEGACY
:
2370 if ((tmp
>> 4) & 0x1) {
2371 devices
= ATOM_DEVICE_DFP2_SUPPORT
;
2372 connector_object_id
= combios_check_dl_dvi(dev
, 1);
2374 devices
= ATOM_DEVICE_DFP1_SUPPORT
;
2375 connector_object_id
= CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2377 radeon_add_legacy_encoder(dev
,
2378 radeon_get_encoder_enum
2381 radeon_add_legacy_connector(dev
, i
, devices
,
2382 legacy_connector_convert
2385 connector_object_id
,
2388 case CONNECTOR_CTV_LEGACY
:
2389 case CONNECTOR_STV_LEGACY
:
2390 radeon_add_legacy_encoder(dev
,
2391 radeon_get_encoder_enum
2393 ATOM_DEVICE_TV1_SUPPORT
,
2395 ATOM_DEVICE_TV1_SUPPORT
);
2396 radeon_add_legacy_connector(dev
, i
,
2397 ATOM_DEVICE_TV1_SUPPORT
,
2398 legacy_connector_convert
2401 CONNECTOR_OBJECT_ID_SVIDEO
,
2405 DRM_ERROR("Unknown connector type: %d\n",
2412 uint16_t tmds_info
=
2413 combios_get_table_offset(dev
, COMBIOS_DFP_INFO_TABLE
);
2415 DRM_DEBUG_KMS("Found DFP table, assuming DVI connector\n");
2417 radeon_add_legacy_encoder(dev
,
2418 radeon_get_encoder_enum(dev
,
2419 ATOM_DEVICE_CRT1_SUPPORT
,
2421 ATOM_DEVICE_CRT1_SUPPORT
);
2422 radeon_add_legacy_encoder(dev
,
2423 radeon_get_encoder_enum(dev
,
2424 ATOM_DEVICE_DFP1_SUPPORT
,
2426 ATOM_DEVICE_DFP1_SUPPORT
);
2428 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2429 hpd
.hpd
= RADEON_HPD_1
;
2430 radeon_add_legacy_connector(dev
,
2432 ATOM_DEVICE_CRT1_SUPPORT
|
2433 ATOM_DEVICE_DFP1_SUPPORT
,
2434 DRM_MODE_CONNECTOR_DVII
,
2436 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2440 combios_get_table_offset(dev
, COMBIOS_CRT_INFO_TABLE
);
2441 DRM_DEBUG_KMS("Found CRT table, assuming VGA connector\n");
2443 radeon_add_legacy_encoder(dev
,
2444 radeon_get_encoder_enum(dev
,
2445 ATOM_DEVICE_CRT1_SUPPORT
,
2447 ATOM_DEVICE_CRT1_SUPPORT
);
2448 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2449 hpd
.hpd
= RADEON_HPD_NONE
;
2450 radeon_add_legacy_connector(dev
,
2452 ATOM_DEVICE_CRT1_SUPPORT
,
2453 DRM_MODE_CONNECTOR_VGA
,
2455 CONNECTOR_OBJECT_ID_VGA
,
2458 DRM_DEBUG_KMS("No connector info found\n");
2464 if (rdev
->flags
& RADEON_IS_MOBILITY
|| rdev
->flags
& RADEON_IS_IGP
) {
2466 combios_get_table_offset(dev
, COMBIOS_LCD_INFO_TABLE
);
2468 uint16_t lcd_ddc_info
=
2469 combios_get_table_offset(dev
,
2470 COMBIOS_LCD_DDC_INFO_TABLE
);
2472 radeon_add_legacy_encoder(dev
,
2473 radeon_get_encoder_enum(dev
,
2474 ATOM_DEVICE_LCD1_SUPPORT
,
2476 ATOM_DEVICE_LCD1_SUPPORT
);
2479 ddc_type
= RBIOS8(lcd_ddc_info
+ 2);
2483 combios_setup_i2c_bus(rdev
,
2485 RBIOS32(lcd_ddc_info
+ 3),
2486 RBIOS32(lcd_ddc_info
+ 7));
2487 radeon_i2c_add(rdev
, &ddc_i2c
, "LCD");
2491 combios_setup_i2c_bus(rdev
,
2493 RBIOS32(lcd_ddc_info
+ 3),
2494 RBIOS32(lcd_ddc_info
+ 7));
2495 radeon_i2c_add(rdev
, &ddc_i2c
, "LCD");
2499 combios_setup_i2c_bus(rdev
, ddc_type
, 0, 0);
2502 DRM_DEBUG_KMS("LCD DDC Info Table found!\n");
2504 ddc_i2c
.valid
= false;
2506 hpd
.hpd
= RADEON_HPD_NONE
;
2507 radeon_add_legacy_connector(dev
,
2509 ATOM_DEVICE_LCD1_SUPPORT
,
2510 DRM_MODE_CONNECTOR_LVDS
,
2512 CONNECTOR_OBJECT_ID_LVDS
,
2517 /* check TV table */
2518 if (rdev
->family
!= CHIP_R100
&& rdev
->family
!= CHIP_R200
) {
2520 combios_get_table_offset(dev
, COMBIOS_TV_INFO_TABLE
);
2522 if (RBIOS8(tv_info
+ 6) == 'T') {
2523 if (radeon_apply_legacy_tv_quirks(dev
)) {
2524 hpd
.hpd
= RADEON_HPD_NONE
;
2525 ddc_i2c
.valid
= false;
2526 radeon_add_legacy_encoder(dev
,
2527 radeon_get_encoder_enum
2529 ATOM_DEVICE_TV1_SUPPORT
,
2531 ATOM_DEVICE_TV1_SUPPORT
);
2532 radeon_add_legacy_connector(dev
, 6,
2533 ATOM_DEVICE_TV1_SUPPORT
,
2534 DRM_MODE_CONNECTOR_SVIDEO
,
2536 CONNECTOR_OBJECT_ID_SVIDEO
,
2543 radeon_link_encoder_connector(dev
);
2548 static const char *thermal_controller_names
[] = {
2554 void radeon_combios_get_power_modes(struct radeon_device
*rdev
)
2556 struct drm_device
*dev
= rdev
->ddev
;
2557 u16 offset
, misc
, misc2
= 0;
2558 u8 rev
, blocks
, tmp
;
2559 int state_index
= 0;
2560 struct radeon_i2c_bus_rec i2c_bus
;
2562 rdev
->pm
.default_power_state_index
= -1;
2564 /* allocate 2 power states */
2565 rdev
->pm
.power_state
= kzalloc(sizeof(struct radeon_power_state
) * 2, GFP_KERNEL
);
2566 if (!rdev
->pm
.power_state
) {
2567 rdev
->pm
.default_power_state_index
= state_index
;
2568 rdev
->pm
.num_power_states
= 0;
2570 rdev
->pm
.current_power_state_index
= rdev
->pm
.default_power_state_index
;
2571 rdev
->pm
.current_clock_mode_index
= 0;
2575 /* check for a thermal chip */
2576 offset
= combios_get_table_offset(dev
, COMBIOS_OVERDRIVE_INFO_TABLE
);
2578 u8 thermal_controller
= 0, gpio
= 0, i2c_addr
= 0, clk_bit
= 0, data_bit
= 0;
2580 rev
= RBIOS8(offset
);
2583 thermal_controller
= RBIOS8(offset
+ 3);
2584 gpio
= RBIOS8(offset
+ 4) & 0x3f;
2585 i2c_addr
= RBIOS8(offset
+ 5);
2586 } else if (rev
== 1) {
2587 thermal_controller
= RBIOS8(offset
+ 4);
2588 gpio
= RBIOS8(offset
+ 5) & 0x3f;
2589 i2c_addr
= RBIOS8(offset
+ 6);
2590 } else if (rev
== 2) {
2591 thermal_controller
= RBIOS8(offset
+ 4);
2592 gpio
= RBIOS8(offset
+ 5) & 0x3f;
2593 i2c_addr
= RBIOS8(offset
+ 6);
2594 clk_bit
= RBIOS8(offset
+ 0xa);
2595 data_bit
= RBIOS8(offset
+ 0xb);
2597 if ((thermal_controller
> 0) && (thermal_controller
< 3)) {
2598 DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2599 thermal_controller_names
[thermal_controller
],
2601 if (gpio
== DDC_LCD
) {
2603 i2c_bus
.valid
= true;
2604 i2c_bus
.hw_capable
= true;
2605 i2c_bus
.mm_i2c
= true;
2606 i2c_bus
.i2c_id
= 0xa0;
2607 } else if (gpio
== DDC_GPIO
)
2608 i2c_bus
= combios_setup_i2c_bus(rdev
, gpio
, 1 << clk_bit
, 1 << data_bit
);
2610 i2c_bus
= combios_setup_i2c_bus(rdev
, gpio
, 0, 0);
2611 rdev
->pm
.i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
2612 if (rdev
->pm
.i2c_bus
) {
2613 struct i2c_board_info info
= { };
2614 const char *name
= thermal_controller_names
[thermal_controller
];
2615 info
.addr
= i2c_addr
>> 1;
2616 strlcpy(info
.type
, name
, sizeof(info
.type
));
2617 i2c_new_device(&rdev
->pm
.i2c_bus
->adapter
, &info
);
2621 /* boards with a thermal chip, but no overdrive table */
2623 /* Asus 9600xt has an f75375 on the monid bus */
2624 if ((dev
->pdev
->device
== 0x4152) &&
2625 (dev
->pdev
->subsystem_vendor
== 0x1043) &&
2626 (dev
->pdev
->subsystem_device
== 0xc002)) {
2627 i2c_bus
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
2628 rdev
->pm
.i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
2629 if (rdev
->pm
.i2c_bus
) {
2630 struct i2c_board_info info
= { };
2631 const char *name
= "f75375";
2633 strlcpy(info
.type
, name
, sizeof(info
.type
));
2634 i2c_new_device(&rdev
->pm
.i2c_bus
->adapter
, &info
);
2635 DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2641 if (rdev
->flags
& RADEON_IS_MOBILITY
) {
2642 offset
= combios_get_table_offset(dev
, COMBIOS_POWERPLAY_INFO_TABLE
);
2644 rev
= RBIOS8(offset
);
2645 blocks
= RBIOS8(offset
+ 0x2);
2646 /* power mode 0 tends to be the only valid one */
2647 rdev
->pm
.power_state
[state_index
].num_clock_modes
= 1;
2648 rdev
->pm
.power_state
[state_index
].clock_info
[0].mclk
= RBIOS32(offset
+ 0x5 + 0x2);
2649 rdev
->pm
.power_state
[state_index
].clock_info
[0].sclk
= RBIOS32(offset
+ 0x5 + 0x6);
2650 if ((rdev
->pm
.power_state
[state_index
].clock_info
[0].mclk
== 0) ||
2651 (rdev
->pm
.power_state
[state_index
].clock_info
[0].sclk
== 0))
2653 rdev
->pm
.power_state
[state_index
].type
=
2654 POWER_STATE_TYPE_BATTERY
;
2655 misc
= RBIOS16(offset
+ 0x5 + 0x0);
2657 misc2
= RBIOS16(offset
+ 0x5 + 0xe);
2658 rdev
->pm
.power_state
[state_index
].misc
= misc
;
2659 rdev
->pm
.power_state
[state_index
].misc2
= misc2
;
2661 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.type
= VOLTAGE_GPIO
;
2663 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.active_high
=
2666 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.active_high
=
2668 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.valid
= true;
2670 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.reg
=
2671 RBIOS16(offset
+ 0x5 + 0xb) * 4;
2672 tmp
= RBIOS8(offset
+ 0x5 + 0xd);
2673 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.mask
= (1 << tmp
);
2675 u8 entries
= RBIOS8(offset
+ 0x5 + 0xb);
2676 u16 voltage_table_offset
= RBIOS16(offset
+ 0x5 + 0xc);
2677 if (entries
&& voltage_table_offset
) {
2678 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.reg
=
2679 RBIOS16(voltage_table_offset
) * 4;
2680 tmp
= RBIOS8(voltage_table_offset
+ 0x2);
2681 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.mask
= (1 << tmp
);
2683 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.valid
= false;
2685 switch ((misc2
& 0x700) >> 8) {
2688 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 0;
2691 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 33;
2694 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 66;
2697 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 99;
2700 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 132;
2704 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.type
= VOLTAGE_NONE
;
2706 rdev
->pm
.power_state
[state_index
].pcie_lanes
=
2707 RBIOS8(offset
+ 0x5 + 0x10);
2708 rdev
->pm
.power_state
[state_index
].flags
= RADEON_PM_STATE_SINGLE_DISPLAY_ONLY
;
2711 /* XXX figure out some good default low power mode for mobility cards w/out power tables */
2714 /* XXX figure out some good default low power mode for desktop cards */
2718 /* add the default mode */
2719 rdev
->pm
.power_state
[state_index
].type
=
2720 POWER_STATE_TYPE_DEFAULT
;
2721 rdev
->pm
.power_state
[state_index
].num_clock_modes
= 1;
2722 rdev
->pm
.power_state
[state_index
].clock_info
[0].mclk
= rdev
->clock
.default_mclk
;
2723 rdev
->pm
.power_state
[state_index
].clock_info
[0].sclk
= rdev
->clock
.default_sclk
;
2724 rdev
->pm
.power_state
[state_index
].default_clock_mode
= &rdev
->pm
.power_state
[state_index
].clock_info
[0];
2725 if ((state_index
> 0) &&
2726 (rdev
->pm
.power_state
[0].clock_info
[0].voltage
.type
== VOLTAGE_GPIO
))
2727 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
=
2728 rdev
->pm
.power_state
[0].clock_info
[0].voltage
;
2730 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.type
= VOLTAGE_NONE
;
2731 rdev
->pm
.power_state
[state_index
].pcie_lanes
= 16;
2732 rdev
->pm
.power_state
[state_index
].flags
= 0;
2733 rdev
->pm
.default_power_state_index
= state_index
;
2734 rdev
->pm
.num_power_states
= state_index
+ 1;
2736 rdev
->pm
.current_power_state_index
= rdev
->pm
.default_power_state_index
;
2737 rdev
->pm
.current_clock_mode_index
= 0;
2740 void radeon_external_tmds_setup(struct drm_encoder
*encoder
)
2742 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
2743 struct radeon_encoder_ext_tmds
*tmds
= radeon_encoder
->enc_priv
;
2748 switch (tmds
->dvo_chip
) {
2751 radeon_i2c_put_byte(tmds
->i2c_bus
,
2754 radeon_i2c_put_byte(tmds
->i2c_bus
,
2757 radeon_i2c_put_byte(tmds
->i2c_bus
,
2760 radeon_i2c_put_byte(tmds
->i2c_bus
,
2763 radeon_i2c_put_byte(tmds
->i2c_bus
,
2768 /* sil 1178 - untested */
2787 bool radeon_combios_external_tmds_setup(struct drm_encoder
*encoder
)
2789 struct drm_device
*dev
= encoder
->dev
;
2790 struct radeon_device
*rdev
= dev
->dev_private
;
2791 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
2793 uint8_t blocks
, slave_addr
, rev
;
2795 uint32_t reg
, val
, and_mask
, or_mask
;
2796 struct radeon_encoder_ext_tmds
*tmds
= radeon_encoder
->enc_priv
;
2801 if (rdev
->flags
& RADEON_IS_IGP
) {
2802 offset
= combios_get_table_offset(dev
, COMBIOS_TMDS_POWER_ON_TABLE
);
2803 rev
= RBIOS8(offset
);
2805 rev
= RBIOS8(offset
);
2807 blocks
= RBIOS8(offset
+ 3);
2809 while (blocks
> 0) {
2810 id
= RBIOS16(index
);
2814 reg
= (id
& 0x1fff) * 4;
2815 val
= RBIOS32(index
);
2820 reg
= (id
& 0x1fff) * 4;
2821 and_mask
= RBIOS32(index
);
2823 or_mask
= RBIOS32(index
);
2826 val
= (val
& and_mask
) | or_mask
;
2830 val
= RBIOS16(index
);
2835 val
= RBIOS16(index
);
2840 slave_addr
= id
& 0xff;
2841 slave_addr
>>= 1; /* 7 bit addressing */
2843 reg
= RBIOS8(index
);
2845 val
= RBIOS8(index
);
2847 radeon_i2c_put_byte(tmds
->i2c_bus
,
2852 DRM_ERROR("Unknown id %d\n", id
>> 13);
2861 offset
= combios_get_table_offset(dev
, COMBIOS_EXT_TMDS_INFO_TABLE
);
2863 index
= offset
+ 10;
2864 id
= RBIOS16(index
);
2865 while (id
!= 0xffff) {
2869 reg
= (id
& 0x1fff) * 4;
2870 val
= RBIOS32(index
);
2874 reg
= (id
& 0x1fff) * 4;
2875 and_mask
= RBIOS32(index
);
2877 or_mask
= RBIOS32(index
);
2880 val
= (val
& and_mask
) | or_mask
;
2884 val
= RBIOS16(index
);
2890 and_mask
= RBIOS32(index
);
2892 or_mask
= RBIOS32(index
);
2894 val
= RREG32_PLL(reg
);
2895 val
= (val
& and_mask
) | or_mask
;
2896 WREG32_PLL(reg
, val
);
2900 val
= RBIOS8(index
);
2902 radeon_i2c_put_byte(tmds
->i2c_bus
,
2907 DRM_ERROR("Unknown id %d\n", id
>> 13);
2910 id
= RBIOS16(index
);
2918 static void combios_parse_mmio_table(struct drm_device
*dev
, uint16_t offset
)
2920 struct radeon_device
*rdev
= dev
->dev_private
;
2923 while (RBIOS16(offset
)) {
2924 uint16_t cmd
= ((RBIOS16(offset
) & 0xe000) >> 13);
2925 uint32_t addr
= (RBIOS16(offset
) & 0x1fff);
2926 uint32_t val
, and_mask
, or_mask
;
2932 val
= RBIOS32(offset
);
2937 val
= RBIOS32(offset
);
2942 and_mask
= RBIOS32(offset
);
2944 or_mask
= RBIOS32(offset
);
2952 and_mask
= RBIOS32(offset
);
2954 or_mask
= RBIOS32(offset
);
2962 val
= RBIOS16(offset
);
2967 val
= RBIOS16(offset
);
2974 (RADEON_CLK_PWRMGT_CNTL
) &
2981 if ((RREG32(RADEON_MC_STATUS
) &
2997 static void combios_parse_pll_table(struct drm_device
*dev
, uint16_t offset
)
2999 struct radeon_device
*rdev
= dev
->dev_private
;
3002 while (RBIOS8(offset
)) {
3003 uint8_t cmd
= ((RBIOS8(offset
) & 0xc0) >> 6);
3004 uint8_t addr
= (RBIOS8(offset
) & 0x3f);
3005 uint32_t val
, shift
, tmp
;
3006 uint32_t and_mask
, or_mask
;
3011 val
= RBIOS32(offset
);
3013 WREG32_PLL(addr
, val
);
3016 shift
= RBIOS8(offset
) * 8;
3018 and_mask
= RBIOS8(offset
) << shift
;
3019 and_mask
|= ~(0xff << shift
);
3021 or_mask
= RBIOS8(offset
) << shift
;
3023 tmp
= RREG32_PLL(addr
);
3026 WREG32_PLL(addr
, tmp
);
3042 (RADEON_CLK_PWRMGT_CNTL
) &
3050 (RADEON_CLK_PWRMGT_CNTL
) &
3057 RREG32_PLL(RADEON_CLK_PWRMGT_CNTL
);
3058 if (tmp
& RADEON_CG_NO1_DEBUG_0
) {
3060 uint32_t mclk_cntl
=
3063 mclk_cntl
&= 0xffff0000;
3064 /*mclk_cntl |= 0x00001111;*//* ??? */
3065 WREG32_PLL(RADEON_MCLK_CNTL
,
3070 (RADEON_CLK_PWRMGT_CNTL
,
3072 ~RADEON_CG_NO1_DEBUG_0
);
3087 static void combios_parse_ram_reset_table(struct drm_device
*dev
,
3090 struct radeon_device
*rdev
= dev
->dev_private
;
3094 uint8_t val
= RBIOS8(offset
);
3095 while (val
!= 0xff) {
3099 uint32_t channel_complete_mask
;
3101 if (ASIC_IS_R300(rdev
))
3102 channel_complete_mask
=
3103 R300_MEM_PWRUP_COMPLETE
;
3105 channel_complete_mask
=
3106 RADEON_MEM_PWRUP_COMPLETE
;
3109 if ((RREG32(RADEON_MEM_STR_CNTL
) &
3110 channel_complete_mask
) ==
3111 channel_complete_mask
)
3115 uint32_t or_mask
= RBIOS16(offset
);
3118 tmp
= RREG32(RADEON_MEM_SDRAM_MODE_REG
);
3119 tmp
&= RADEON_SDRAM_MODE_MASK
;
3121 WREG32(RADEON_MEM_SDRAM_MODE_REG
, tmp
);
3123 or_mask
= val
<< 24;
3124 tmp
= RREG32(RADEON_MEM_SDRAM_MODE_REG
);
3125 tmp
&= RADEON_B3MEM_RESET_MASK
;
3127 WREG32(RADEON_MEM_SDRAM_MODE_REG
, tmp
);
3129 val
= RBIOS8(offset
);
3134 static uint32_t combios_detect_ram(struct drm_device
*dev
, int ram
,
3135 int mem_addr_mapping
)
3137 struct radeon_device
*rdev
= dev
->dev_private
;
3142 mem_cntl
= RREG32(RADEON_MEM_CNTL
);
3143 if (mem_cntl
& RV100_HALF_MODE
)
3146 mem_cntl
&= ~(0xff << 8);
3147 mem_cntl
|= (mem_addr_mapping
& 0xff) << 8;
3148 WREG32(RADEON_MEM_CNTL
, mem_cntl
);
3149 RREG32(RADEON_MEM_CNTL
);
3153 /* something like this???? */
3155 addr
= ram
* 1024 * 1024;
3156 /* write to each page */
3157 WREG32(RADEON_MM_INDEX
, (addr
) | RADEON_MM_APER
);
3158 WREG32(RADEON_MM_DATA
, 0xdeadbeef);
3159 /* read back and verify */
3160 WREG32(RADEON_MM_INDEX
, (addr
) | RADEON_MM_APER
);
3161 if (RREG32(RADEON_MM_DATA
) != 0xdeadbeef)
3168 static void combios_write_ram_size(struct drm_device
*dev
)
3170 struct radeon_device
*rdev
= dev
->dev_private
;
3173 uint32_t mem_size
= 0;
3174 uint32_t mem_cntl
= 0;
3176 /* should do something smarter here I guess... */
3177 if (rdev
->flags
& RADEON_IS_IGP
)
3180 /* first check detected mem table */
3181 offset
= combios_get_table_offset(dev
, COMBIOS_DETECTED_MEM_TABLE
);
3183 rev
= RBIOS8(offset
);
3185 mem_cntl
= RBIOS32(offset
+ 1);
3186 mem_size
= RBIOS16(offset
+ 5);
3187 if ((rdev
->family
< CHIP_R200
) &&
3188 !ASIC_IS_RN50(rdev
))
3189 WREG32(RADEON_MEM_CNTL
, mem_cntl
);
3195 combios_get_table_offset(dev
, COMBIOS_MEM_CONFIG_TABLE
);
3197 rev
= RBIOS8(offset
- 1);
3199 if ((rdev
->family
< CHIP_R200
)
3200 && !ASIC_IS_RN50(rdev
)) {
3202 int mem_addr_mapping
= 0;
3204 while (RBIOS8(offset
)) {
3205 ram
= RBIOS8(offset
);
3208 if (mem_addr_mapping
!= 0x25)
3211 combios_detect_ram(dev
, ram
,
3218 mem_size
= RBIOS8(offset
);
3220 mem_size
= RBIOS8(offset
);
3221 mem_size
*= 2; /* convert to MB */
3226 mem_size
*= (1024 * 1024); /* convert to bytes */
3227 WREG32(RADEON_CONFIG_MEMSIZE
, mem_size
);
3230 void radeon_combios_dyn_clk_setup(struct drm_device
*dev
, int enable
)
3232 uint16_t dyn_clk_info
=
3233 combios_get_table_offset(dev
, COMBIOS_DYN_CLK_1_TABLE
);
3236 combios_parse_pll_table(dev
, dyn_clk_info
);
3239 void radeon_combios_asic_init(struct drm_device
*dev
)
3241 struct radeon_device
*rdev
= dev
->dev_private
;
3244 /* port hardcoded mac stuff from radeonfb */
3245 if (rdev
->bios
== NULL
)
3249 table
= combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_1_TABLE
);
3251 combios_parse_mmio_table(dev
, table
);
3254 table
= combios_get_table_offset(dev
, COMBIOS_PLL_INIT_TABLE
);
3256 combios_parse_pll_table(dev
, table
);
3259 table
= combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_2_TABLE
);
3261 combios_parse_mmio_table(dev
, table
);
3263 if (!(rdev
->flags
& RADEON_IS_IGP
)) {
3266 combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_4_TABLE
);
3268 combios_parse_mmio_table(dev
, table
);
3271 table
= combios_get_table_offset(dev
, COMBIOS_RAM_RESET_TABLE
);
3273 combios_parse_ram_reset_table(dev
, table
);
3277 combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_3_TABLE
);
3279 combios_parse_mmio_table(dev
, table
);
3281 /* write CONFIG_MEMSIZE */
3282 combios_write_ram_size(dev
);
3285 /* quirk for rs4xx HP nx6125 laptop to make it resume
3286 * - it hangs on resume inside the dynclk 1 table.
3288 if (rdev
->family
== CHIP_RS480
&&
3289 rdev
->pdev
->subsystem_vendor
== 0x103c &&
3290 rdev
->pdev
->subsystem_device
== 0x308b)
3293 /* quirk for rs4xx HP dv5000 laptop to make it resume
3294 * - it hangs on resume inside the dynclk 1 table.
3296 if (rdev
->family
== CHIP_RS480
&&
3297 rdev
->pdev
->subsystem_vendor
== 0x103c &&
3298 rdev
->pdev
->subsystem_device
== 0x30a4)
3301 /* quirk for rs4xx Compaq Presario V5245EU laptop to make it resume
3302 * - it hangs on resume inside the dynclk 1 table.
3304 if (rdev
->family
== CHIP_RS480
&&
3305 rdev
->pdev
->subsystem_vendor
== 0x103c &&
3306 rdev
->pdev
->subsystem_device
== 0x30ae)
3310 table
= combios_get_table_offset(dev
, COMBIOS_DYN_CLK_1_TABLE
);
3312 combios_parse_pll_table(dev
, table
);
3316 void radeon_combios_initialize_bios_scratch_regs(struct drm_device
*dev
)
3318 struct radeon_device
*rdev
= dev
->dev_private
;
3319 uint32_t bios_0_scratch
, bios_6_scratch
, bios_7_scratch
;
3321 bios_0_scratch
= RREG32(RADEON_BIOS_0_SCRATCH
);
3322 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
3323 bios_7_scratch
= RREG32(RADEON_BIOS_7_SCRATCH
);
3325 /* let the bios control the backlight */
3326 bios_0_scratch
&= ~RADEON_DRIVER_BRIGHTNESS_EN
;
3328 /* tell the bios not to handle mode switching */
3329 bios_6_scratch
|= (RADEON_DISPLAY_SWITCHING_DIS
|
3330 RADEON_ACC_MODE_CHANGE
);
3332 /* tell the bios a driver is loaded */
3333 bios_7_scratch
|= RADEON_DRV_LOADED
;
3335 WREG32(RADEON_BIOS_0_SCRATCH
, bios_0_scratch
);
3336 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
3337 WREG32(RADEON_BIOS_7_SCRATCH
, bios_7_scratch
);
3340 void radeon_combios_output_lock(struct drm_encoder
*encoder
, bool lock
)
3342 struct drm_device
*dev
= encoder
->dev
;
3343 struct radeon_device
*rdev
= dev
->dev_private
;
3344 uint32_t bios_6_scratch
;
3346 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
3349 bios_6_scratch
|= RADEON_DRIVER_CRITICAL
;
3351 bios_6_scratch
&= ~RADEON_DRIVER_CRITICAL
;
3353 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
3357 radeon_combios_connected_scratch_regs(struct drm_connector
*connector
,
3358 struct drm_encoder
*encoder
,
3361 struct drm_device
*dev
= connector
->dev
;
3362 struct radeon_device
*rdev
= dev
->dev_private
;
3363 struct radeon_connector
*radeon_connector
=
3364 to_radeon_connector(connector
);
3365 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
3366 uint32_t bios_4_scratch
= RREG32(RADEON_BIOS_4_SCRATCH
);
3367 uint32_t bios_5_scratch
= RREG32(RADEON_BIOS_5_SCRATCH
);
3369 if ((radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) &&
3370 (radeon_connector
->devices
& ATOM_DEVICE_TV1_SUPPORT
)) {
3372 DRM_DEBUG_KMS("TV1 connected\n");
3374 bios_4_scratch
|= RADEON_TV1_ATTACHED_SVIDEO
;
3375 /*save->bios_4_scratch |= RADEON_TV1_ATTACHED_COMP; */
3376 bios_5_scratch
|= RADEON_TV1_ON
;
3377 bios_5_scratch
|= RADEON_ACC_REQ_TV1
;
3379 DRM_DEBUG_KMS("TV1 disconnected\n");
3380 bios_4_scratch
&= ~RADEON_TV1_ATTACHED_MASK
;
3381 bios_5_scratch
&= ~RADEON_TV1_ON
;
3382 bios_5_scratch
&= ~RADEON_ACC_REQ_TV1
;
3385 if ((radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) &&
3386 (radeon_connector
->devices
& ATOM_DEVICE_LCD1_SUPPORT
)) {
3388 DRM_DEBUG_KMS("LCD1 connected\n");
3389 bios_4_scratch
|= RADEON_LCD1_ATTACHED
;
3390 bios_5_scratch
|= RADEON_LCD1_ON
;
3391 bios_5_scratch
|= RADEON_ACC_REQ_LCD1
;
3393 DRM_DEBUG_KMS("LCD1 disconnected\n");
3394 bios_4_scratch
&= ~RADEON_LCD1_ATTACHED
;
3395 bios_5_scratch
&= ~RADEON_LCD1_ON
;
3396 bios_5_scratch
&= ~RADEON_ACC_REQ_LCD1
;
3399 if ((radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) &&
3400 (radeon_connector
->devices
& ATOM_DEVICE_CRT1_SUPPORT
)) {
3402 DRM_DEBUG_KMS("CRT1 connected\n");
3403 bios_4_scratch
|= RADEON_CRT1_ATTACHED_COLOR
;
3404 bios_5_scratch
|= RADEON_CRT1_ON
;
3405 bios_5_scratch
|= RADEON_ACC_REQ_CRT1
;
3407 DRM_DEBUG_KMS("CRT1 disconnected\n");
3408 bios_4_scratch
&= ~RADEON_CRT1_ATTACHED_MASK
;
3409 bios_5_scratch
&= ~RADEON_CRT1_ON
;
3410 bios_5_scratch
&= ~RADEON_ACC_REQ_CRT1
;
3413 if ((radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) &&
3414 (radeon_connector
->devices
& ATOM_DEVICE_CRT2_SUPPORT
)) {
3416 DRM_DEBUG_KMS("CRT2 connected\n");
3417 bios_4_scratch
|= RADEON_CRT2_ATTACHED_COLOR
;
3418 bios_5_scratch
|= RADEON_CRT2_ON
;
3419 bios_5_scratch
|= RADEON_ACC_REQ_CRT2
;
3421 DRM_DEBUG_KMS("CRT2 disconnected\n");
3422 bios_4_scratch
&= ~RADEON_CRT2_ATTACHED_MASK
;
3423 bios_5_scratch
&= ~RADEON_CRT2_ON
;
3424 bios_5_scratch
&= ~RADEON_ACC_REQ_CRT2
;
3427 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) &&
3428 (radeon_connector
->devices
& ATOM_DEVICE_DFP1_SUPPORT
)) {
3430 DRM_DEBUG_KMS("DFP1 connected\n");
3431 bios_4_scratch
|= RADEON_DFP1_ATTACHED
;
3432 bios_5_scratch
|= RADEON_DFP1_ON
;
3433 bios_5_scratch
|= RADEON_ACC_REQ_DFP1
;
3435 DRM_DEBUG_KMS("DFP1 disconnected\n");
3436 bios_4_scratch
&= ~RADEON_DFP1_ATTACHED
;
3437 bios_5_scratch
&= ~RADEON_DFP1_ON
;
3438 bios_5_scratch
&= ~RADEON_ACC_REQ_DFP1
;
3441 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) &&
3442 (radeon_connector
->devices
& ATOM_DEVICE_DFP2_SUPPORT
)) {
3444 DRM_DEBUG_KMS("DFP2 connected\n");
3445 bios_4_scratch
|= RADEON_DFP2_ATTACHED
;
3446 bios_5_scratch
|= RADEON_DFP2_ON
;
3447 bios_5_scratch
|= RADEON_ACC_REQ_DFP2
;
3449 DRM_DEBUG_KMS("DFP2 disconnected\n");
3450 bios_4_scratch
&= ~RADEON_DFP2_ATTACHED
;
3451 bios_5_scratch
&= ~RADEON_DFP2_ON
;
3452 bios_5_scratch
&= ~RADEON_ACC_REQ_DFP2
;
3455 WREG32(RADEON_BIOS_4_SCRATCH
, bios_4_scratch
);
3456 WREG32(RADEON_BIOS_5_SCRATCH
, bios_5_scratch
);
3460 radeon_combios_encoder_crtc_scratch_regs(struct drm_encoder
*encoder
, int crtc
)
3462 struct drm_device
*dev
= encoder
->dev
;
3463 struct radeon_device
*rdev
= dev
->dev_private
;
3464 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
3465 uint32_t bios_5_scratch
= RREG32(RADEON_BIOS_5_SCRATCH
);
3467 if (radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) {
3468 bios_5_scratch
&= ~RADEON_TV1_CRTC_MASK
;
3469 bios_5_scratch
|= (crtc
<< RADEON_TV1_CRTC_SHIFT
);
3471 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) {
3472 bios_5_scratch
&= ~RADEON_CRT1_CRTC_MASK
;
3473 bios_5_scratch
|= (crtc
<< RADEON_CRT1_CRTC_SHIFT
);
3475 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) {
3476 bios_5_scratch
&= ~RADEON_CRT2_CRTC_MASK
;
3477 bios_5_scratch
|= (crtc
<< RADEON_CRT2_CRTC_SHIFT
);
3479 if (radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) {
3480 bios_5_scratch
&= ~RADEON_LCD1_CRTC_MASK
;
3481 bios_5_scratch
|= (crtc
<< RADEON_LCD1_CRTC_SHIFT
);
3483 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) {
3484 bios_5_scratch
&= ~RADEON_DFP1_CRTC_MASK
;
3485 bios_5_scratch
|= (crtc
<< RADEON_DFP1_CRTC_SHIFT
);
3487 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) {
3488 bios_5_scratch
&= ~RADEON_DFP2_CRTC_MASK
;
3489 bios_5_scratch
|= (crtc
<< RADEON_DFP2_CRTC_SHIFT
);
3491 WREG32(RADEON_BIOS_5_SCRATCH
, bios_5_scratch
);
3495 radeon_combios_encoder_dpms_scratch_regs(struct drm_encoder
*encoder
, bool on
)
3497 struct drm_device
*dev
= encoder
->dev
;
3498 struct radeon_device
*rdev
= dev
->dev_private
;
3499 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
3500 uint32_t bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
3502 if (radeon_encoder
->devices
& (ATOM_DEVICE_TV_SUPPORT
)) {
3504 bios_6_scratch
|= RADEON_TV_DPMS_ON
;
3506 bios_6_scratch
&= ~RADEON_TV_DPMS_ON
;
3508 if (radeon_encoder
->devices
& (ATOM_DEVICE_CRT_SUPPORT
)) {
3510 bios_6_scratch
|= RADEON_CRT_DPMS_ON
;
3512 bios_6_scratch
&= ~RADEON_CRT_DPMS_ON
;
3514 if (radeon_encoder
->devices
& (ATOM_DEVICE_LCD_SUPPORT
)) {
3516 bios_6_scratch
|= RADEON_LCD_DPMS_ON
;
3518 bios_6_scratch
&= ~RADEON_LCD_DPMS_ON
;
3520 if (radeon_encoder
->devices
& (ATOM_DEVICE_DFP_SUPPORT
)) {
3522 bios_6_scratch
|= RADEON_DFP_DPMS_ON
;
3524 bios_6_scratch
&= ~RADEON_DFP_DPMS_ON
;
3526 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);