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 static struct radeon_i2c_bus_rec
radeon_combios_get_i2c_info_from_table(struct radeon_device
*rdev
)
724 struct drm_device
*dev
= rdev
->ddev
;
725 struct radeon_i2c_bus_rec i2c
;
727 u8 id
, blocks
, clk
, data
;
732 offset
= combios_get_table_offset(dev
, COMBIOS_I2C_INFO_TABLE
);
734 blocks
= RBIOS8(offset
+ 2);
735 for (i
= 0; i
< blocks
; i
++) {
736 id
= RBIOS8(offset
+ 3 + (i
* 5) + 0);
738 clk
= RBIOS8(offset
+ 3 + (i
* 5) + 3);
739 data
= RBIOS8(offset
+ 3 + (i
* 5) + 4);
741 i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
,
742 (1 << clk
), (1 << data
));
750 void radeon_combios_i2c_init(struct radeon_device
*rdev
)
752 struct drm_device
*dev
= rdev
->ddev
;
753 struct radeon_i2c_bus_rec i2c
;
757 * 0x60, 0x64, 0x68, 0x6c, gpiopads, mm
759 * 0x60, 0x64, 0x68, mm
763 * 0x60, 0x64, 0x68, gpiopads, mm
767 i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
768 rdev
->i2c_bus
[0] = radeon_i2c_create(dev
, &i2c
, "DVI_DDC");
770 i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
771 rdev
->i2c_bus
[1] = radeon_i2c_create(dev
, &i2c
, "VGA_DDC");
775 i2c
.hw_capable
= true;
778 rdev
->i2c_bus
[2] = radeon_i2c_create(dev
, &i2c
, "MM_I2C");
780 if (rdev
->family
== CHIP_R300
||
781 rdev
->family
== CHIP_R350
) {
782 /* only 2 sw i2c pads */
783 } else if (rdev
->family
== CHIP_RS300
||
784 rdev
->family
== CHIP_RS400
||
785 rdev
->family
== CHIP_RS480
) {
787 i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
788 rdev
->i2c_bus
[3] = radeon_i2c_create(dev
, &i2c
, "MONID");
791 i2c
= radeon_combios_get_i2c_info_from_table(rdev
);
793 rdev
->i2c_bus
[4] = radeon_i2c_create(dev
, &i2c
, "GPIOPAD_MASK");
794 } else if ((rdev
->family
== CHIP_R200
) ||
795 (rdev
->family
>= CHIP_R300
)) {
797 i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
798 rdev
->i2c_bus
[3] = radeon_i2c_create(dev
, &i2c
, "MONID");
801 i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
802 rdev
->i2c_bus
[3] = radeon_i2c_create(dev
, &i2c
, "MONID");
804 i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
805 rdev
->i2c_bus
[4] = radeon_i2c_create(dev
, &i2c
, "CRT2_DDC");
809 bool radeon_combios_get_clock_info(struct drm_device
*dev
)
811 struct radeon_device
*rdev
= dev
->dev_private
;
813 struct radeon_pll
*p1pll
= &rdev
->clock
.p1pll
;
814 struct radeon_pll
*p2pll
= &rdev
->clock
.p2pll
;
815 struct radeon_pll
*spll
= &rdev
->clock
.spll
;
816 struct radeon_pll
*mpll
= &rdev
->clock
.mpll
;
820 pll_info
= combios_get_table_offset(dev
, COMBIOS_PLL_INFO_TABLE
);
822 rev
= RBIOS8(pll_info
);
825 p1pll
->reference_freq
= RBIOS16(pll_info
+ 0xe);
826 p1pll
->reference_div
= RBIOS16(pll_info
+ 0x10);
827 p1pll
->pll_out_min
= RBIOS32(pll_info
+ 0x12);
828 p1pll
->pll_out_max
= RBIOS32(pll_info
+ 0x16);
829 p1pll
->lcd_pll_out_min
= p1pll
->pll_out_min
;
830 p1pll
->lcd_pll_out_max
= p1pll
->pll_out_max
;
833 p1pll
->pll_in_min
= RBIOS32(pll_info
+ 0x36);
834 p1pll
->pll_in_max
= RBIOS32(pll_info
+ 0x3a);
836 p1pll
->pll_in_min
= 40;
837 p1pll
->pll_in_max
= 500;
842 spll
->reference_freq
= RBIOS16(pll_info
+ 0x1a);
843 spll
->reference_div
= RBIOS16(pll_info
+ 0x1c);
844 spll
->pll_out_min
= RBIOS32(pll_info
+ 0x1e);
845 spll
->pll_out_max
= RBIOS32(pll_info
+ 0x22);
848 spll
->pll_in_min
= RBIOS32(pll_info
+ 0x48);
849 spll
->pll_in_max
= RBIOS32(pll_info
+ 0x4c);
852 spll
->pll_in_min
= 40;
853 spll
->pll_in_max
= 500;
857 mpll
->reference_freq
= RBIOS16(pll_info
+ 0x26);
858 mpll
->reference_div
= RBIOS16(pll_info
+ 0x28);
859 mpll
->pll_out_min
= RBIOS32(pll_info
+ 0x2a);
860 mpll
->pll_out_max
= RBIOS32(pll_info
+ 0x2e);
863 mpll
->pll_in_min
= RBIOS32(pll_info
+ 0x5a);
864 mpll
->pll_in_max
= RBIOS32(pll_info
+ 0x5e);
867 mpll
->pll_in_min
= 40;
868 mpll
->pll_in_max
= 500;
871 /* default sclk/mclk */
872 sclk
= RBIOS16(pll_info
+ 0xa);
873 mclk
= RBIOS16(pll_info
+ 0x8);
879 rdev
->clock
.default_sclk
= sclk
;
880 rdev
->clock
.default_mclk
= mclk
;
882 if (RBIOS32(pll_info
+ 0x16))
883 rdev
->clock
.max_pixel_clock
= RBIOS32(pll_info
+ 0x16);
885 rdev
->clock
.max_pixel_clock
= 35000; /* might need something asic specific */
892 bool radeon_combios_sideport_present(struct radeon_device
*rdev
)
894 struct drm_device
*dev
= rdev
->ddev
;
897 /* sideport is AMD only */
898 if (rdev
->family
== CHIP_RS400
)
901 igp_info
= combios_get_table_offset(dev
, COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE
);
904 if (RBIOS16(igp_info
+ 0x4))
910 static const uint32_t default_primarydac_adj
[CHIP_LAST
] = {
911 0x00000808, /* r100 */
912 0x00000808, /* rv100 */
913 0x00000808, /* rs100 */
914 0x00000808, /* rv200 */
915 0x00000808, /* rs200 */
916 0x00000808, /* r200 */
917 0x00000808, /* rv250 */
918 0x00000000, /* rs300 */
919 0x00000808, /* rv280 */
920 0x00000808, /* r300 */
921 0x00000808, /* r350 */
922 0x00000808, /* rv350 */
923 0x00000808, /* rv380 */
924 0x00000808, /* r420 */
925 0x00000808, /* r423 */
926 0x00000808, /* rv410 */
927 0x00000000, /* rs400 */
928 0x00000000, /* rs480 */
931 static void radeon_legacy_get_primary_dac_info_from_table(struct radeon_device
*rdev
,
932 struct radeon_encoder_primary_dac
*p_dac
)
934 p_dac
->ps2_pdac_adj
= default_primarydac_adj
[rdev
->family
];
938 struct radeon_encoder_primary_dac
*radeon_combios_get_primary_dac_info(struct
942 struct drm_device
*dev
= encoder
->base
.dev
;
943 struct radeon_device
*rdev
= dev
->dev_private
;
945 uint8_t rev
, bg
, dac
;
946 struct radeon_encoder_primary_dac
*p_dac
= NULL
;
949 p_dac
= kzalloc(sizeof(struct radeon_encoder_primary_dac
),
955 /* check CRT table */
956 dac_info
= combios_get_table_offset(dev
, COMBIOS_CRT_INFO_TABLE
);
958 rev
= RBIOS8(dac_info
) & 0x3;
960 bg
= RBIOS8(dac_info
+ 0x2) & 0xf;
961 dac
= (RBIOS8(dac_info
+ 0x2) >> 4) & 0xf;
962 p_dac
->ps2_pdac_adj
= (bg
<< 8) | (dac
);
964 bg
= RBIOS8(dac_info
+ 0x2) & 0xf;
965 dac
= RBIOS8(dac_info
+ 0x3) & 0xf;
966 p_dac
->ps2_pdac_adj
= (bg
<< 8) | (dac
);
968 /* if the values are all zeros, use the table */
969 if (p_dac
->ps2_pdac_adj
)
973 if (!found
) /* fallback to defaults */
974 radeon_legacy_get_primary_dac_info_from_table(rdev
, p_dac
);
980 radeon_combios_get_tv_info(struct radeon_device
*rdev
)
982 struct drm_device
*dev
= rdev
->ddev
;
984 enum radeon_tv_std tv_std
= TV_STD_NTSC
;
986 tv_info
= combios_get_table_offset(dev
, COMBIOS_TV_INFO_TABLE
);
988 if (RBIOS8(tv_info
+ 6) == 'T') {
989 switch (RBIOS8(tv_info
+ 7) & 0xf) {
991 tv_std
= TV_STD_NTSC
;
992 DRM_DEBUG_KMS("Default TV standard: NTSC\n");
996 DRM_DEBUG_KMS("Default TV standard: PAL\n");
999 tv_std
= TV_STD_PAL_M
;
1000 DRM_DEBUG_KMS("Default TV standard: PAL-M\n");
1003 tv_std
= TV_STD_PAL_60
;
1004 DRM_DEBUG_KMS("Default TV standard: PAL-60\n");
1007 tv_std
= TV_STD_NTSC_J
;
1008 DRM_DEBUG_KMS("Default TV standard: NTSC-J\n");
1011 tv_std
= TV_STD_SCART_PAL
;
1012 DRM_DEBUG_KMS("Default TV standard: SCART-PAL\n");
1015 tv_std
= TV_STD_NTSC
;
1017 ("Unknown TV standard; defaulting to NTSC\n");
1021 switch ((RBIOS8(tv_info
+ 9) >> 2) & 0x3) {
1023 DRM_DEBUG_KMS("29.498928713 MHz TV ref clk\n");
1026 DRM_DEBUG_KMS("28.636360000 MHz TV ref clk\n");
1029 DRM_DEBUG_KMS("14.318180000 MHz TV ref clk\n");
1032 DRM_DEBUG_KMS("27.000000000 MHz TV ref clk\n");
1042 static const uint32_t default_tvdac_adj
[CHIP_LAST
] = {
1043 0x00000000, /* r100 */
1044 0x00280000, /* rv100 */
1045 0x00000000, /* rs100 */
1046 0x00880000, /* rv200 */
1047 0x00000000, /* rs200 */
1048 0x00000000, /* r200 */
1049 0x00770000, /* rv250 */
1050 0x00290000, /* rs300 */
1051 0x00560000, /* rv280 */
1052 0x00780000, /* r300 */
1053 0x00770000, /* r350 */
1054 0x00780000, /* rv350 */
1055 0x00780000, /* rv380 */
1056 0x01080000, /* r420 */
1057 0x01080000, /* r423 */
1058 0x01080000, /* rv410 */
1059 0x00780000, /* rs400 */
1060 0x00780000, /* rs480 */
1063 static void radeon_legacy_get_tv_dac_info_from_table(struct radeon_device
*rdev
,
1064 struct radeon_encoder_tv_dac
*tv_dac
)
1066 tv_dac
->ps2_tvdac_adj
= default_tvdac_adj
[rdev
->family
];
1067 if ((rdev
->flags
& RADEON_IS_MOBILITY
) && (rdev
->family
== CHIP_RV250
))
1068 tv_dac
->ps2_tvdac_adj
= 0x00880000;
1069 tv_dac
->pal_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1070 tv_dac
->ntsc_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1074 struct radeon_encoder_tv_dac
*radeon_combios_get_tv_dac_info(struct
1078 struct drm_device
*dev
= encoder
->base
.dev
;
1079 struct radeon_device
*rdev
= dev
->dev_private
;
1081 uint8_t rev
, bg
, dac
;
1082 struct radeon_encoder_tv_dac
*tv_dac
= NULL
;
1085 tv_dac
= kzalloc(sizeof(struct radeon_encoder_tv_dac
), GFP_KERNEL
);
1089 /* first check TV table */
1090 dac_info
= combios_get_table_offset(dev
, COMBIOS_TV_INFO_TABLE
);
1092 rev
= RBIOS8(dac_info
+ 0x3);
1094 bg
= RBIOS8(dac_info
+ 0xc) & 0xf;
1095 dac
= RBIOS8(dac_info
+ 0xd) & 0xf;
1096 tv_dac
->ps2_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1098 bg
= RBIOS8(dac_info
+ 0xe) & 0xf;
1099 dac
= RBIOS8(dac_info
+ 0xf) & 0xf;
1100 tv_dac
->pal_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1102 bg
= RBIOS8(dac_info
+ 0x10) & 0xf;
1103 dac
= RBIOS8(dac_info
+ 0x11) & 0xf;
1104 tv_dac
->ntsc_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1105 /* if the values are all zeros, use the table */
1106 if (tv_dac
->ps2_tvdac_adj
)
1108 } else if (rev
> 1) {
1109 bg
= RBIOS8(dac_info
+ 0xc) & 0xf;
1110 dac
= (RBIOS8(dac_info
+ 0xc) >> 4) & 0xf;
1111 tv_dac
->ps2_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1113 bg
= RBIOS8(dac_info
+ 0xd) & 0xf;
1114 dac
= (RBIOS8(dac_info
+ 0xd) >> 4) & 0xf;
1115 tv_dac
->pal_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1117 bg
= RBIOS8(dac_info
+ 0xe) & 0xf;
1118 dac
= (RBIOS8(dac_info
+ 0xe) >> 4) & 0xf;
1119 tv_dac
->ntsc_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
1120 /* if the values are all zeros, use the table */
1121 if (tv_dac
->ps2_tvdac_adj
)
1124 tv_dac
->tv_std
= radeon_combios_get_tv_info(rdev
);
1127 /* then check CRT table */
1129 combios_get_table_offset(dev
, COMBIOS_CRT_INFO_TABLE
);
1131 rev
= RBIOS8(dac_info
) & 0x3;
1133 bg
= RBIOS8(dac_info
+ 0x3) & 0xf;
1134 dac
= (RBIOS8(dac_info
+ 0x3) >> 4) & 0xf;
1135 tv_dac
->ps2_tvdac_adj
=
1136 (bg
<< 16) | (dac
<< 20);
1137 tv_dac
->pal_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1138 tv_dac
->ntsc_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1139 /* if the values are all zeros, use the table */
1140 if (tv_dac
->ps2_tvdac_adj
)
1143 bg
= RBIOS8(dac_info
+ 0x4) & 0xf;
1144 dac
= RBIOS8(dac_info
+ 0x5) & 0xf;
1145 tv_dac
->ps2_tvdac_adj
=
1146 (bg
<< 16) | (dac
<< 20);
1147 tv_dac
->pal_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1148 tv_dac
->ntsc_tvdac_adj
= tv_dac
->ps2_tvdac_adj
;
1149 /* if the values are all zeros, use the table */
1150 if (tv_dac
->ps2_tvdac_adj
)
1154 DRM_INFO("No TV DAC info found in BIOS\n");
1158 if (!found
) /* fallback to defaults */
1159 radeon_legacy_get_tv_dac_info_from_table(rdev
, tv_dac
);
1164 static struct radeon_encoder_lvds
*radeon_legacy_get_lvds_info_from_regs(struct
1168 struct radeon_encoder_lvds
*lvds
= NULL
;
1169 uint32_t fp_vert_stretch
, fp_horz_stretch
;
1170 uint32_t ppll_div_sel
, ppll_val
;
1171 uint32_t lvds_ss_gen_cntl
= RREG32(RADEON_LVDS_SS_GEN_CNTL
);
1173 lvds
= kzalloc(sizeof(struct radeon_encoder_lvds
), GFP_KERNEL
);
1178 fp_vert_stretch
= RREG32(RADEON_FP_VERT_STRETCH
);
1179 fp_horz_stretch
= RREG32(RADEON_FP_HORZ_STRETCH
);
1181 /* These should be fail-safe defaults, fingers crossed */
1182 lvds
->panel_pwr_delay
= 200;
1183 lvds
->panel_vcc_delay
= 2000;
1185 lvds
->lvds_gen_cntl
= RREG32(RADEON_LVDS_GEN_CNTL
);
1186 lvds
->panel_digon_delay
= (lvds_ss_gen_cntl
>> RADEON_LVDS_PWRSEQ_DELAY1_SHIFT
) & 0xf;
1187 lvds
->panel_blon_delay
= (lvds_ss_gen_cntl
>> RADEON_LVDS_PWRSEQ_DELAY2_SHIFT
) & 0xf;
1189 if (fp_vert_stretch
& RADEON_VERT_STRETCH_ENABLE
)
1190 lvds
->native_mode
.vdisplay
=
1191 ((fp_vert_stretch
& RADEON_VERT_PANEL_SIZE
) >>
1192 RADEON_VERT_PANEL_SHIFT
) + 1;
1194 lvds
->native_mode
.vdisplay
=
1195 (RREG32(RADEON_CRTC_V_TOTAL_DISP
) >> 16) + 1;
1197 if (fp_horz_stretch
& RADEON_HORZ_STRETCH_ENABLE
)
1198 lvds
->native_mode
.hdisplay
=
1199 (((fp_horz_stretch
& RADEON_HORZ_PANEL_SIZE
) >>
1200 RADEON_HORZ_PANEL_SHIFT
) + 1) * 8;
1202 lvds
->native_mode
.hdisplay
=
1203 ((RREG32(RADEON_CRTC_H_TOTAL_DISP
) >> 16) + 1) * 8;
1205 if ((lvds
->native_mode
.hdisplay
< 640) ||
1206 (lvds
->native_mode
.vdisplay
< 480)) {
1207 lvds
->native_mode
.hdisplay
= 640;
1208 lvds
->native_mode
.vdisplay
= 480;
1211 ppll_div_sel
= RREG8(RADEON_CLOCK_CNTL_INDEX
+ 1) & 0x3;
1212 ppll_val
= RREG32_PLL(RADEON_PPLL_DIV_0
+ ppll_div_sel
);
1213 if ((ppll_val
& 0x000707ff) == 0x1bb)
1214 lvds
->use_bios_dividers
= false;
1216 lvds
->panel_ref_divider
=
1217 RREG32_PLL(RADEON_PPLL_REF_DIV
) & 0x3ff;
1218 lvds
->panel_post_divider
= (ppll_val
>> 16) & 0x7;
1219 lvds
->panel_fb_divider
= ppll_val
& 0x7ff;
1221 if ((lvds
->panel_ref_divider
!= 0) &&
1222 (lvds
->panel_fb_divider
> 3))
1223 lvds
->use_bios_dividers
= true;
1225 lvds
->panel_vcc_delay
= 200;
1227 DRM_INFO("Panel info derived from registers\n");
1228 DRM_INFO("Panel Size %dx%d\n", lvds
->native_mode
.hdisplay
,
1229 lvds
->native_mode
.vdisplay
);
1234 struct radeon_encoder_lvds
*radeon_combios_get_lvds_info(struct radeon_encoder
1237 struct drm_device
*dev
= encoder
->base
.dev
;
1238 struct radeon_device
*rdev
= dev
->dev_private
;
1240 uint32_t panel_setup
;
1243 struct radeon_encoder_lvds
*lvds
= NULL
;
1245 lcd_info
= combios_get_table_offset(dev
, COMBIOS_LCD_INFO_TABLE
);
1248 lvds
= kzalloc(sizeof(struct radeon_encoder_lvds
), GFP_KERNEL
);
1253 for (i
= 0; i
< 24; i
++)
1254 stmp
[i
] = RBIOS8(lcd_info
+ i
+ 1);
1257 DRM_INFO("Panel ID String: %s\n", stmp
);
1259 lvds
->native_mode
.hdisplay
= RBIOS16(lcd_info
+ 0x19);
1260 lvds
->native_mode
.vdisplay
= RBIOS16(lcd_info
+ 0x1b);
1262 DRM_INFO("Panel Size %dx%d\n", lvds
->native_mode
.hdisplay
,
1263 lvds
->native_mode
.vdisplay
);
1265 lvds
->panel_vcc_delay
= RBIOS16(lcd_info
+ 0x2c);
1266 lvds
->panel_vcc_delay
= min_t(u16
, lvds
->panel_vcc_delay
, 2000);
1268 lvds
->panel_pwr_delay
= RBIOS8(lcd_info
+ 0x24);
1269 lvds
->panel_digon_delay
= RBIOS16(lcd_info
+ 0x38) & 0xf;
1270 lvds
->panel_blon_delay
= (RBIOS16(lcd_info
+ 0x38) >> 4) & 0xf;
1272 lvds
->panel_ref_divider
= RBIOS16(lcd_info
+ 0x2e);
1273 lvds
->panel_post_divider
= RBIOS8(lcd_info
+ 0x30);
1274 lvds
->panel_fb_divider
= RBIOS16(lcd_info
+ 0x31);
1275 if ((lvds
->panel_ref_divider
!= 0) &&
1276 (lvds
->panel_fb_divider
> 3))
1277 lvds
->use_bios_dividers
= true;
1279 panel_setup
= RBIOS32(lcd_info
+ 0x39);
1280 lvds
->lvds_gen_cntl
= 0xff00;
1281 if (panel_setup
& 0x1)
1282 lvds
->lvds_gen_cntl
|= RADEON_LVDS_PANEL_FORMAT
;
1284 if ((panel_setup
>> 4) & 0x1)
1285 lvds
->lvds_gen_cntl
|= RADEON_LVDS_PANEL_TYPE
;
1287 switch ((panel_setup
>> 8) & 0x7) {
1289 lvds
->lvds_gen_cntl
|= RADEON_LVDS_NO_FM
;
1292 lvds
->lvds_gen_cntl
|= RADEON_LVDS_2_GREY
;
1295 lvds
->lvds_gen_cntl
|= RADEON_LVDS_4_GREY
;
1301 if ((panel_setup
>> 16) & 0x1)
1302 lvds
->lvds_gen_cntl
|= RADEON_LVDS_FP_POL_LOW
;
1304 if ((panel_setup
>> 17) & 0x1)
1305 lvds
->lvds_gen_cntl
|= RADEON_LVDS_LP_POL_LOW
;
1307 if ((panel_setup
>> 18) & 0x1)
1308 lvds
->lvds_gen_cntl
|= RADEON_LVDS_DTM_POL_LOW
;
1310 if ((panel_setup
>> 23) & 0x1)
1311 lvds
->lvds_gen_cntl
|= RADEON_LVDS_BL_CLK_SEL
;
1313 lvds
->lvds_gen_cntl
|= (panel_setup
& 0xf0000000);
1315 for (i
= 0; i
< 32; i
++) {
1316 tmp
= RBIOS16(lcd_info
+ 64 + i
* 2);
1320 if ((RBIOS16(tmp
) == lvds
->native_mode
.hdisplay
) &&
1321 (RBIOS16(tmp
+ 2) == lvds
->native_mode
.vdisplay
)) {
1322 lvds
->native_mode
.htotal
= lvds
->native_mode
.hdisplay
+
1323 (RBIOS16(tmp
+ 17) - RBIOS16(tmp
+ 19)) * 8;
1324 lvds
->native_mode
.hsync_start
= lvds
->native_mode
.hdisplay
+
1325 (RBIOS16(tmp
+ 21) - RBIOS16(tmp
+ 19) - 1) * 8;
1326 lvds
->native_mode
.hsync_end
= lvds
->native_mode
.hsync_start
+
1327 (RBIOS8(tmp
+ 23) * 8);
1329 lvds
->native_mode
.vtotal
= lvds
->native_mode
.vdisplay
+
1330 (RBIOS16(tmp
+ 24) - RBIOS16(tmp
+ 26));
1331 lvds
->native_mode
.vsync_start
= lvds
->native_mode
.vdisplay
+
1332 ((RBIOS16(tmp
+ 28) & 0x7ff) - RBIOS16(tmp
+ 26));
1333 lvds
->native_mode
.vsync_end
= lvds
->native_mode
.vsync_start
+
1334 ((RBIOS16(tmp
+ 28) & 0xf800) >> 11);
1336 lvds
->native_mode
.clock
= RBIOS16(tmp
+ 9) * 10;
1337 lvds
->native_mode
.flags
= 0;
1338 /* set crtc values */
1339 drm_mode_set_crtcinfo(&lvds
->native_mode
, CRTC_INTERLACE_HALVE_V
);
1344 DRM_INFO("No panel info found in BIOS\n");
1345 lvds
= radeon_legacy_get_lvds_info_from_regs(rdev
);
1349 encoder
->native_mode
= lvds
->native_mode
;
1353 static const struct radeon_tmds_pll default_tmds_pll
[CHIP_LAST
][4] = {
1354 {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_R100 */
1355 {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_RV100 */
1356 {{0, 0}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_RS100 */
1357 {{15000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_RV200 */
1358 {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_RS200 */
1359 {{15000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}}, /* CHIP_R200 */
1360 {{15500, 0x81b}, {0xffffffff, 0x83f}, {0, 0}, {0, 0}}, /* CHIP_RV250 */
1361 {{0, 0}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_RS300 */
1362 {{13000, 0x400f4}, {15000, 0x400f7}, {0xffffffff, 0x40111}, {0, 0}}, /* CHIP_RV280 */
1363 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R300 */
1364 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R350 */
1365 {{15000, 0xb0155}, {0xffffffff, 0xb01cb}, {0, 0}, {0, 0}}, /* CHIP_RV350 */
1366 {{15000, 0xb0155}, {0xffffffff, 0xb01cb}, {0, 0}, {0, 0}}, /* CHIP_RV380 */
1367 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R420 */
1368 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_R423 */
1369 {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}}, /* CHIP_RV410 */
1370 { {0, 0}, {0, 0}, {0, 0}, {0, 0} }, /* CHIP_RS400 */
1371 { {0, 0}, {0, 0}, {0, 0}, {0, 0} }, /* CHIP_RS480 */
1374 bool radeon_legacy_get_tmds_info_from_table(struct radeon_encoder
*encoder
,
1375 struct radeon_encoder_int_tmds
*tmds
)
1377 struct drm_device
*dev
= encoder
->base
.dev
;
1378 struct radeon_device
*rdev
= dev
->dev_private
;
1381 for (i
= 0; i
< 4; i
++) {
1382 tmds
->tmds_pll
[i
].value
=
1383 default_tmds_pll
[rdev
->family
][i
].value
;
1384 tmds
->tmds_pll
[i
].freq
= default_tmds_pll
[rdev
->family
][i
].freq
;
1390 bool radeon_legacy_get_tmds_info_from_combios(struct radeon_encoder
*encoder
,
1391 struct radeon_encoder_int_tmds
*tmds
)
1393 struct drm_device
*dev
= encoder
->base
.dev
;
1394 struct radeon_device
*rdev
= dev
->dev_private
;
1399 tmds_info
= combios_get_table_offset(dev
, COMBIOS_DFP_INFO_TABLE
);
1402 ver
= RBIOS8(tmds_info
);
1403 DRM_DEBUG_KMS("DFP table revision: %d\n", ver
);
1405 n
= RBIOS8(tmds_info
+ 5) + 1;
1408 for (i
= 0; i
< n
; i
++) {
1409 tmds
->tmds_pll
[i
].value
=
1410 RBIOS32(tmds_info
+ i
* 10 + 0x08);
1411 tmds
->tmds_pll
[i
].freq
=
1412 RBIOS16(tmds_info
+ i
* 10 + 0x10);
1413 DRM_DEBUG_KMS("TMDS PLL From COMBIOS %u %x\n",
1414 tmds
->tmds_pll
[i
].freq
,
1415 tmds
->tmds_pll
[i
].value
);
1417 } else if (ver
== 4) {
1419 n
= RBIOS8(tmds_info
+ 5) + 1;
1422 for (i
= 0; i
< n
; i
++) {
1423 tmds
->tmds_pll
[i
].value
=
1424 RBIOS32(tmds_info
+ stride
+ 0x08);
1425 tmds
->tmds_pll
[i
].freq
=
1426 RBIOS16(tmds_info
+ stride
+ 0x10);
1431 DRM_DEBUG_KMS("TMDS PLL From COMBIOS %u %x\n",
1432 tmds
->tmds_pll
[i
].freq
,
1433 tmds
->tmds_pll
[i
].value
);
1437 DRM_INFO("No TMDS info found in BIOS\n");
1443 bool radeon_legacy_get_ext_tmds_info_from_table(struct radeon_encoder
*encoder
,
1444 struct radeon_encoder_ext_tmds
*tmds
)
1446 struct drm_device
*dev
= encoder
->base
.dev
;
1447 struct radeon_device
*rdev
= dev
->dev_private
;
1448 struct radeon_i2c_bus_rec i2c_bus
;
1450 /* default for macs */
1451 i2c_bus
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
1452 tmds
->i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
1454 /* XXX some macs have duallink chips */
1455 switch (rdev
->mode_info
.connector_table
) {
1456 case CT_POWERBOOK_EXTERNAL
:
1457 case CT_MINI_EXTERNAL
:
1459 tmds
->dvo_chip
= DVO_SIL164
;
1460 tmds
->slave_addr
= 0x70 >> 1; /* 7 bit addressing */
1467 bool radeon_legacy_get_ext_tmds_info_from_combios(struct radeon_encoder
*encoder
,
1468 struct radeon_encoder_ext_tmds
*tmds
)
1470 struct drm_device
*dev
= encoder
->base
.dev
;
1471 struct radeon_device
*rdev
= dev
->dev_private
;
1474 enum radeon_combios_ddc gpio
;
1475 struct radeon_i2c_bus_rec i2c_bus
;
1477 tmds
->i2c_bus
= NULL
;
1478 if (rdev
->flags
& RADEON_IS_IGP
) {
1479 i2c_bus
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
1480 tmds
->i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
1481 tmds
->dvo_chip
= DVO_SIL164
;
1482 tmds
->slave_addr
= 0x70 >> 1; /* 7 bit addressing */
1484 offset
= combios_get_table_offset(dev
, COMBIOS_EXT_TMDS_INFO_TABLE
);
1486 ver
= RBIOS8(offset
);
1487 DRM_DEBUG_KMS("External TMDS Table revision: %d\n", ver
);
1488 tmds
->slave_addr
= RBIOS8(offset
+ 4 + 2);
1489 tmds
->slave_addr
>>= 1; /* 7 bit addressing */
1490 gpio
= RBIOS8(offset
+ 4 + 3);
1491 if (gpio
== DDC_LCD
) {
1493 i2c_bus
.valid
= true;
1494 i2c_bus
.hw_capable
= true;
1495 i2c_bus
.mm_i2c
= true;
1496 i2c_bus
.i2c_id
= 0xa0;
1498 i2c_bus
= combios_setup_i2c_bus(rdev
, gpio
, 0, 0);
1499 tmds
->i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
1503 if (!tmds
->i2c_bus
) {
1504 DRM_INFO("No valid Ext TMDS info found in BIOS\n");
1511 bool radeon_get_legacy_connector_info_from_table(struct drm_device
*dev
)
1513 struct radeon_device
*rdev
= dev
->dev_private
;
1514 struct radeon_i2c_bus_rec ddc_i2c
;
1515 struct radeon_hpd hpd
;
1517 rdev
->mode_info
.connector_table
= radeon_connector_table
;
1518 if (rdev
->mode_info
.connector_table
== CT_NONE
) {
1519 #ifdef CONFIG_PPC_PMAC
1520 if (of_machine_is_compatible("PowerBook3,3")) {
1521 /* powerbook with VGA */
1522 rdev
->mode_info
.connector_table
= CT_POWERBOOK_VGA
;
1523 } else if (of_machine_is_compatible("PowerBook3,4") ||
1524 of_machine_is_compatible("PowerBook3,5")) {
1525 /* powerbook with internal tmds */
1526 rdev
->mode_info
.connector_table
= CT_POWERBOOK_INTERNAL
;
1527 } else if (of_machine_is_compatible("PowerBook5,1") ||
1528 of_machine_is_compatible("PowerBook5,2") ||
1529 of_machine_is_compatible("PowerBook5,3") ||
1530 of_machine_is_compatible("PowerBook5,4") ||
1531 of_machine_is_compatible("PowerBook5,5")) {
1532 /* powerbook with external single link tmds (sil164) */
1533 rdev
->mode_info
.connector_table
= CT_POWERBOOK_EXTERNAL
;
1534 } else if (of_machine_is_compatible("PowerBook5,6")) {
1535 /* powerbook with external dual or single link tmds */
1536 rdev
->mode_info
.connector_table
= CT_POWERBOOK_EXTERNAL
;
1537 } else if (of_machine_is_compatible("PowerBook5,7") ||
1538 of_machine_is_compatible("PowerBook5,8") ||
1539 of_machine_is_compatible("PowerBook5,9")) {
1540 /* PowerBook6,2 ? */
1541 /* powerbook with external dual link tmds (sil1178?) */
1542 rdev
->mode_info
.connector_table
= CT_POWERBOOK_EXTERNAL
;
1543 } else if (of_machine_is_compatible("PowerBook4,1") ||
1544 of_machine_is_compatible("PowerBook4,2") ||
1545 of_machine_is_compatible("PowerBook4,3") ||
1546 of_machine_is_compatible("PowerBook6,3") ||
1547 of_machine_is_compatible("PowerBook6,5") ||
1548 of_machine_is_compatible("PowerBook6,7")) {
1550 rdev
->mode_info
.connector_table
= CT_IBOOK
;
1551 } else if (of_machine_is_compatible("PowerMac4,4")) {
1553 rdev
->mode_info
.connector_table
= CT_EMAC
;
1554 } else if (of_machine_is_compatible("PowerMac10,1")) {
1555 /* mini with internal tmds */
1556 rdev
->mode_info
.connector_table
= CT_MINI_INTERNAL
;
1557 } else if (of_machine_is_compatible("PowerMac10,2")) {
1558 /* mini with external tmds */
1559 rdev
->mode_info
.connector_table
= CT_MINI_EXTERNAL
;
1560 } else if (of_machine_is_compatible("PowerMac12,1")) {
1562 /* imac g5 isight */
1563 rdev
->mode_info
.connector_table
= CT_IMAC_G5_ISIGHT
;
1564 } else if ((rdev
->pdev
->device
== 0x4a48) &&
1565 (rdev
->pdev
->subsystem_vendor
== 0x1002) &&
1566 (rdev
->pdev
->subsystem_device
== 0x4a48)) {
1568 rdev
->mode_info
.connector_table
= CT_MAC_X800
;
1569 } else if ((of_machine_is_compatible("PowerMac7,2") ||
1570 of_machine_is_compatible("PowerMac7,3")) &&
1571 (rdev
->pdev
->device
== 0x4150) &&
1572 (rdev
->pdev
->subsystem_vendor
== 0x1002) &&
1573 (rdev
->pdev
->subsystem_device
== 0x4150)) {
1574 /* Mac G5 tower 9600 */
1575 rdev
->mode_info
.connector_table
= CT_MAC_G5_9600
;
1576 } else if ((rdev
->pdev
->device
== 0x4c66) &&
1577 (rdev
->pdev
->subsystem_vendor
== 0x1002) &&
1578 (rdev
->pdev
->subsystem_device
== 0x4c66)) {
1579 /* SAM440ep RV250 embedded board */
1580 rdev
->mode_info
.connector_table
= CT_SAM440EP
;
1582 #endif /* CONFIG_PPC_PMAC */
1584 if (ASIC_IS_RN50(rdev
))
1585 rdev
->mode_info
.connector_table
= CT_RN50_POWER
;
1588 rdev
->mode_info
.connector_table
= CT_GENERIC
;
1591 switch (rdev
->mode_info
.connector_table
) {
1593 DRM_INFO("Connector Table: %d (generic)\n",
1594 rdev
->mode_info
.connector_table
);
1595 /* these are the most common settings */
1596 if (rdev
->flags
& RADEON_SINGLE_CRTC
) {
1597 /* VGA - primary dac */
1598 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1599 hpd
.hpd
= RADEON_HPD_NONE
;
1600 radeon_add_legacy_encoder(dev
,
1601 radeon_get_encoder_enum(dev
,
1602 ATOM_DEVICE_CRT1_SUPPORT
,
1604 ATOM_DEVICE_CRT1_SUPPORT
);
1605 radeon_add_legacy_connector(dev
, 0,
1606 ATOM_DEVICE_CRT1_SUPPORT
,
1607 DRM_MODE_CONNECTOR_VGA
,
1609 CONNECTOR_OBJECT_ID_VGA
,
1611 } else if (rdev
->flags
& RADEON_IS_MOBILITY
) {
1613 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_NONE_DETECTED
, 0, 0);
1614 hpd
.hpd
= RADEON_HPD_NONE
;
1615 radeon_add_legacy_encoder(dev
,
1616 radeon_get_encoder_enum(dev
,
1617 ATOM_DEVICE_LCD1_SUPPORT
,
1619 ATOM_DEVICE_LCD1_SUPPORT
);
1620 radeon_add_legacy_connector(dev
, 0,
1621 ATOM_DEVICE_LCD1_SUPPORT
,
1622 DRM_MODE_CONNECTOR_LVDS
,
1624 CONNECTOR_OBJECT_ID_LVDS
,
1627 /* VGA - primary dac */
1628 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1629 hpd
.hpd
= RADEON_HPD_NONE
;
1630 radeon_add_legacy_encoder(dev
,
1631 radeon_get_encoder_enum(dev
,
1632 ATOM_DEVICE_CRT1_SUPPORT
,
1634 ATOM_DEVICE_CRT1_SUPPORT
);
1635 radeon_add_legacy_connector(dev
, 1,
1636 ATOM_DEVICE_CRT1_SUPPORT
,
1637 DRM_MODE_CONNECTOR_VGA
,
1639 CONNECTOR_OBJECT_ID_VGA
,
1642 /* DVI-I - tv dac, int tmds */
1643 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1644 hpd
.hpd
= RADEON_HPD_1
;
1645 radeon_add_legacy_encoder(dev
,
1646 radeon_get_encoder_enum(dev
,
1647 ATOM_DEVICE_DFP1_SUPPORT
,
1649 ATOM_DEVICE_DFP1_SUPPORT
);
1650 radeon_add_legacy_encoder(dev
,
1651 radeon_get_encoder_enum(dev
,
1652 ATOM_DEVICE_CRT2_SUPPORT
,
1654 ATOM_DEVICE_CRT2_SUPPORT
);
1655 radeon_add_legacy_connector(dev
, 0,
1656 ATOM_DEVICE_DFP1_SUPPORT
|
1657 ATOM_DEVICE_CRT2_SUPPORT
,
1658 DRM_MODE_CONNECTOR_DVII
,
1660 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1663 /* VGA - primary dac */
1664 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1665 hpd
.hpd
= RADEON_HPD_NONE
;
1666 radeon_add_legacy_encoder(dev
,
1667 radeon_get_encoder_enum(dev
,
1668 ATOM_DEVICE_CRT1_SUPPORT
,
1670 ATOM_DEVICE_CRT1_SUPPORT
);
1671 radeon_add_legacy_connector(dev
, 1,
1672 ATOM_DEVICE_CRT1_SUPPORT
,
1673 DRM_MODE_CONNECTOR_VGA
,
1675 CONNECTOR_OBJECT_ID_VGA
,
1679 if (rdev
->family
!= CHIP_R100
&& rdev
->family
!= CHIP_R200
) {
1681 ddc_i2c
.valid
= false;
1682 hpd
.hpd
= RADEON_HPD_NONE
;
1683 radeon_add_legacy_encoder(dev
,
1684 radeon_get_encoder_enum(dev
,
1685 ATOM_DEVICE_TV1_SUPPORT
,
1687 ATOM_DEVICE_TV1_SUPPORT
);
1688 radeon_add_legacy_connector(dev
, 2,
1689 ATOM_DEVICE_TV1_SUPPORT
,
1690 DRM_MODE_CONNECTOR_SVIDEO
,
1692 CONNECTOR_OBJECT_ID_SVIDEO
,
1697 DRM_INFO("Connector Table: %d (ibook)\n",
1698 rdev
->mode_info
.connector_table
);
1700 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1701 hpd
.hpd
= RADEON_HPD_NONE
;
1702 radeon_add_legacy_encoder(dev
,
1703 radeon_get_encoder_enum(dev
,
1704 ATOM_DEVICE_LCD1_SUPPORT
,
1706 ATOM_DEVICE_LCD1_SUPPORT
);
1707 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1708 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1709 CONNECTOR_OBJECT_ID_LVDS
,
1712 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1713 hpd
.hpd
= RADEON_HPD_NONE
;
1714 radeon_add_legacy_encoder(dev
,
1715 radeon_get_encoder_enum(dev
,
1716 ATOM_DEVICE_CRT2_SUPPORT
,
1718 ATOM_DEVICE_CRT2_SUPPORT
);
1719 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
1720 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1721 CONNECTOR_OBJECT_ID_VGA
,
1724 ddc_i2c
.valid
= false;
1725 hpd
.hpd
= RADEON_HPD_NONE
;
1726 radeon_add_legacy_encoder(dev
,
1727 radeon_get_encoder_enum(dev
,
1728 ATOM_DEVICE_TV1_SUPPORT
,
1730 ATOM_DEVICE_TV1_SUPPORT
);
1731 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1732 DRM_MODE_CONNECTOR_SVIDEO
,
1734 CONNECTOR_OBJECT_ID_SVIDEO
,
1737 case CT_POWERBOOK_EXTERNAL
:
1738 DRM_INFO("Connector Table: %d (powerbook external tmds)\n",
1739 rdev
->mode_info
.connector_table
);
1741 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1742 hpd
.hpd
= RADEON_HPD_NONE
;
1743 radeon_add_legacy_encoder(dev
,
1744 radeon_get_encoder_enum(dev
,
1745 ATOM_DEVICE_LCD1_SUPPORT
,
1747 ATOM_DEVICE_LCD1_SUPPORT
);
1748 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1749 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1750 CONNECTOR_OBJECT_ID_LVDS
,
1752 /* DVI-I - primary dac, ext tmds */
1753 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1754 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
1755 radeon_add_legacy_encoder(dev
,
1756 radeon_get_encoder_enum(dev
,
1757 ATOM_DEVICE_DFP2_SUPPORT
,
1759 ATOM_DEVICE_DFP2_SUPPORT
);
1760 radeon_add_legacy_encoder(dev
,
1761 radeon_get_encoder_enum(dev
,
1762 ATOM_DEVICE_CRT1_SUPPORT
,
1764 ATOM_DEVICE_CRT1_SUPPORT
);
1765 /* XXX some are SL */
1766 radeon_add_legacy_connector(dev
, 1,
1767 ATOM_DEVICE_DFP2_SUPPORT
|
1768 ATOM_DEVICE_CRT1_SUPPORT
,
1769 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1770 CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
,
1773 ddc_i2c
.valid
= false;
1774 hpd
.hpd
= RADEON_HPD_NONE
;
1775 radeon_add_legacy_encoder(dev
,
1776 radeon_get_encoder_enum(dev
,
1777 ATOM_DEVICE_TV1_SUPPORT
,
1779 ATOM_DEVICE_TV1_SUPPORT
);
1780 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1781 DRM_MODE_CONNECTOR_SVIDEO
,
1783 CONNECTOR_OBJECT_ID_SVIDEO
,
1786 case CT_POWERBOOK_INTERNAL
:
1787 DRM_INFO("Connector Table: %d (powerbook internal tmds)\n",
1788 rdev
->mode_info
.connector_table
);
1790 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1791 hpd
.hpd
= RADEON_HPD_NONE
;
1792 radeon_add_legacy_encoder(dev
,
1793 radeon_get_encoder_enum(dev
,
1794 ATOM_DEVICE_LCD1_SUPPORT
,
1796 ATOM_DEVICE_LCD1_SUPPORT
);
1797 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1798 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1799 CONNECTOR_OBJECT_ID_LVDS
,
1801 /* DVI-I - primary dac, int tmds */
1802 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1803 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
1804 radeon_add_legacy_encoder(dev
,
1805 radeon_get_encoder_enum(dev
,
1806 ATOM_DEVICE_DFP1_SUPPORT
,
1808 ATOM_DEVICE_DFP1_SUPPORT
);
1809 radeon_add_legacy_encoder(dev
,
1810 radeon_get_encoder_enum(dev
,
1811 ATOM_DEVICE_CRT1_SUPPORT
,
1813 ATOM_DEVICE_CRT1_SUPPORT
);
1814 radeon_add_legacy_connector(dev
, 1,
1815 ATOM_DEVICE_DFP1_SUPPORT
|
1816 ATOM_DEVICE_CRT1_SUPPORT
,
1817 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1818 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1821 ddc_i2c
.valid
= false;
1822 hpd
.hpd
= RADEON_HPD_NONE
;
1823 radeon_add_legacy_encoder(dev
,
1824 radeon_get_encoder_enum(dev
,
1825 ATOM_DEVICE_TV1_SUPPORT
,
1827 ATOM_DEVICE_TV1_SUPPORT
);
1828 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1829 DRM_MODE_CONNECTOR_SVIDEO
,
1831 CONNECTOR_OBJECT_ID_SVIDEO
,
1834 case CT_POWERBOOK_VGA
:
1835 DRM_INFO("Connector Table: %d (powerbook vga)\n",
1836 rdev
->mode_info
.connector_table
);
1838 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1839 hpd
.hpd
= RADEON_HPD_NONE
;
1840 radeon_add_legacy_encoder(dev
,
1841 radeon_get_encoder_enum(dev
,
1842 ATOM_DEVICE_LCD1_SUPPORT
,
1844 ATOM_DEVICE_LCD1_SUPPORT
);
1845 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
1846 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
1847 CONNECTOR_OBJECT_ID_LVDS
,
1849 /* VGA - primary dac */
1850 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1851 hpd
.hpd
= RADEON_HPD_NONE
;
1852 radeon_add_legacy_encoder(dev
,
1853 radeon_get_encoder_enum(dev
,
1854 ATOM_DEVICE_CRT1_SUPPORT
,
1856 ATOM_DEVICE_CRT1_SUPPORT
);
1857 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT1_SUPPORT
,
1858 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1859 CONNECTOR_OBJECT_ID_VGA
,
1862 ddc_i2c
.valid
= false;
1863 hpd
.hpd
= RADEON_HPD_NONE
;
1864 radeon_add_legacy_encoder(dev
,
1865 radeon_get_encoder_enum(dev
,
1866 ATOM_DEVICE_TV1_SUPPORT
,
1868 ATOM_DEVICE_TV1_SUPPORT
);
1869 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1870 DRM_MODE_CONNECTOR_SVIDEO
,
1872 CONNECTOR_OBJECT_ID_SVIDEO
,
1875 case CT_MINI_EXTERNAL
:
1876 DRM_INFO("Connector Table: %d (mini external tmds)\n",
1877 rdev
->mode_info
.connector_table
);
1878 /* DVI-I - tv dac, ext tmds */
1879 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
1880 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
1881 radeon_add_legacy_encoder(dev
,
1882 radeon_get_encoder_enum(dev
,
1883 ATOM_DEVICE_DFP2_SUPPORT
,
1885 ATOM_DEVICE_DFP2_SUPPORT
);
1886 radeon_add_legacy_encoder(dev
,
1887 radeon_get_encoder_enum(dev
,
1888 ATOM_DEVICE_CRT2_SUPPORT
,
1890 ATOM_DEVICE_CRT2_SUPPORT
);
1891 /* XXX are any DL? */
1892 radeon_add_legacy_connector(dev
, 0,
1893 ATOM_DEVICE_DFP2_SUPPORT
|
1894 ATOM_DEVICE_CRT2_SUPPORT
,
1895 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1896 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1899 ddc_i2c
.valid
= false;
1900 hpd
.hpd
= RADEON_HPD_NONE
;
1901 radeon_add_legacy_encoder(dev
,
1902 radeon_get_encoder_enum(dev
,
1903 ATOM_DEVICE_TV1_SUPPORT
,
1905 ATOM_DEVICE_TV1_SUPPORT
);
1906 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_TV1_SUPPORT
,
1907 DRM_MODE_CONNECTOR_SVIDEO
,
1909 CONNECTOR_OBJECT_ID_SVIDEO
,
1912 case CT_MINI_INTERNAL
:
1913 DRM_INFO("Connector Table: %d (mini internal tmds)\n",
1914 rdev
->mode_info
.connector_table
);
1915 /* DVI-I - tv dac, int tmds */
1916 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
1917 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
1918 radeon_add_legacy_encoder(dev
,
1919 radeon_get_encoder_enum(dev
,
1920 ATOM_DEVICE_DFP1_SUPPORT
,
1922 ATOM_DEVICE_DFP1_SUPPORT
);
1923 radeon_add_legacy_encoder(dev
,
1924 radeon_get_encoder_enum(dev
,
1925 ATOM_DEVICE_CRT2_SUPPORT
,
1927 ATOM_DEVICE_CRT2_SUPPORT
);
1928 radeon_add_legacy_connector(dev
, 0,
1929 ATOM_DEVICE_DFP1_SUPPORT
|
1930 ATOM_DEVICE_CRT2_SUPPORT
,
1931 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
1932 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
1935 ddc_i2c
.valid
= false;
1936 hpd
.hpd
= RADEON_HPD_NONE
;
1937 radeon_add_legacy_encoder(dev
,
1938 radeon_get_encoder_enum(dev
,
1939 ATOM_DEVICE_TV1_SUPPORT
,
1941 ATOM_DEVICE_TV1_SUPPORT
);
1942 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_TV1_SUPPORT
,
1943 DRM_MODE_CONNECTOR_SVIDEO
,
1945 CONNECTOR_OBJECT_ID_SVIDEO
,
1948 case CT_IMAC_G5_ISIGHT
:
1949 DRM_INFO("Connector Table: %d (imac g5 isight)\n",
1950 rdev
->mode_info
.connector_table
);
1951 /* DVI-D - int tmds */
1952 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
1953 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
1954 radeon_add_legacy_encoder(dev
,
1955 radeon_get_encoder_enum(dev
,
1956 ATOM_DEVICE_DFP1_SUPPORT
,
1958 ATOM_DEVICE_DFP1_SUPPORT
);
1959 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_DFP1_SUPPORT
,
1960 DRM_MODE_CONNECTOR_DVID
, &ddc_i2c
,
1961 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
,
1964 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
1965 hpd
.hpd
= RADEON_HPD_NONE
;
1966 radeon_add_legacy_encoder(dev
,
1967 radeon_get_encoder_enum(dev
,
1968 ATOM_DEVICE_CRT2_SUPPORT
,
1970 ATOM_DEVICE_CRT2_SUPPORT
);
1971 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
1972 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
1973 CONNECTOR_OBJECT_ID_VGA
,
1976 ddc_i2c
.valid
= false;
1977 hpd
.hpd
= RADEON_HPD_NONE
;
1978 radeon_add_legacy_encoder(dev
,
1979 radeon_get_encoder_enum(dev
,
1980 ATOM_DEVICE_TV1_SUPPORT
,
1982 ATOM_DEVICE_TV1_SUPPORT
);
1983 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
1984 DRM_MODE_CONNECTOR_SVIDEO
,
1986 CONNECTOR_OBJECT_ID_SVIDEO
,
1990 DRM_INFO("Connector Table: %d (emac)\n",
1991 rdev
->mode_info
.connector_table
);
1992 /* VGA - primary dac */
1993 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
1994 hpd
.hpd
= RADEON_HPD_NONE
;
1995 radeon_add_legacy_encoder(dev
,
1996 radeon_get_encoder_enum(dev
,
1997 ATOM_DEVICE_CRT1_SUPPORT
,
1999 ATOM_DEVICE_CRT1_SUPPORT
);
2000 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_CRT1_SUPPORT
,
2001 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2002 CONNECTOR_OBJECT_ID_VGA
,
2005 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
2006 hpd
.hpd
= RADEON_HPD_NONE
;
2007 radeon_add_legacy_encoder(dev
,
2008 radeon_get_encoder_enum(dev
,
2009 ATOM_DEVICE_CRT2_SUPPORT
,
2011 ATOM_DEVICE_CRT2_SUPPORT
);
2012 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
2013 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2014 CONNECTOR_OBJECT_ID_VGA
,
2017 ddc_i2c
.valid
= false;
2018 hpd
.hpd
= RADEON_HPD_NONE
;
2019 radeon_add_legacy_encoder(dev
,
2020 radeon_get_encoder_enum(dev
,
2021 ATOM_DEVICE_TV1_SUPPORT
,
2023 ATOM_DEVICE_TV1_SUPPORT
);
2024 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
2025 DRM_MODE_CONNECTOR_SVIDEO
,
2027 CONNECTOR_OBJECT_ID_SVIDEO
,
2031 DRM_INFO("Connector Table: %d (rn50-power)\n",
2032 rdev
->mode_info
.connector_table
);
2033 /* VGA - primary dac */
2034 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2035 hpd
.hpd
= RADEON_HPD_NONE
;
2036 radeon_add_legacy_encoder(dev
,
2037 radeon_get_encoder_enum(dev
,
2038 ATOM_DEVICE_CRT1_SUPPORT
,
2040 ATOM_DEVICE_CRT1_SUPPORT
);
2041 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_CRT1_SUPPORT
,
2042 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2043 CONNECTOR_OBJECT_ID_VGA
,
2045 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_CRT2
, 0, 0);
2046 hpd
.hpd
= RADEON_HPD_NONE
;
2047 radeon_add_legacy_encoder(dev
,
2048 radeon_get_encoder_enum(dev
,
2049 ATOM_DEVICE_CRT2_SUPPORT
,
2051 ATOM_DEVICE_CRT2_SUPPORT
);
2052 radeon_add_legacy_connector(dev
, 1, ATOM_DEVICE_CRT2_SUPPORT
,
2053 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2054 CONNECTOR_OBJECT_ID_VGA
,
2058 DRM_INFO("Connector Table: %d (mac x800)\n",
2059 rdev
->mode_info
.connector_table
);
2060 /* DVI - primary dac, internal tmds */
2061 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2062 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
2063 radeon_add_legacy_encoder(dev
,
2064 radeon_get_encoder_enum(dev
,
2065 ATOM_DEVICE_DFP1_SUPPORT
,
2067 ATOM_DEVICE_DFP1_SUPPORT
);
2068 radeon_add_legacy_encoder(dev
,
2069 radeon_get_encoder_enum(dev
,
2070 ATOM_DEVICE_CRT1_SUPPORT
,
2072 ATOM_DEVICE_CRT1_SUPPORT
);
2073 radeon_add_legacy_connector(dev
, 0,
2074 ATOM_DEVICE_DFP1_SUPPORT
|
2075 ATOM_DEVICE_CRT1_SUPPORT
,
2076 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2077 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2079 /* DVI - tv dac, dvo */
2080 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
2081 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
2082 radeon_add_legacy_encoder(dev
,
2083 radeon_get_encoder_enum(dev
,
2084 ATOM_DEVICE_DFP2_SUPPORT
,
2086 ATOM_DEVICE_DFP2_SUPPORT
);
2087 radeon_add_legacy_encoder(dev
,
2088 radeon_get_encoder_enum(dev
,
2089 ATOM_DEVICE_CRT2_SUPPORT
,
2091 ATOM_DEVICE_CRT2_SUPPORT
);
2092 radeon_add_legacy_connector(dev
, 1,
2093 ATOM_DEVICE_DFP2_SUPPORT
|
2094 ATOM_DEVICE_CRT2_SUPPORT
,
2095 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2096 CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
,
2099 case CT_MAC_G5_9600
:
2100 DRM_INFO("Connector Table: %d (mac g5 9600)\n",
2101 rdev
->mode_info
.connector_table
);
2102 /* DVI - tv dac, dvo */
2103 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2104 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
2105 radeon_add_legacy_encoder(dev
,
2106 radeon_get_encoder_enum(dev
,
2107 ATOM_DEVICE_DFP2_SUPPORT
,
2109 ATOM_DEVICE_DFP2_SUPPORT
);
2110 radeon_add_legacy_encoder(dev
,
2111 radeon_get_encoder_enum(dev
,
2112 ATOM_DEVICE_CRT2_SUPPORT
,
2114 ATOM_DEVICE_CRT2_SUPPORT
);
2115 radeon_add_legacy_connector(dev
, 0,
2116 ATOM_DEVICE_DFP2_SUPPORT
|
2117 ATOM_DEVICE_CRT2_SUPPORT
,
2118 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2119 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2121 /* ADC - primary dac, internal tmds */
2122 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2123 hpd
.hpd
= RADEON_HPD_2
; /* ??? */
2124 radeon_add_legacy_encoder(dev
,
2125 radeon_get_encoder_enum(dev
,
2126 ATOM_DEVICE_DFP1_SUPPORT
,
2128 ATOM_DEVICE_DFP1_SUPPORT
);
2129 radeon_add_legacy_encoder(dev
,
2130 radeon_get_encoder_enum(dev
,
2131 ATOM_DEVICE_CRT1_SUPPORT
,
2133 ATOM_DEVICE_CRT1_SUPPORT
);
2134 radeon_add_legacy_connector(dev
, 1,
2135 ATOM_DEVICE_DFP1_SUPPORT
|
2136 ATOM_DEVICE_CRT1_SUPPORT
,
2137 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2138 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2141 ddc_i2c
.valid
= false;
2142 hpd
.hpd
= RADEON_HPD_NONE
;
2143 radeon_add_legacy_encoder(dev
,
2144 radeon_get_encoder_enum(dev
,
2145 ATOM_DEVICE_TV1_SUPPORT
,
2147 ATOM_DEVICE_TV1_SUPPORT
);
2148 radeon_add_legacy_connector(dev
, 2, ATOM_DEVICE_TV1_SUPPORT
,
2149 DRM_MODE_CONNECTOR_SVIDEO
,
2151 CONNECTOR_OBJECT_ID_SVIDEO
,
2155 DRM_INFO("Connector Table: %d (SAM440ep embedded board)\n",
2156 rdev
->mode_info
.connector_table
);
2158 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_NONE_DETECTED
, 0, 0);
2159 hpd
.hpd
= RADEON_HPD_NONE
;
2160 radeon_add_legacy_encoder(dev
,
2161 radeon_get_encoder_enum(dev
,
2162 ATOM_DEVICE_LCD1_SUPPORT
,
2164 ATOM_DEVICE_LCD1_SUPPORT
);
2165 radeon_add_legacy_connector(dev
, 0, ATOM_DEVICE_LCD1_SUPPORT
,
2166 DRM_MODE_CONNECTOR_LVDS
, &ddc_i2c
,
2167 CONNECTOR_OBJECT_ID_LVDS
,
2169 /* DVI-I - secondary dac, int tmds */
2170 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2171 hpd
.hpd
= RADEON_HPD_1
; /* ??? */
2172 radeon_add_legacy_encoder(dev
,
2173 radeon_get_encoder_enum(dev
,
2174 ATOM_DEVICE_DFP1_SUPPORT
,
2176 ATOM_DEVICE_DFP1_SUPPORT
);
2177 radeon_add_legacy_encoder(dev
,
2178 radeon_get_encoder_enum(dev
,
2179 ATOM_DEVICE_CRT2_SUPPORT
,
2181 ATOM_DEVICE_CRT2_SUPPORT
);
2182 radeon_add_legacy_connector(dev
, 1,
2183 ATOM_DEVICE_DFP1_SUPPORT
|
2184 ATOM_DEVICE_CRT2_SUPPORT
,
2185 DRM_MODE_CONNECTOR_DVII
, &ddc_i2c
,
2186 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2188 /* VGA - primary dac */
2189 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2190 hpd
.hpd
= RADEON_HPD_NONE
;
2191 radeon_add_legacy_encoder(dev
,
2192 radeon_get_encoder_enum(dev
,
2193 ATOM_DEVICE_CRT1_SUPPORT
,
2195 ATOM_DEVICE_CRT1_SUPPORT
);
2196 radeon_add_legacy_connector(dev
, 2,
2197 ATOM_DEVICE_CRT1_SUPPORT
,
2198 DRM_MODE_CONNECTOR_VGA
, &ddc_i2c
,
2199 CONNECTOR_OBJECT_ID_VGA
,
2202 ddc_i2c
.valid
= false;
2203 hpd
.hpd
= RADEON_HPD_NONE
;
2204 radeon_add_legacy_encoder(dev
,
2205 radeon_get_encoder_enum(dev
,
2206 ATOM_DEVICE_TV1_SUPPORT
,
2208 ATOM_DEVICE_TV1_SUPPORT
);
2209 radeon_add_legacy_connector(dev
, 3, ATOM_DEVICE_TV1_SUPPORT
,
2210 DRM_MODE_CONNECTOR_SVIDEO
,
2212 CONNECTOR_OBJECT_ID_SVIDEO
,
2216 DRM_INFO("Connector table: %d (invalid)\n",
2217 rdev
->mode_info
.connector_table
);
2221 radeon_link_encoder_connector(dev
);
2226 static bool radeon_apply_legacy_quirks(struct drm_device
*dev
,
2228 enum radeon_combios_connector
2230 struct radeon_i2c_bus_rec
*ddc_i2c
,
2231 struct radeon_hpd
*hpd
)
2234 /* Certain IBM chipset RN50s have a BIOS reporting two VGAs,
2235 one with VGA DDC and one with CRT2 DDC. - kill the CRT2 DDC one */
2236 if (dev
->pdev
->device
== 0x515e &&
2237 dev
->pdev
->subsystem_vendor
== 0x1014) {
2238 if (*legacy_connector
== CONNECTOR_CRT_LEGACY
&&
2239 ddc_i2c
->mask_clk_reg
== RADEON_GPIO_CRT2_DDC
)
2243 /* X300 card with extra non-existent DVI port */
2244 if (dev
->pdev
->device
== 0x5B60 &&
2245 dev
->pdev
->subsystem_vendor
== 0x17af &&
2246 dev
->pdev
->subsystem_device
== 0x201e && bios_index
== 2) {
2247 if (*legacy_connector
== CONNECTOR_DVI_I_LEGACY
)
2254 static bool radeon_apply_legacy_tv_quirks(struct drm_device
*dev
)
2256 /* Acer 5102 has non-existent TV port */
2257 if (dev
->pdev
->device
== 0x5975 &&
2258 dev
->pdev
->subsystem_vendor
== 0x1025 &&
2259 dev
->pdev
->subsystem_device
== 0x009f)
2262 /* HP dc5750 has non-existent TV port */
2263 if (dev
->pdev
->device
== 0x5974 &&
2264 dev
->pdev
->subsystem_vendor
== 0x103c &&
2265 dev
->pdev
->subsystem_device
== 0x280a)
2268 /* MSI S270 has non-existent TV port */
2269 if (dev
->pdev
->device
== 0x5955 &&
2270 dev
->pdev
->subsystem_vendor
== 0x1462 &&
2271 dev
->pdev
->subsystem_device
== 0x0131)
2277 static uint16_t combios_check_dl_dvi(struct drm_device
*dev
, int is_dvi_d
)
2279 struct radeon_device
*rdev
= dev
->dev_private
;
2280 uint32_t ext_tmds_info
;
2282 if (rdev
->flags
& RADEON_IS_IGP
) {
2284 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
;
2286 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2288 ext_tmds_info
= combios_get_table_offset(dev
, COMBIOS_EXT_TMDS_INFO_TABLE
);
2289 if (ext_tmds_info
) {
2290 uint8_t rev
= RBIOS8(ext_tmds_info
);
2291 uint8_t flags
= RBIOS8(ext_tmds_info
+ 4 + 5);
2294 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D
;
2296 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
;
2300 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D
;
2302 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I
;
2307 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
;
2309 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2312 bool radeon_get_legacy_connector_info_from_bios(struct drm_device
*dev
)
2314 struct radeon_device
*rdev
= dev
->dev_private
;
2315 uint32_t conn_info
, entry
, devices
;
2316 uint16_t tmp
, connector_object_id
;
2317 enum radeon_combios_ddc ddc_type
;
2318 enum radeon_combios_connector connector
;
2320 struct radeon_i2c_bus_rec ddc_i2c
;
2321 struct radeon_hpd hpd
;
2323 conn_info
= combios_get_table_offset(dev
, COMBIOS_CONNECTOR_INFO_TABLE
);
2325 for (i
= 0; i
< 4; i
++) {
2326 entry
= conn_info
+ 2 + i
* 2;
2328 if (!RBIOS16(entry
))
2331 tmp
= RBIOS16(entry
);
2333 connector
= (tmp
>> 12) & 0xf;
2335 ddc_type
= (tmp
>> 8) & 0xf;
2337 ddc_i2c
= radeon_combios_get_i2c_info_from_table(rdev
);
2339 ddc_i2c
= combios_setup_i2c_bus(rdev
, ddc_type
, 0, 0);
2341 switch (connector
) {
2342 case CONNECTOR_PROPRIETARY_LEGACY
:
2343 case CONNECTOR_DVI_I_LEGACY
:
2344 case CONNECTOR_DVI_D_LEGACY
:
2345 if ((tmp
>> 4) & 0x1)
2346 hpd
.hpd
= RADEON_HPD_2
;
2348 hpd
.hpd
= RADEON_HPD_1
;
2351 hpd
.hpd
= RADEON_HPD_NONE
;
2355 if (!radeon_apply_legacy_quirks(dev
, i
, &connector
,
2359 switch (connector
) {
2360 case CONNECTOR_PROPRIETARY_LEGACY
:
2361 if ((tmp
>> 4) & 0x1)
2362 devices
= ATOM_DEVICE_DFP2_SUPPORT
;
2364 devices
= ATOM_DEVICE_DFP1_SUPPORT
;
2365 radeon_add_legacy_encoder(dev
,
2366 radeon_get_encoder_enum
2369 radeon_add_legacy_connector(dev
, i
, devices
,
2370 legacy_connector_convert
2373 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D
,
2376 case CONNECTOR_CRT_LEGACY
:
2378 devices
= ATOM_DEVICE_CRT2_SUPPORT
;
2379 radeon_add_legacy_encoder(dev
,
2380 radeon_get_encoder_enum
2382 ATOM_DEVICE_CRT2_SUPPORT
,
2384 ATOM_DEVICE_CRT2_SUPPORT
);
2386 devices
= ATOM_DEVICE_CRT1_SUPPORT
;
2387 radeon_add_legacy_encoder(dev
,
2388 radeon_get_encoder_enum
2390 ATOM_DEVICE_CRT1_SUPPORT
,
2392 ATOM_DEVICE_CRT1_SUPPORT
);
2394 radeon_add_legacy_connector(dev
,
2397 legacy_connector_convert
2400 CONNECTOR_OBJECT_ID_VGA
,
2403 case CONNECTOR_DVI_I_LEGACY
:
2406 devices
|= ATOM_DEVICE_CRT2_SUPPORT
;
2407 radeon_add_legacy_encoder(dev
,
2408 radeon_get_encoder_enum
2410 ATOM_DEVICE_CRT2_SUPPORT
,
2412 ATOM_DEVICE_CRT2_SUPPORT
);
2414 devices
|= ATOM_DEVICE_CRT1_SUPPORT
;
2415 radeon_add_legacy_encoder(dev
,
2416 radeon_get_encoder_enum
2418 ATOM_DEVICE_CRT1_SUPPORT
,
2420 ATOM_DEVICE_CRT1_SUPPORT
);
2422 if ((tmp
>> 4) & 0x1) {
2423 devices
|= ATOM_DEVICE_DFP2_SUPPORT
;
2424 radeon_add_legacy_encoder(dev
,
2425 radeon_get_encoder_enum
2427 ATOM_DEVICE_DFP2_SUPPORT
,
2429 ATOM_DEVICE_DFP2_SUPPORT
);
2430 connector_object_id
= combios_check_dl_dvi(dev
, 0);
2432 devices
|= ATOM_DEVICE_DFP1_SUPPORT
;
2433 radeon_add_legacy_encoder(dev
,
2434 radeon_get_encoder_enum
2436 ATOM_DEVICE_DFP1_SUPPORT
,
2438 ATOM_DEVICE_DFP1_SUPPORT
);
2439 connector_object_id
= CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2441 radeon_add_legacy_connector(dev
,
2444 legacy_connector_convert
2447 connector_object_id
,
2450 case CONNECTOR_DVI_D_LEGACY
:
2451 if ((tmp
>> 4) & 0x1) {
2452 devices
= ATOM_DEVICE_DFP2_SUPPORT
;
2453 connector_object_id
= combios_check_dl_dvi(dev
, 1);
2455 devices
= ATOM_DEVICE_DFP1_SUPPORT
;
2456 connector_object_id
= CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
;
2458 radeon_add_legacy_encoder(dev
,
2459 radeon_get_encoder_enum
2462 radeon_add_legacy_connector(dev
, i
, devices
,
2463 legacy_connector_convert
2466 connector_object_id
,
2469 case CONNECTOR_CTV_LEGACY
:
2470 case CONNECTOR_STV_LEGACY
:
2471 radeon_add_legacy_encoder(dev
,
2472 radeon_get_encoder_enum
2474 ATOM_DEVICE_TV1_SUPPORT
,
2476 ATOM_DEVICE_TV1_SUPPORT
);
2477 radeon_add_legacy_connector(dev
, i
,
2478 ATOM_DEVICE_TV1_SUPPORT
,
2479 legacy_connector_convert
2482 CONNECTOR_OBJECT_ID_SVIDEO
,
2486 DRM_ERROR("Unknown connector type: %d\n",
2493 uint16_t tmds_info
=
2494 combios_get_table_offset(dev
, COMBIOS_DFP_INFO_TABLE
);
2496 DRM_DEBUG_KMS("Found DFP table, assuming DVI connector\n");
2498 radeon_add_legacy_encoder(dev
,
2499 radeon_get_encoder_enum(dev
,
2500 ATOM_DEVICE_CRT1_SUPPORT
,
2502 ATOM_DEVICE_CRT1_SUPPORT
);
2503 radeon_add_legacy_encoder(dev
,
2504 radeon_get_encoder_enum(dev
,
2505 ATOM_DEVICE_DFP1_SUPPORT
,
2507 ATOM_DEVICE_DFP1_SUPPORT
);
2509 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_DVI
, 0, 0);
2510 hpd
.hpd
= RADEON_HPD_1
;
2511 radeon_add_legacy_connector(dev
,
2513 ATOM_DEVICE_CRT1_SUPPORT
|
2514 ATOM_DEVICE_DFP1_SUPPORT
,
2515 DRM_MODE_CONNECTOR_DVII
,
2517 CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I
,
2521 combios_get_table_offset(dev
, COMBIOS_CRT_INFO_TABLE
);
2522 DRM_DEBUG_KMS("Found CRT table, assuming VGA connector\n");
2524 radeon_add_legacy_encoder(dev
,
2525 radeon_get_encoder_enum(dev
,
2526 ATOM_DEVICE_CRT1_SUPPORT
,
2528 ATOM_DEVICE_CRT1_SUPPORT
);
2529 ddc_i2c
= combios_setup_i2c_bus(rdev
, DDC_VGA
, 0, 0);
2530 hpd
.hpd
= RADEON_HPD_NONE
;
2531 radeon_add_legacy_connector(dev
,
2533 ATOM_DEVICE_CRT1_SUPPORT
,
2534 DRM_MODE_CONNECTOR_VGA
,
2536 CONNECTOR_OBJECT_ID_VGA
,
2539 DRM_DEBUG_KMS("No connector info found\n");
2545 if (rdev
->flags
& RADEON_IS_MOBILITY
|| rdev
->flags
& RADEON_IS_IGP
) {
2547 combios_get_table_offset(dev
, COMBIOS_LCD_INFO_TABLE
);
2549 uint16_t lcd_ddc_info
=
2550 combios_get_table_offset(dev
,
2551 COMBIOS_LCD_DDC_INFO_TABLE
);
2553 radeon_add_legacy_encoder(dev
,
2554 radeon_get_encoder_enum(dev
,
2555 ATOM_DEVICE_LCD1_SUPPORT
,
2557 ATOM_DEVICE_LCD1_SUPPORT
);
2560 ddc_type
= RBIOS8(lcd_ddc_info
+ 2);
2564 combios_setup_i2c_bus(rdev
,
2566 RBIOS32(lcd_ddc_info
+ 3),
2567 RBIOS32(lcd_ddc_info
+ 7));
2568 radeon_i2c_add(rdev
, &ddc_i2c
, "LCD");
2572 combios_setup_i2c_bus(rdev
,
2574 RBIOS32(lcd_ddc_info
+ 3),
2575 RBIOS32(lcd_ddc_info
+ 7));
2576 radeon_i2c_add(rdev
, &ddc_i2c
, "LCD");
2580 combios_setup_i2c_bus(rdev
, ddc_type
, 0, 0);
2583 DRM_DEBUG_KMS("LCD DDC Info Table found!\n");
2585 ddc_i2c
.valid
= false;
2587 hpd
.hpd
= RADEON_HPD_NONE
;
2588 radeon_add_legacy_connector(dev
,
2590 ATOM_DEVICE_LCD1_SUPPORT
,
2591 DRM_MODE_CONNECTOR_LVDS
,
2593 CONNECTOR_OBJECT_ID_LVDS
,
2598 /* check TV table */
2599 if (rdev
->family
!= CHIP_R100
&& rdev
->family
!= CHIP_R200
) {
2601 combios_get_table_offset(dev
, COMBIOS_TV_INFO_TABLE
);
2603 if (RBIOS8(tv_info
+ 6) == 'T') {
2604 if (radeon_apply_legacy_tv_quirks(dev
)) {
2605 hpd
.hpd
= RADEON_HPD_NONE
;
2606 ddc_i2c
.valid
= false;
2607 radeon_add_legacy_encoder(dev
,
2608 radeon_get_encoder_enum
2610 ATOM_DEVICE_TV1_SUPPORT
,
2612 ATOM_DEVICE_TV1_SUPPORT
);
2613 radeon_add_legacy_connector(dev
, 6,
2614 ATOM_DEVICE_TV1_SUPPORT
,
2615 DRM_MODE_CONNECTOR_SVIDEO
,
2617 CONNECTOR_OBJECT_ID_SVIDEO
,
2624 radeon_link_encoder_connector(dev
);
2629 static const char *thermal_controller_names
[] = {
2635 void radeon_combios_get_power_modes(struct radeon_device
*rdev
)
2637 struct drm_device
*dev
= rdev
->ddev
;
2638 u16 offset
, misc
, misc2
= 0;
2639 u8 rev
, blocks
, tmp
;
2640 int state_index
= 0;
2641 struct radeon_i2c_bus_rec i2c_bus
;
2643 rdev
->pm
.default_power_state_index
= -1;
2645 /* allocate 2 power states */
2646 rdev
->pm
.power_state
= kzalloc(sizeof(struct radeon_power_state
) * 2, GFP_KERNEL
);
2647 if (rdev
->pm
.power_state
) {
2648 /* allocate 1 clock mode per state */
2649 rdev
->pm
.power_state
[0].clock_info
=
2650 kzalloc(sizeof(struct radeon_pm_clock_info
) * 1, GFP_KERNEL
);
2651 rdev
->pm
.power_state
[1].clock_info
=
2652 kzalloc(sizeof(struct radeon_pm_clock_info
) * 1, GFP_KERNEL
);
2653 if (!rdev
->pm
.power_state
[0].clock_info
||
2654 !rdev
->pm
.power_state
[1].clock_info
)
2659 /* check for a thermal chip */
2660 offset
= combios_get_table_offset(dev
, COMBIOS_OVERDRIVE_INFO_TABLE
);
2662 u8 thermal_controller
= 0, gpio
= 0, i2c_addr
= 0, clk_bit
= 0, data_bit
= 0;
2664 rev
= RBIOS8(offset
);
2667 thermal_controller
= RBIOS8(offset
+ 3);
2668 gpio
= RBIOS8(offset
+ 4) & 0x3f;
2669 i2c_addr
= RBIOS8(offset
+ 5);
2670 } else if (rev
== 1) {
2671 thermal_controller
= RBIOS8(offset
+ 4);
2672 gpio
= RBIOS8(offset
+ 5) & 0x3f;
2673 i2c_addr
= RBIOS8(offset
+ 6);
2674 } else if (rev
== 2) {
2675 thermal_controller
= RBIOS8(offset
+ 4);
2676 gpio
= RBIOS8(offset
+ 5) & 0x3f;
2677 i2c_addr
= RBIOS8(offset
+ 6);
2678 clk_bit
= RBIOS8(offset
+ 0xa);
2679 data_bit
= RBIOS8(offset
+ 0xb);
2681 if ((thermal_controller
> 0) && (thermal_controller
< 3)) {
2682 DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2683 thermal_controller_names
[thermal_controller
],
2685 if (gpio
== DDC_LCD
) {
2687 i2c_bus
.valid
= true;
2688 i2c_bus
.hw_capable
= true;
2689 i2c_bus
.mm_i2c
= true;
2690 i2c_bus
.i2c_id
= 0xa0;
2691 } else if (gpio
== DDC_GPIO
)
2692 i2c_bus
= combios_setup_i2c_bus(rdev
, gpio
, 1 << clk_bit
, 1 << data_bit
);
2694 i2c_bus
= combios_setup_i2c_bus(rdev
, gpio
, 0, 0);
2695 rdev
->pm
.i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
2696 if (rdev
->pm
.i2c_bus
) {
2697 struct i2c_board_info info
= { };
2698 const char *name
= thermal_controller_names
[thermal_controller
];
2699 info
.addr
= i2c_addr
>> 1;
2700 strlcpy(info
.type
, name
, sizeof(info
.type
));
2701 i2c_new_device(&rdev
->pm
.i2c_bus
->adapter
, &info
);
2705 /* boards with a thermal chip, but no overdrive table */
2707 /* Asus 9600xt has an f75375 on the monid bus */
2708 if ((dev
->pdev
->device
== 0x4152) &&
2709 (dev
->pdev
->subsystem_vendor
== 0x1043) &&
2710 (dev
->pdev
->subsystem_device
== 0xc002)) {
2711 i2c_bus
= combios_setup_i2c_bus(rdev
, DDC_MONID
, 0, 0);
2712 rdev
->pm
.i2c_bus
= radeon_i2c_lookup(rdev
, &i2c_bus
);
2713 if (rdev
->pm
.i2c_bus
) {
2714 struct i2c_board_info info
= { };
2715 const char *name
= "f75375";
2717 strlcpy(info
.type
, name
, sizeof(info
.type
));
2718 i2c_new_device(&rdev
->pm
.i2c_bus
->adapter
, &info
);
2719 DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2725 if (rdev
->flags
& RADEON_IS_MOBILITY
) {
2726 offset
= combios_get_table_offset(dev
, COMBIOS_POWERPLAY_INFO_TABLE
);
2728 rev
= RBIOS8(offset
);
2729 blocks
= RBIOS8(offset
+ 0x2);
2730 /* power mode 0 tends to be the only valid one */
2731 rdev
->pm
.power_state
[state_index
].num_clock_modes
= 1;
2732 rdev
->pm
.power_state
[state_index
].clock_info
[0].mclk
= RBIOS32(offset
+ 0x5 + 0x2);
2733 rdev
->pm
.power_state
[state_index
].clock_info
[0].sclk
= RBIOS32(offset
+ 0x5 + 0x6);
2734 if ((rdev
->pm
.power_state
[state_index
].clock_info
[0].mclk
== 0) ||
2735 (rdev
->pm
.power_state
[state_index
].clock_info
[0].sclk
== 0))
2737 rdev
->pm
.power_state
[state_index
].type
=
2738 POWER_STATE_TYPE_BATTERY
;
2739 misc
= RBIOS16(offset
+ 0x5 + 0x0);
2741 misc2
= RBIOS16(offset
+ 0x5 + 0xe);
2742 rdev
->pm
.power_state
[state_index
].misc
= misc
;
2743 rdev
->pm
.power_state
[state_index
].misc2
= misc2
;
2745 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.type
= VOLTAGE_GPIO
;
2747 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.active_high
=
2750 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.active_high
=
2752 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.valid
= true;
2754 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.reg
=
2755 RBIOS16(offset
+ 0x5 + 0xb) * 4;
2756 tmp
= RBIOS8(offset
+ 0x5 + 0xd);
2757 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.mask
= (1 << tmp
);
2759 u8 entries
= RBIOS8(offset
+ 0x5 + 0xb);
2760 u16 voltage_table_offset
= RBIOS16(offset
+ 0x5 + 0xc);
2761 if (entries
&& voltage_table_offset
) {
2762 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.reg
=
2763 RBIOS16(voltage_table_offset
) * 4;
2764 tmp
= RBIOS8(voltage_table_offset
+ 0x2);
2765 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.mask
= (1 << tmp
);
2767 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.gpio
.valid
= false;
2769 switch ((misc2
& 0x700) >> 8) {
2772 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 0;
2775 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 33;
2778 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 66;
2781 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 99;
2784 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.delay
= 132;
2788 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.type
= VOLTAGE_NONE
;
2790 rdev
->pm
.power_state
[state_index
].pcie_lanes
=
2791 RBIOS8(offset
+ 0x5 + 0x10);
2792 rdev
->pm
.power_state
[state_index
].flags
= RADEON_PM_STATE_SINGLE_DISPLAY_ONLY
;
2795 /* XXX figure out some good default low power mode for mobility cards w/out power tables */
2798 /* XXX figure out some good default low power mode for desktop cards */
2802 /* add the default mode */
2803 rdev
->pm
.power_state
[state_index
].type
=
2804 POWER_STATE_TYPE_DEFAULT
;
2805 rdev
->pm
.power_state
[state_index
].num_clock_modes
= 1;
2806 rdev
->pm
.power_state
[state_index
].clock_info
[0].mclk
= rdev
->clock
.default_mclk
;
2807 rdev
->pm
.power_state
[state_index
].clock_info
[0].sclk
= rdev
->clock
.default_sclk
;
2808 rdev
->pm
.power_state
[state_index
].default_clock_mode
= &rdev
->pm
.power_state
[state_index
].clock_info
[0];
2809 if ((state_index
> 0) &&
2810 (rdev
->pm
.power_state
[0].clock_info
[0].voltage
.type
== VOLTAGE_GPIO
))
2811 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
=
2812 rdev
->pm
.power_state
[0].clock_info
[0].voltage
;
2814 rdev
->pm
.power_state
[state_index
].clock_info
[0].voltage
.type
= VOLTAGE_NONE
;
2815 rdev
->pm
.power_state
[state_index
].pcie_lanes
= 16;
2816 rdev
->pm
.power_state
[state_index
].flags
= 0;
2817 rdev
->pm
.default_power_state_index
= state_index
;
2818 rdev
->pm
.num_power_states
= state_index
+ 1;
2820 rdev
->pm
.current_power_state_index
= rdev
->pm
.default_power_state_index
;
2821 rdev
->pm
.current_clock_mode_index
= 0;
2825 rdev
->pm
.default_power_state_index
= state_index
;
2826 rdev
->pm
.num_power_states
= 0;
2828 rdev
->pm
.current_power_state_index
= rdev
->pm
.default_power_state_index
;
2829 rdev
->pm
.current_clock_mode_index
= 0;
2832 void radeon_external_tmds_setup(struct drm_encoder
*encoder
)
2834 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
2835 struct radeon_encoder_ext_tmds
*tmds
= radeon_encoder
->enc_priv
;
2840 switch (tmds
->dvo_chip
) {
2843 radeon_i2c_put_byte(tmds
->i2c_bus
,
2846 radeon_i2c_put_byte(tmds
->i2c_bus
,
2849 radeon_i2c_put_byte(tmds
->i2c_bus
,
2852 radeon_i2c_put_byte(tmds
->i2c_bus
,
2855 radeon_i2c_put_byte(tmds
->i2c_bus
,
2860 /* sil 1178 - untested */
2879 bool radeon_combios_external_tmds_setup(struct drm_encoder
*encoder
)
2881 struct drm_device
*dev
= encoder
->dev
;
2882 struct radeon_device
*rdev
= dev
->dev_private
;
2883 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
2885 uint8_t blocks
, slave_addr
, rev
;
2887 uint32_t reg
, val
, and_mask
, or_mask
;
2888 struct radeon_encoder_ext_tmds
*tmds
= radeon_encoder
->enc_priv
;
2893 if (rdev
->flags
& RADEON_IS_IGP
) {
2894 offset
= combios_get_table_offset(dev
, COMBIOS_TMDS_POWER_ON_TABLE
);
2895 rev
= RBIOS8(offset
);
2897 rev
= RBIOS8(offset
);
2899 blocks
= RBIOS8(offset
+ 3);
2901 while (blocks
> 0) {
2902 id
= RBIOS16(index
);
2906 reg
= (id
& 0x1fff) * 4;
2907 val
= RBIOS32(index
);
2912 reg
= (id
& 0x1fff) * 4;
2913 and_mask
= RBIOS32(index
);
2915 or_mask
= RBIOS32(index
);
2918 val
= (val
& and_mask
) | or_mask
;
2922 val
= RBIOS16(index
);
2927 val
= RBIOS16(index
);
2932 slave_addr
= id
& 0xff;
2933 slave_addr
>>= 1; /* 7 bit addressing */
2935 reg
= RBIOS8(index
);
2937 val
= RBIOS8(index
);
2939 radeon_i2c_put_byte(tmds
->i2c_bus
,
2944 DRM_ERROR("Unknown id %d\n", id
>> 13);
2953 offset
= combios_get_table_offset(dev
, COMBIOS_EXT_TMDS_INFO_TABLE
);
2955 index
= offset
+ 10;
2956 id
= RBIOS16(index
);
2957 while (id
!= 0xffff) {
2961 reg
= (id
& 0x1fff) * 4;
2962 val
= RBIOS32(index
);
2966 reg
= (id
& 0x1fff) * 4;
2967 and_mask
= RBIOS32(index
);
2969 or_mask
= RBIOS32(index
);
2972 val
= (val
& and_mask
) | or_mask
;
2976 val
= RBIOS16(index
);
2982 and_mask
= RBIOS32(index
);
2984 or_mask
= RBIOS32(index
);
2986 val
= RREG32_PLL(reg
);
2987 val
= (val
& and_mask
) | or_mask
;
2988 WREG32_PLL(reg
, val
);
2992 val
= RBIOS8(index
);
2994 radeon_i2c_put_byte(tmds
->i2c_bus
,
2999 DRM_ERROR("Unknown id %d\n", id
>> 13);
3002 id
= RBIOS16(index
);
3010 static void combios_parse_mmio_table(struct drm_device
*dev
, uint16_t offset
)
3012 struct radeon_device
*rdev
= dev
->dev_private
;
3015 while (RBIOS16(offset
)) {
3016 uint16_t cmd
= ((RBIOS16(offset
) & 0xe000) >> 13);
3017 uint32_t addr
= (RBIOS16(offset
) & 0x1fff);
3018 uint32_t val
, and_mask
, or_mask
;
3024 val
= RBIOS32(offset
);
3029 val
= RBIOS32(offset
);
3034 and_mask
= RBIOS32(offset
);
3036 or_mask
= RBIOS32(offset
);
3044 and_mask
= RBIOS32(offset
);
3046 or_mask
= RBIOS32(offset
);
3054 val
= RBIOS16(offset
);
3059 val
= RBIOS16(offset
);
3066 (RADEON_CLK_PWRMGT_CNTL
) &
3073 if ((RREG32(RADEON_MC_STATUS
) &
3089 static void combios_parse_pll_table(struct drm_device
*dev
, uint16_t offset
)
3091 struct radeon_device
*rdev
= dev
->dev_private
;
3094 while (RBIOS8(offset
)) {
3095 uint8_t cmd
= ((RBIOS8(offset
) & 0xc0) >> 6);
3096 uint8_t addr
= (RBIOS8(offset
) & 0x3f);
3097 uint32_t val
, shift
, tmp
;
3098 uint32_t and_mask
, or_mask
;
3103 val
= RBIOS32(offset
);
3105 WREG32_PLL(addr
, val
);
3108 shift
= RBIOS8(offset
) * 8;
3110 and_mask
= RBIOS8(offset
) << shift
;
3111 and_mask
|= ~(0xff << shift
);
3113 or_mask
= RBIOS8(offset
) << shift
;
3115 tmp
= RREG32_PLL(addr
);
3118 WREG32_PLL(addr
, tmp
);
3134 (RADEON_CLK_PWRMGT_CNTL
) &
3142 (RADEON_CLK_PWRMGT_CNTL
) &
3149 RREG32_PLL(RADEON_CLK_PWRMGT_CNTL
);
3150 if (tmp
& RADEON_CG_NO1_DEBUG_0
) {
3152 uint32_t mclk_cntl
=
3155 mclk_cntl
&= 0xffff0000;
3156 /*mclk_cntl |= 0x00001111;*//* ??? */
3157 WREG32_PLL(RADEON_MCLK_CNTL
,
3162 (RADEON_CLK_PWRMGT_CNTL
,
3164 ~RADEON_CG_NO1_DEBUG_0
);
3179 static void combios_parse_ram_reset_table(struct drm_device
*dev
,
3182 struct radeon_device
*rdev
= dev
->dev_private
;
3186 uint8_t val
= RBIOS8(offset
);
3187 while (val
!= 0xff) {
3191 uint32_t channel_complete_mask
;
3193 if (ASIC_IS_R300(rdev
))
3194 channel_complete_mask
=
3195 R300_MEM_PWRUP_COMPLETE
;
3197 channel_complete_mask
=
3198 RADEON_MEM_PWRUP_COMPLETE
;
3201 if ((RREG32(RADEON_MEM_STR_CNTL
) &
3202 channel_complete_mask
) ==
3203 channel_complete_mask
)
3207 uint32_t or_mask
= RBIOS16(offset
);
3210 tmp
= RREG32(RADEON_MEM_SDRAM_MODE_REG
);
3211 tmp
&= RADEON_SDRAM_MODE_MASK
;
3213 WREG32(RADEON_MEM_SDRAM_MODE_REG
, tmp
);
3215 or_mask
= val
<< 24;
3216 tmp
= RREG32(RADEON_MEM_SDRAM_MODE_REG
);
3217 tmp
&= RADEON_B3MEM_RESET_MASK
;
3219 WREG32(RADEON_MEM_SDRAM_MODE_REG
, tmp
);
3221 val
= RBIOS8(offset
);
3226 static uint32_t combios_detect_ram(struct drm_device
*dev
, int ram
,
3227 int mem_addr_mapping
)
3229 struct radeon_device
*rdev
= dev
->dev_private
;
3234 mem_cntl
= RREG32(RADEON_MEM_CNTL
);
3235 if (mem_cntl
& RV100_HALF_MODE
)
3238 mem_cntl
&= ~(0xff << 8);
3239 mem_cntl
|= (mem_addr_mapping
& 0xff) << 8;
3240 WREG32(RADEON_MEM_CNTL
, mem_cntl
);
3241 RREG32(RADEON_MEM_CNTL
);
3245 /* something like this???? */
3247 addr
= ram
* 1024 * 1024;
3248 /* write to each page */
3249 WREG32(RADEON_MM_INDEX
, (addr
) | RADEON_MM_APER
);
3250 WREG32(RADEON_MM_DATA
, 0xdeadbeef);
3251 /* read back and verify */
3252 WREG32(RADEON_MM_INDEX
, (addr
) | RADEON_MM_APER
);
3253 if (RREG32(RADEON_MM_DATA
) != 0xdeadbeef)
3260 static void combios_write_ram_size(struct drm_device
*dev
)
3262 struct radeon_device
*rdev
= dev
->dev_private
;
3265 uint32_t mem_size
= 0;
3266 uint32_t mem_cntl
= 0;
3268 /* should do something smarter here I guess... */
3269 if (rdev
->flags
& RADEON_IS_IGP
)
3272 /* first check detected mem table */
3273 offset
= combios_get_table_offset(dev
, COMBIOS_DETECTED_MEM_TABLE
);
3275 rev
= RBIOS8(offset
);
3277 mem_cntl
= RBIOS32(offset
+ 1);
3278 mem_size
= RBIOS16(offset
+ 5);
3279 if ((rdev
->family
< CHIP_R200
) &&
3280 !ASIC_IS_RN50(rdev
))
3281 WREG32(RADEON_MEM_CNTL
, mem_cntl
);
3287 combios_get_table_offset(dev
, COMBIOS_MEM_CONFIG_TABLE
);
3289 rev
= RBIOS8(offset
- 1);
3291 if ((rdev
->family
< CHIP_R200
)
3292 && !ASIC_IS_RN50(rdev
)) {
3294 int mem_addr_mapping
= 0;
3296 while (RBIOS8(offset
)) {
3297 ram
= RBIOS8(offset
);
3300 if (mem_addr_mapping
!= 0x25)
3303 combios_detect_ram(dev
, ram
,
3310 mem_size
= RBIOS8(offset
);
3312 mem_size
= RBIOS8(offset
);
3313 mem_size
*= 2; /* convert to MB */
3318 mem_size
*= (1024 * 1024); /* convert to bytes */
3319 WREG32(RADEON_CONFIG_MEMSIZE
, mem_size
);
3322 void radeon_combios_dyn_clk_setup(struct drm_device
*dev
, int enable
)
3324 uint16_t dyn_clk_info
=
3325 combios_get_table_offset(dev
, COMBIOS_DYN_CLK_1_TABLE
);
3328 combios_parse_pll_table(dev
, dyn_clk_info
);
3331 void radeon_combios_asic_init(struct drm_device
*dev
)
3333 struct radeon_device
*rdev
= dev
->dev_private
;
3336 /* port hardcoded mac stuff from radeonfb */
3337 if (rdev
->bios
== NULL
)
3341 table
= combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_1_TABLE
);
3343 combios_parse_mmio_table(dev
, table
);
3346 table
= combios_get_table_offset(dev
, COMBIOS_PLL_INIT_TABLE
);
3348 combios_parse_pll_table(dev
, table
);
3351 table
= combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_2_TABLE
);
3353 combios_parse_mmio_table(dev
, table
);
3355 if (!(rdev
->flags
& RADEON_IS_IGP
)) {
3358 combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_4_TABLE
);
3360 combios_parse_mmio_table(dev
, table
);
3363 table
= combios_get_table_offset(dev
, COMBIOS_RAM_RESET_TABLE
);
3365 combios_parse_ram_reset_table(dev
, table
);
3369 combios_get_table_offset(dev
, COMBIOS_ASIC_INIT_3_TABLE
);
3371 combios_parse_mmio_table(dev
, table
);
3373 /* write CONFIG_MEMSIZE */
3374 combios_write_ram_size(dev
);
3377 /* quirk for rs4xx HP nx6125 laptop to make it resume
3378 * - it hangs on resume inside the dynclk 1 table.
3380 if (rdev
->family
== CHIP_RS480
&&
3381 rdev
->pdev
->subsystem_vendor
== 0x103c &&
3382 rdev
->pdev
->subsystem_device
== 0x308b)
3385 /* quirk for rs4xx HP dv5000 laptop to make it resume
3386 * - it hangs on resume inside the dynclk 1 table.
3388 if (rdev
->family
== CHIP_RS480
&&
3389 rdev
->pdev
->subsystem_vendor
== 0x103c &&
3390 rdev
->pdev
->subsystem_device
== 0x30a4)
3393 /* quirk for rs4xx Compaq Presario V5245EU laptop to make it resume
3394 * - it hangs on resume inside the dynclk 1 table.
3396 if (rdev
->family
== CHIP_RS480
&&
3397 rdev
->pdev
->subsystem_vendor
== 0x103c &&
3398 rdev
->pdev
->subsystem_device
== 0x30ae)
3402 table
= combios_get_table_offset(dev
, COMBIOS_DYN_CLK_1_TABLE
);
3404 combios_parse_pll_table(dev
, table
);
3408 void radeon_combios_initialize_bios_scratch_regs(struct drm_device
*dev
)
3410 struct radeon_device
*rdev
= dev
->dev_private
;
3411 uint32_t bios_0_scratch
, bios_6_scratch
, bios_7_scratch
;
3413 bios_0_scratch
= RREG32(RADEON_BIOS_0_SCRATCH
);
3414 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
3415 bios_7_scratch
= RREG32(RADEON_BIOS_7_SCRATCH
);
3417 /* let the bios control the backlight */
3418 bios_0_scratch
&= ~RADEON_DRIVER_BRIGHTNESS_EN
;
3420 /* tell the bios not to handle mode switching */
3421 bios_6_scratch
|= (RADEON_DISPLAY_SWITCHING_DIS
|
3422 RADEON_ACC_MODE_CHANGE
);
3424 /* tell the bios a driver is loaded */
3425 bios_7_scratch
|= RADEON_DRV_LOADED
;
3427 WREG32(RADEON_BIOS_0_SCRATCH
, bios_0_scratch
);
3428 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
3429 WREG32(RADEON_BIOS_7_SCRATCH
, bios_7_scratch
);
3432 void radeon_combios_output_lock(struct drm_encoder
*encoder
, bool lock
)
3434 struct drm_device
*dev
= encoder
->dev
;
3435 struct radeon_device
*rdev
= dev
->dev_private
;
3436 uint32_t bios_6_scratch
;
3438 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
3441 bios_6_scratch
|= RADEON_DRIVER_CRITICAL
;
3443 bios_6_scratch
&= ~RADEON_DRIVER_CRITICAL
;
3445 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
3449 radeon_combios_connected_scratch_regs(struct drm_connector
*connector
,
3450 struct drm_encoder
*encoder
,
3453 struct drm_device
*dev
= connector
->dev
;
3454 struct radeon_device
*rdev
= dev
->dev_private
;
3455 struct radeon_connector
*radeon_connector
=
3456 to_radeon_connector(connector
);
3457 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
3458 uint32_t bios_4_scratch
= RREG32(RADEON_BIOS_4_SCRATCH
);
3459 uint32_t bios_5_scratch
= RREG32(RADEON_BIOS_5_SCRATCH
);
3461 if ((radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) &&
3462 (radeon_connector
->devices
& ATOM_DEVICE_TV1_SUPPORT
)) {
3464 DRM_DEBUG_KMS("TV1 connected\n");
3466 bios_4_scratch
|= RADEON_TV1_ATTACHED_SVIDEO
;
3467 /*save->bios_4_scratch |= RADEON_TV1_ATTACHED_COMP; */
3468 bios_5_scratch
|= RADEON_TV1_ON
;
3469 bios_5_scratch
|= RADEON_ACC_REQ_TV1
;
3471 DRM_DEBUG_KMS("TV1 disconnected\n");
3472 bios_4_scratch
&= ~RADEON_TV1_ATTACHED_MASK
;
3473 bios_5_scratch
&= ~RADEON_TV1_ON
;
3474 bios_5_scratch
&= ~RADEON_ACC_REQ_TV1
;
3477 if ((radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) &&
3478 (radeon_connector
->devices
& ATOM_DEVICE_LCD1_SUPPORT
)) {
3480 DRM_DEBUG_KMS("LCD1 connected\n");
3481 bios_4_scratch
|= RADEON_LCD1_ATTACHED
;
3482 bios_5_scratch
|= RADEON_LCD1_ON
;
3483 bios_5_scratch
|= RADEON_ACC_REQ_LCD1
;
3485 DRM_DEBUG_KMS("LCD1 disconnected\n");
3486 bios_4_scratch
&= ~RADEON_LCD1_ATTACHED
;
3487 bios_5_scratch
&= ~RADEON_LCD1_ON
;
3488 bios_5_scratch
&= ~RADEON_ACC_REQ_LCD1
;
3491 if ((radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) &&
3492 (radeon_connector
->devices
& ATOM_DEVICE_CRT1_SUPPORT
)) {
3494 DRM_DEBUG_KMS("CRT1 connected\n");
3495 bios_4_scratch
|= RADEON_CRT1_ATTACHED_COLOR
;
3496 bios_5_scratch
|= RADEON_CRT1_ON
;
3497 bios_5_scratch
|= RADEON_ACC_REQ_CRT1
;
3499 DRM_DEBUG_KMS("CRT1 disconnected\n");
3500 bios_4_scratch
&= ~RADEON_CRT1_ATTACHED_MASK
;
3501 bios_5_scratch
&= ~RADEON_CRT1_ON
;
3502 bios_5_scratch
&= ~RADEON_ACC_REQ_CRT1
;
3505 if ((radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) &&
3506 (radeon_connector
->devices
& ATOM_DEVICE_CRT2_SUPPORT
)) {
3508 DRM_DEBUG_KMS("CRT2 connected\n");
3509 bios_4_scratch
|= RADEON_CRT2_ATTACHED_COLOR
;
3510 bios_5_scratch
|= RADEON_CRT2_ON
;
3511 bios_5_scratch
|= RADEON_ACC_REQ_CRT2
;
3513 DRM_DEBUG_KMS("CRT2 disconnected\n");
3514 bios_4_scratch
&= ~RADEON_CRT2_ATTACHED_MASK
;
3515 bios_5_scratch
&= ~RADEON_CRT2_ON
;
3516 bios_5_scratch
&= ~RADEON_ACC_REQ_CRT2
;
3519 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) &&
3520 (radeon_connector
->devices
& ATOM_DEVICE_DFP1_SUPPORT
)) {
3522 DRM_DEBUG_KMS("DFP1 connected\n");
3523 bios_4_scratch
|= RADEON_DFP1_ATTACHED
;
3524 bios_5_scratch
|= RADEON_DFP1_ON
;
3525 bios_5_scratch
|= RADEON_ACC_REQ_DFP1
;
3527 DRM_DEBUG_KMS("DFP1 disconnected\n");
3528 bios_4_scratch
&= ~RADEON_DFP1_ATTACHED
;
3529 bios_5_scratch
&= ~RADEON_DFP1_ON
;
3530 bios_5_scratch
&= ~RADEON_ACC_REQ_DFP1
;
3533 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) &&
3534 (radeon_connector
->devices
& ATOM_DEVICE_DFP2_SUPPORT
)) {
3536 DRM_DEBUG_KMS("DFP2 connected\n");
3537 bios_4_scratch
|= RADEON_DFP2_ATTACHED
;
3538 bios_5_scratch
|= RADEON_DFP2_ON
;
3539 bios_5_scratch
|= RADEON_ACC_REQ_DFP2
;
3541 DRM_DEBUG_KMS("DFP2 disconnected\n");
3542 bios_4_scratch
&= ~RADEON_DFP2_ATTACHED
;
3543 bios_5_scratch
&= ~RADEON_DFP2_ON
;
3544 bios_5_scratch
&= ~RADEON_ACC_REQ_DFP2
;
3547 WREG32(RADEON_BIOS_4_SCRATCH
, bios_4_scratch
);
3548 WREG32(RADEON_BIOS_5_SCRATCH
, bios_5_scratch
);
3552 radeon_combios_encoder_crtc_scratch_regs(struct drm_encoder
*encoder
, int crtc
)
3554 struct drm_device
*dev
= encoder
->dev
;
3555 struct radeon_device
*rdev
= dev
->dev_private
;
3556 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
3557 uint32_t bios_5_scratch
= RREG32(RADEON_BIOS_5_SCRATCH
);
3559 if (radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) {
3560 bios_5_scratch
&= ~RADEON_TV1_CRTC_MASK
;
3561 bios_5_scratch
|= (crtc
<< RADEON_TV1_CRTC_SHIFT
);
3563 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) {
3564 bios_5_scratch
&= ~RADEON_CRT1_CRTC_MASK
;
3565 bios_5_scratch
|= (crtc
<< RADEON_CRT1_CRTC_SHIFT
);
3567 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) {
3568 bios_5_scratch
&= ~RADEON_CRT2_CRTC_MASK
;
3569 bios_5_scratch
|= (crtc
<< RADEON_CRT2_CRTC_SHIFT
);
3571 if (radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) {
3572 bios_5_scratch
&= ~RADEON_LCD1_CRTC_MASK
;
3573 bios_5_scratch
|= (crtc
<< RADEON_LCD1_CRTC_SHIFT
);
3575 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) {
3576 bios_5_scratch
&= ~RADEON_DFP1_CRTC_MASK
;
3577 bios_5_scratch
|= (crtc
<< RADEON_DFP1_CRTC_SHIFT
);
3579 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) {
3580 bios_5_scratch
&= ~RADEON_DFP2_CRTC_MASK
;
3581 bios_5_scratch
|= (crtc
<< RADEON_DFP2_CRTC_SHIFT
);
3583 WREG32(RADEON_BIOS_5_SCRATCH
, bios_5_scratch
);
3587 radeon_combios_encoder_dpms_scratch_regs(struct drm_encoder
*encoder
, bool on
)
3589 struct drm_device
*dev
= encoder
->dev
;
3590 struct radeon_device
*rdev
= dev
->dev_private
;
3591 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
3592 uint32_t bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
3594 if (radeon_encoder
->devices
& (ATOM_DEVICE_TV_SUPPORT
)) {
3596 bios_6_scratch
|= RADEON_TV_DPMS_ON
;
3598 bios_6_scratch
&= ~RADEON_TV_DPMS_ON
;
3600 if (radeon_encoder
->devices
& (ATOM_DEVICE_CRT_SUPPORT
)) {
3602 bios_6_scratch
|= RADEON_CRT_DPMS_ON
;
3604 bios_6_scratch
&= ~RADEON_CRT_DPMS_ON
;
3606 if (radeon_encoder
->devices
& (ATOM_DEVICE_LCD_SUPPORT
)) {
3608 bios_6_scratch
|= RADEON_LCD_DPMS_ON
;
3610 bios_6_scratch
&= ~RADEON_LCD_DPMS_ON
;
3612 if (radeon_encoder
->devices
& (ATOM_DEVICE_DFP_SUPPORT
)) {
3614 bios_6_scratch
|= RADEON_DFP_DPMS_ON
;
3616 bios_6_scratch
&= ~RADEON_DFP_DPMS_ON
;
3618 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);