2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
23 * Authors: Dave Airlie
27 #include "radeon_drm.h"
31 #include "atom-bits.h"
33 /* from radeon_encoder.c */
35 radeon_get_encoder_id(struct drm_device
*dev
, uint32_t supported_device
,
37 extern void radeon_link_encoder_connector(struct drm_device
*dev
);
39 radeon_add_atom_encoder(struct drm_device
*dev
, uint32_t encoder_id
,
40 uint32_t supported_device
);
42 /* from radeon_connector.c */
44 radeon_add_atom_connector(struct drm_device
*dev
,
45 uint32_t connector_id
,
46 uint32_t supported_device
,
48 struct radeon_i2c_bus_rec
*i2c_bus
,
49 bool linkb
, uint32_t igp_lane_info
);
51 /* from radeon_legacy_encoder.c */
53 radeon_add_legacy_encoder(struct drm_device
*dev
, uint32_t encoder_id
,
54 uint32_t supported_device
);
56 union atom_supported_devices
{
57 struct _ATOM_SUPPORTED_DEVICES_INFO info
;
58 struct _ATOM_SUPPORTED_DEVICES_INFO_2 info_2
;
59 struct _ATOM_SUPPORTED_DEVICES_INFO_2d1 info_2d1
;
62 static inline struct radeon_i2c_bus_rec
radeon_lookup_gpio(struct drm_device
65 struct radeon_device
*rdev
= dev
->dev_private
;
66 struct atom_context
*ctx
= rdev
->mode_info
.atom_context
;
67 ATOM_GPIO_I2C_ASSIGMENT gpio
;
68 struct radeon_i2c_bus_rec i2c
;
69 int index
= GetIndexIntoMasterTable(DATA
, GPIO_I2C_Info
);
70 struct _ATOM_GPIO_I2C_INFO
*i2c_info
;
73 memset(&i2c
, 0, sizeof(struct radeon_i2c_bus_rec
));
76 atom_parse_data_header(ctx
, index
, NULL
, NULL
, NULL
, &data_offset
);
78 i2c_info
= (struct _ATOM_GPIO_I2C_INFO
*)(ctx
->bios
+ data_offset
);
80 gpio
= i2c_info
->asGPIO_Info
[id
];
82 i2c
.mask_clk_reg
= le16_to_cpu(gpio
.usClkMaskRegisterIndex
) * 4;
83 i2c
.mask_data_reg
= le16_to_cpu(gpio
.usDataMaskRegisterIndex
) * 4;
84 i2c
.put_clk_reg
= le16_to_cpu(gpio
.usClkEnRegisterIndex
) * 4;
85 i2c
.put_data_reg
= le16_to_cpu(gpio
.usDataEnRegisterIndex
) * 4;
86 i2c
.get_clk_reg
= le16_to_cpu(gpio
.usClkY_RegisterIndex
) * 4;
87 i2c
.get_data_reg
= le16_to_cpu(gpio
.usDataY_RegisterIndex
) * 4;
88 i2c
.a_clk_reg
= le16_to_cpu(gpio
.usClkA_RegisterIndex
) * 4;
89 i2c
.a_data_reg
= le16_to_cpu(gpio
.usDataA_RegisterIndex
) * 4;
90 i2c
.mask_clk_mask
= (1 << gpio
.ucClkMaskShift
);
91 i2c
.mask_data_mask
= (1 << gpio
.ucDataMaskShift
);
92 i2c
.put_clk_mask
= (1 << gpio
.ucClkEnShift
);
93 i2c
.put_data_mask
= (1 << gpio
.ucDataEnShift
);
94 i2c
.get_clk_mask
= (1 << gpio
.ucClkY_Shift
);
95 i2c
.get_data_mask
= (1 << gpio
.ucDataY_Shift
);
96 i2c
.a_clk_mask
= (1 << gpio
.ucClkA_Shift
);
97 i2c
.a_data_mask
= (1 << gpio
.ucDataA_Shift
);
103 static bool radeon_atom_apply_quirks(struct drm_device
*dev
,
104 uint32_t supported_device
,
106 struct radeon_i2c_bus_rec
*i2c_bus
,
110 /* Asus M2A-VM HDMI board lists the DVI port as HDMI */
111 if ((dev
->pdev
->device
== 0x791e) &&
112 (dev
->pdev
->subsystem_vendor
== 0x1043) &&
113 (dev
->pdev
->subsystem_device
== 0x826d)) {
114 if ((*connector_type
== DRM_MODE_CONNECTOR_HDMIA
) &&
115 (supported_device
== ATOM_DEVICE_DFP3_SUPPORT
))
116 *connector_type
= DRM_MODE_CONNECTOR_DVID
;
119 /* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */
120 if ((dev
->pdev
->device
== 0x7941) &&
121 (dev
->pdev
->subsystem_vendor
== 0x147b) &&
122 (dev
->pdev
->subsystem_device
== 0x2412)) {
123 if (*connector_type
== DRM_MODE_CONNECTOR_DVII
)
127 /* Falcon NW laptop lists vga ddc line for LVDS */
128 if ((dev
->pdev
->device
== 0x5653) &&
129 (dev
->pdev
->subsystem_vendor
== 0x1462) &&
130 (dev
->pdev
->subsystem_device
== 0x0291)) {
131 if (*connector_type
== DRM_MODE_CONNECTOR_LVDS
) {
132 i2c_bus
->valid
= false;
138 if ((dev
->pdev
->device
== 0x71C5) &&
139 (dev
->pdev
->subsystem_vendor
== 0x106b) &&
140 (dev
->pdev
->subsystem_device
== 0x0080)) {
141 if ((supported_device
== ATOM_DEVICE_CRT1_SUPPORT
) ||
142 (supported_device
== ATOM_DEVICE_DFP2_SUPPORT
))
146 /* ASUS HD 3600 XT board lists the DVI port as HDMI */
147 if ((dev
->pdev
->device
== 0x9598) &&
148 (dev
->pdev
->subsystem_vendor
== 0x1043) &&
149 (dev
->pdev
->subsystem_device
== 0x01da)) {
150 if (*connector_type
== DRM_MODE_CONNECTOR_HDMIA
) {
151 *connector_type
= DRM_MODE_CONNECTOR_DVII
;
155 /* ASUS HD 3450 board lists the DVI port as HDMI */
156 if ((dev
->pdev
->device
== 0x95C5) &&
157 (dev
->pdev
->subsystem_vendor
== 0x1043) &&
158 (dev
->pdev
->subsystem_device
== 0x01e2)) {
159 if (*connector_type
== DRM_MODE_CONNECTOR_HDMIA
) {
160 *connector_type
= DRM_MODE_CONNECTOR_DVII
;
164 /* some BIOSes seem to report DAC on HDMI - usually this is a board with
165 * HDMI + VGA reporting as HDMI
167 if (*connector_type
== DRM_MODE_CONNECTOR_HDMIA
) {
168 if (supported_device
& (ATOM_DEVICE_CRT_SUPPORT
)) {
169 *connector_type
= DRM_MODE_CONNECTOR_VGA
;
177 const int supported_devices_connector_convert
[] = {
178 DRM_MODE_CONNECTOR_Unknown
,
179 DRM_MODE_CONNECTOR_VGA
,
180 DRM_MODE_CONNECTOR_DVII
,
181 DRM_MODE_CONNECTOR_DVID
,
182 DRM_MODE_CONNECTOR_DVIA
,
183 DRM_MODE_CONNECTOR_SVIDEO
,
184 DRM_MODE_CONNECTOR_Composite
,
185 DRM_MODE_CONNECTOR_LVDS
,
186 DRM_MODE_CONNECTOR_Unknown
,
187 DRM_MODE_CONNECTOR_Unknown
,
188 DRM_MODE_CONNECTOR_HDMIA
,
189 DRM_MODE_CONNECTOR_HDMIB
,
190 DRM_MODE_CONNECTOR_Unknown
,
191 DRM_MODE_CONNECTOR_Unknown
,
192 DRM_MODE_CONNECTOR_9PinDIN
,
193 DRM_MODE_CONNECTOR_DisplayPort
196 const int object_connector_convert
[] = {
197 DRM_MODE_CONNECTOR_Unknown
,
198 DRM_MODE_CONNECTOR_DVII
,
199 DRM_MODE_CONNECTOR_DVII
,
200 DRM_MODE_CONNECTOR_DVID
,
201 DRM_MODE_CONNECTOR_DVID
,
202 DRM_MODE_CONNECTOR_VGA
,
203 DRM_MODE_CONNECTOR_Composite
,
204 DRM_MODE_CONNECTOR_SVIDEO
,
205 DRM_MODE_CONNECTOR_Unknown
,
206 DRM_MODE_CONNECTOR_Unknown
,
207 DRM_MODE_CONNECTOR_9PinDIN
,
208 DRM_MODE_CONNECTOR_Unknown
,
209 DRM_MODE_CONNECTOR_HDMIA
,
210 DRM_MODE_CONNECTOR_HDMIB
,
211 DRM_MODE_CONNECTOR_LVDS
,
212 DRM_MODE_CONNECTOR_9PinDIN
,
213 DRM_MODE_CONNECTOR_Unknown
,
214 DRM_MODE_CONNECTOR_Unknown
,
215 DRM_MODE_CONNECTOR_Unknown
,
216 DRM_MODE_CONNECTOR_DisplayPort
219 bool radeon_get_atom_connector_info_from_object_table(struct drm_device
*dev
)
221 struct radeon_device
*rdev
= dev
->dev_private
;
222 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
223 struct atom_context
*ctx
= mode_info
->atom_context
;
224 int index
= GetIndexIntoMasterTable(DATA
, Object_Header
);
225 uint16_t size
, data_offset
;
226 uint8_t frev
, crev
, line_mux
= 0;
227 ATOM_CONNECTOR_OBJECT_TABLE
*con_obj
;
228 ATOM_DISPLAY_OBJECT_PATH_TABLE
*path_obj
;
229 ATOM_OBJECT_HEADER
*obj_header
;
230 int i
, j
, path_size
, device_support
;
232 uint16_t igp_lane_info
, conn_id
;
234 struct radeon_i2c_bus_rec ddc_bus
;
236 atom_parse_data_header(ctx
, index
, &size
, &frev
, &crev
, &data_offset
);
238 if (data_offset
== 0)
244 obj_header
= (ATOM_OBJECT_HEADER
*) (ctx
->bios
+ data_offset
);
245 path_obj
= (ATOM_DISPLAY_OBJECT_PATH_TABLE
*)
246 (ctx
->bios
+ data_offset
+
247 le16_to_cpu(obj_header
->usDisplayPathTableOffset
));
248 con_obj
= (ATOM_CONNECTOR_OBJECT_TABLE
*)
249 (ctx
->bios
+ data_offset
+
250 le16_to_cpu(obj_header
->usConnectorObjectTableOffset
));
251 device_support
= le16_to_cpu(obj_header
->usDeviceSupport
);
254 for (i
= 0; i
< path_obj
->ucNumOfDispPath
; i
++) {
255 uint8_t *addr
= (uint8_t *) path_obj
->asDispPath
;
256 ATOM_DISPLAY_OBJECT_PATH
*path
;
258 path
= (ATOM_DISPLAY_OBJECT_PATH
*) addr
;
259 path_size
+= le16_to_cpu(path
->usSize
);
262 if (device_support
& le16_to_cpu(path
->usDeviceTag
)) {
263 uint8_t con_obj_id
, con_obj_num
, con_obj_type
;
266 (le16_to_cpu(path
->usConnObjectId
) & OBJECT_ID_MASK
)
269 (le16_to_cpu(path
->usConnObjectId
) & ENUM_ID_MASK
)
272 (le16_to_cpu(path
->usConnObjectId
) &
273 OBJECT_TYPE_MASK
) >> OBJECT_TYPE_SHIFT
;
275 /* TODO CV support */
276 if (le16_to_cpu(path
->usDeviceTag
) ==
277 ATOM_DEVICE_CV_SUPPORT
)
280 if ((rdev
->family
== CHIP_RS780
) &&
282 CONNECTOR_OBJECT_ID_PCIE_CONNECTOR
)) {
283 uint16_t igp_offset
= 0;
284 ATOM_INTEGRATED_SYSTEM_INFO_V2
*igp_obj
;
287 GetIndexIntoMasterTable(DATA
,
288 IntegratedSystemInfo
);
290 atom_parse_data_header(ctx
, index
, &size
, &frev
,
295 (ATOM_INTEGRATED_SYSTEM_INFO_V2
296 *) (ctx
->bios
+ igp_offset
);
299 uint32_t slot_config
, ct
;
301 if (con_obj_num
== 1)
310 ct
= (slot_config
>> 16) & 0xff;
312 object_connector_convert
315 slot_config
& 0xffff;
323 object_connector_convert
[con_obj_id
];
326 if (connector_type
== DRM_MODE_CONNECTOR_Unknown
)
329 for (j
= 0; j
< ((le16_to_cpu(path
->usSize
) - 8) / 2);
331 uint8_t enc_obj_id
, enc_obj_num
, enc_obj_type
;
334 (le16_to_cpu(path
->usGraphicObjIds
[j
]) &
335 OBJECT_ID_MASK
) >> OBJECT_ID_SHIFT
;
337 (le16_to_cpu(path
->usGraphicObjIds
[j
]) &
338 ENUM_ID_MASK
) >> ENUM_ID_SHIFT
;
340 (le16_to_cpu(path
->usGraphicObjIds
[j
]) &
341 OBJECT_TYPE_MASK
) >> OBJECT_TYPE_SHIFT
;
343 /* FIXME: add support for router objects */
344 if (enc_obj_type
== GRAPH_OBJECT_TYPE_ENCODER
) {
345 if (enc_obj_num
== 2)
350 radeon_add_atom_encoder(dev
,
359 /* look up gpio for ddc */
360 if ((le16_to_cpu(path
->usDeviceTag
) &
361 (ATOM_DEVICE_TV_SUPPORT
| ATOM_DEVICE_CV_SUPPORT
))
363 for (j
= 0; j
< con_obj
->ucNumberOfObjects
; j
++) {
364 if (le16_to_cpu(path
->usConnObjectId
) ==
365 le16_to_cpu(con_obj
->asObjects
[j
].
367 ATOM_COMMON_RECORD_HEADER
369 (ATOM_COMMON_RECORD_HEADER
371 (ctx
->bios
+ data_offset
+
372 le16_to_cpu(con_obj
->
375 ATOM_I2C_RECORD
*i2c_record
;
377 while (record
->ucRecordType
> 0
380 ATOM_MAX_OBJECT_RECORD_NUMBER
) {
383 case ATOM_I2C_RECORD_TYPE
:
394 (ATOM_COMMON_RECORD_HEADER
406 if ((le16_to_cpu(path
->usDeviceTag
) ==
407 ATOM_DEVICE_TV1_SUPPORT
)
408 || (le16_to_cpu(path
->usDeviceTag
) ==
409 ATOM_DEVICE_TV2_SUPPORT
)
410 || (le16_to_cpu(path
->usDeviceTag
) ==
411 ATOM_DEVICE_CV_SUPPORT
))
412 ddc_bus
.valid
= false;
414 ddc_bus
= radeon_lookup_gpio(dev
, line_mux
);
416 conn_id
= le16_to_cpu(path
->usConnObjectId
);
418 if (!radeon_atom_apply_quirks
419 (dev
, le16_to_cpu(path
->usDeviceTag
), &connector_type
,
423 radeon_add_atom_connector(dev
,
427 connector_type
, &ddc_bus
,
428 linkb
, igp_lane_info
);
433 radeon_link_encoder_connector(dev
);
438 struct bios_connector
{
443 struct radeon_i2c_bus_rec ddc_bus
;
446 bool radeon_get_atom_connector_info_from_supported_devices_table(struct
450 struct radeon_device
*rdev
= dev
->dev_private
;
451 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
452 struct atom_context
*ctx
= mode_info
->atom_context
;
453 int index
= GetIndexIntoMasterTable(DATA
, SupportedDevicesInfo
);
454 uint16_t size
, data_offset
;
456 uint16_t device_support
;
458 union atom_supported_devices
*supported_devices
;
460 struct bios_connector bios_connectors
[ATOM_MAX_SUPPORTED_DEVICE
];
462 atom_parse_data_header(ctx
, index
, &size
, &frev
, &crev
, &data_offset
);
465 (union atom_supported_devices
*)(ctx
->bios
+ data_offset
);
467 device_support
= le16_to_cpu(supported_devices
->info
.usDeviceSupport
);
469 for (i
= 0; i
< ATOM_MAX_SUPPORTED_DEVICE
; i
++) {
470 ATOM_CONNECTOR_INFO_I2C ci
=
471 supported_devices
->info
.asConnInfo
[i
];
473 bios_connectors
[i
].valid
= false;
475 if (!(device_support
& (1 << i
))) {
479 if (i
== ATOM_DEVICE_CV_INDEX
) {
480 DRM_DEBUG("Skipping Component Video\n");
484 bios_connectors
[i
].connector_type
=
485 supported_devices_connector_convert
[ci
.sucConnectorInfo
.
489 if (bios_connectors
[i
].connector_type
==
490 DRM_MODE_CONNECTOR_Unknown
)
493 dac
= ci
.sucConnectorInfo
.sbfAccess
.bfAssociatedDAC
;
495 if ((rdev
->family
== CHIP_RS690
) ||
496 (rdev
->family
== CHIP_RS740
)) {
497 if ((i
== ATOM_DEVICE_DFP2_INDEX
)
498 && (ci
.sucI2cId
.sbfAccess
.bfI2C_LineMux
== 2))
499 bios_connectors
[i
].line_mux
=
500 ci
.sucI2cId
.sbfAccess
.bfI2C_LineMux
+ 1;
501 else if ((i
== ATOM_DEVICE_DFP3_INDEX
)
502 && (ci
.sucI2cId
.sbfAccess
.bfI2C_LineMux
== 1))
503 bios_connectors
[i
].line_mux
=
504 ci
.sucI2cId
.sbfAccess
.bfI2C_LineMux
+ 1;
506 bios_connectors
[i
].line_mux
=
507 ci
.sucI2cId
.sbfAccess
.bfI2C_LineMux
;
509 bios_connectors
[i
].line_mux
=
510 ci
.sucI2cId
.sbfAccess
.bfI2C_LineMux
;
512 /* give tv unique connector ids */
513 if (i
== ATOM_DEVICE_TV1_INDEX
) {
514 bios_connectors
[i
].ddc_bus
.valid
= false;
515 bios_connectors
[i
].line_mux
= 50;
516 } else if (i
== ATOM_DEVICE_TV2_INDEX
) {
517 bios_connectors
[i
].ddc_bus
.valid
= false;
518 bios_connectors
[i
].line_mux
= 51;
519 } else if (i
== ATOM_DEVICE_CV_INDEX
) {
520 bios_connectors
[i
].ddc_bus
.valid
= false;
521 bios_connectors
[i
].line_mux
= 52;
523 bios_connectors
[i
].ddc_bus
=
524 radeon_lookup_gpio(dev
,
525 bios_connectors
[i
].line_mux
);
527 /* Always set the connector type to VGA for CRT1/CRT2. if they are
528 * shared with a DVI port, we'll pick up the DVI connector when we
529 * merge the outputs. Some bioses incorrectly list VGA ports as DVI.
531 if (i
== ATOM_DEVICE_CRT1_INDEX
|| i
== ATOM_DEVICE_CRT2_INDEX
)
532 bios_connectors
[i
].connector_type
=
533 DRM_MODE_CONNECTOR_VGA
;
535 if (!radeon_atom_apply_quirks
536 (dev
, (1 << i
), &bios_connectors
[i
].connector_type
,
537 &bios_connectors
[i
].ddc_bus
, &bios_connectors
[i
].line_mux
))
540 bios_connectors
[i
].valid
= true;
541 bios_connectors
[i
].devices
= (1 << i
);
543 if (ASIC_IS_AVIVO(rdev
) || radeon_r4xx_atom
)
544 radeon_add_atom_encoder(dev
,
545 radeon_get_encoder_id(dev
,
550 radeon_add_legacy_encoder(dev
,
551 radeon_get_encoder_id(dev
,
558 /* combine shared connectors */
559 for (i
= 0; i
< ATOM_MAX_SUPPORTED_DEVICE
; i
++) {
560 if (bios_connectors
[i
].valid
) {
561 for (j
= 0; j
< ATOM_MAX_SUPPORTED_DEVICE
; j
++) {
562 if (bios_connectors
[j
].valid
&& (i
!= j
)) {
563 if (bios_connectors
[i
].line_mux
==
564 bios_connectors
[j
].line_mux
) {
565 if (((bios_connectors
[i
].
567 (ATOM_DEVICE_DFP_SUPPORT
))
568 && (bios_connectors
[j
].
570 (ATOM_DEVICE_CRT_SUPPORT
)))
572 ((bios_connectors
[j
].
574 (ATOM_DEVICE_DFP_SUPPORT
))
575 && (bios_connectors
[i
].
577 (ATOM_DEVICE_CRT_SUPPORT
)))) {
584 DRM_MODE_CONNECTOR_DVII
;
594 /* add the connectors */
595 for (i
= 0; i
< ATOM_MAX_SUPPORTED_DEVICE
; i
++) {
596 if (bios_connectors
[i
].valid
)
597 radeon_add_atom_connector(dev
,
598 bios_connectors
[i
].line_mux
,
599 bios_connectors
[i
].devices
,
602 &bios_connectors
[i
].ddc_bus
,
606 radeon_link_encoder_connector(dev
);
611 union firmware_info
{
612 ATOM_FIRMWARE_INFO info
;
613 ATOM_FIRMWARE_INFO_V1_2 info_12
;
614 ATOM_FIRMWARE_INFO_V1_3 info_13
;
615 ATOM_FIRMWARE_INFO_V1_4 info_14
;
618 bool radeon_atom_get_clock_info(struct drm_device
*dev
)
620 struct radeon_device
*rdev
= dev
->dev_private
;
621 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
622 int index
= GetIndexIntoMasterTable(DATA
, FirmwareInfo
);
623 union firmware_info
*firmware_info
;
625 struct radeon_pll
*p1pll
= &rdev
->clock
.p1pll
;
626 struct radeon_pll
*p2pll
= &rdev
->clock
.p2pll
;
627 struct radeon_pll
*spll
= &rdev
->clock
.spll
;
628 struct radeon_pll
*mpll
= &rdev
->clock
.mpll
;
629 uint16_t data_offset
;
631 atom_parse_data_header(mode_info
->atom_context
, index
, NULL
, &frev
,
632 &crev
, &data_offset
);
635 (union firmware_info
*)(mode_info
->atom_context
->bios
+
640 p1pll
->reference_freq
=
641 le16_to_cpu(firmware_info
->info
.usReferenceClock
);
642 p1pll
->reference_div
= 0;
645 le16_to_cpu(firmware_info
->info
.usMinPixelClockPLL_Output
);
647 le32_to_cpu(firmware_info
->info
.ulMaxPixelClockPLL_Output
);
649 if (p1pll
->pll_out_min
== 0) {
650 if (ASIC_IS_AVIVO(rdev
))
651 p1pll
->pll_out_min
= 64800;
653 p1pll
->pll_out_min
= 20000;
657 le16_to_cpu(firmware_info
->info
.usMinPixelClockPLL_Input
);
659 le16_to_cpu(firmware_info
->info
.usMaxPixelClockPLL_Input
);
664 spll
->reference_freq
=
665 le16_to_cpu(firmware_info
->info
.usReferenceClock
);
666 spll
->reference_div
= 0;
669 le16_to_cpu(firmware_info
->info
.usMinEngineClockPLL_Output
);
671 le32_to_cpu(firmware_info
->info
.ulMaxEngineClockPLL_Output
);
674 if (spll
->pll_out_min
== 0) {
675 if (ASIC_IS_AVIVO(rdev
))
676 spll
->pll_out_min
= 64800;
678 spll
->pll_out_min
= 20000;
682 le16_to_cpu(firmware_info
->info
.usMinEngineClockPLL_Input
);
684 le16_to_cpu(firmware_info
->info
.usMaxEngineClockPLL_Input
);
687 mpll
->reference_freq
=
688 le16_to_cpu(firmware_info
->info
.usReferenceClock
);
689 mpll
->reference_div
= 0;
692 le16_to_cpu(firmware_info
->info
.usMinMemoryClockPLL_Output
);
694 le32_to_cpu(firmware_info
->info
.ulMaxMemoryClockPLL_Output
);
697 if (mpll
->pll_out_min
== 0) {
698 if (ASIC_IS_AVIVO(rdev
))
699 mpll
->pll_out_min
= 64800;
701 mpll
->pll_out_min
= 20000;
705 le16_to_cpu(firmware_info
->info
.usMinMemoryClockPLL_Input
);
707 le16_to_cpu(firmware_info
->info
.usMaxMemoryClockPLL_Input
);
709 rdev
->clock
.default_sclk
=
710 le32_to_cpu(firmware_info
->info
.ulDefaultEngineClock
);
711 rdev
->clock
.default_mclk
=
712 le32_to_cpu(firmware_info
->info
.ulDefaultMemoryClock
);
719 bool radeon_atombios_get_tmds_info(struct radeon_encoder
*encoder
,
720 struct radeon_encoder_int_tmds
*tmds
)
722 struct drm_device
*dev
= encoder
->base
.dev
;
723 struct radeon_device
*rdev
= dev
->dev_private
;
724 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
725 int index
= GetIndexIntoMasterTable(DATA
, TMDS_Info
);
726 uint16_t data_offset
;
727 struct _ATOM_TMDS_INFO
*tmds_info
;
732 atom_parse_data_header(mode_info
->atom_context
, index
, NULL
, &frev
,
733 &crev
, &data_offset
);
736 (struct _ATOM_TMDS_INFO
*)(mode_info
->atom_context
->bios
+
740 maxfreq
= le16_to_cpu(tmds_info
->usMaxFrequency
);
741 for (i
= 0; i
< 4; i
++) {
742 tmds
->tmds_pll
[i
].freq
=
743 le16_to_cpu(tmds_info
->asMiscInfo
[i
].usFrequency
);
744 tmds
->tmds_pll
[i
].value
=
745 tmds_info
->asMiscInfo
[i
].ucPLL_ChargePump
& 0x3f;
746 tmds
->tmds_pll
[i
].value
|=
747 (tmds_info
->asMiscInfo
[i
].
748 ucPLL_VCO_Gain
& 0x3f) << 6;
749 tmds
->tmds_pll
[i
].value
|=
750 (tmds_info
->asMiscInfo
[i
].
751 ucPLL_DutyCycle
& 0xf) << 12;
752 tmds
->tmds_pll
[i
].value
|=
753 (tmds_info
->asMiscInfo
[i
].
754 ucPLL_VoltageSwing
& 0xf) << 16;
756 DRM_DEBUG("TMDS PLL From ATOMBIOS %u %x\n",
757 tmds
->tmds_pll
[i
].freq
,
758 tmds
->tmds_pll
[i
].value
);
760 if (maxfreq
== tmds
->tmds_pll
[i
].freq
) {
761 tmds
->tmds_pll
[i
].freq
= 0xffffffff;
771 struct _ATOM_LVDS_INFO info
;
772 struct _ATOM_LVDS_INFO_V12 info_12
;
775 struct radeon_encoder_atom_dig
*radeon_atombios_get_lvds_info(struct
779 struct drm_device
*dev
= encoder
->base
.dev
;
780 struct radeon_device
*rdev
= dev
->dev_private
;
781 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
782 int index
= GetIndexIntoMasterTable(DATA
, LVDS_Info
);
783 uint16_t data_offset
;
784 union lvds_info
*lvds_info
;
786 struct radeon_encoder_atom_dig
*lvds
= NULL
;
788 atom_parse_data_header(mode_info
->atom_context
, index
, NULL
, &frev
,
789 &crev
, &data_offset
);
792 (union lvds_info
*)(mode_info
->atom_context
->bios
+ data_offset
);
796 kzalloc(sizeof(struct radeon_encoder_atom_dig
), GFP_KERNEL
);
801 lvds
->native_mode
.clock
=
802 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usPixClk
) * 10;
803 lvds
->native_mode
.hdisplay
=
804 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usHActive
);
805 lvds
->native_mode
.vdisplay
=
806 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usVActive
);
807 lvds
->native_mode
.htotal
= lvds
->native_mode
.hdisplay
+
808 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usHBlanking_Time
);
809 lvds
->native_mode
.hsync_start
= lvds
->native_mode
.hdisplay
+
810 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usHSyncOffset
);
811 lvds
->native_mode
.hsync_end
= lvds
->native_mode
.hsync_start
+
812 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usHSyncWidth
);
813 lvds
->native_mode
.vtotal
= lvds
->native_mode
.vdisplay
+
814 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usVBlanking_Time
);
815 lvds
->native_mode
.vsync_start
= lvds
->native_mode
.vdisplay
+
816 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usVSyncWidth
);
817 lvds
->native_mode
.vsync_end
= lvds
->native_mode
.vsync_start
+
818 le16_to_cpu(lvds_info
->info
.sLCDTiming
.usVSyncWidth
);
819 lvds
->panel_pwr_delay
=
820 le16_to_cpu(lvds_info
->info
.usOffDelayInMs
);
821 lvds
->lvds_misc
= lvds_info
->info
.ucLVDS_Misc
;
822 /* set crtc values */
823 drm_mode_set_crtcinfo(&lvds
->native_mode
, CRTC_INTERLACE_HALVE_V
);
825 encoder
->native_mode
= lvds
->native_mode
;
830 struct radeon_encoder_primary_dac
*
831 radeon_atombios_get_primary_dac_info(struct radeon_encoder
*encoder
)
833 struct drm_device
*dev
= encoder
->base
.dev
;
834 struct radeon_device
*rdev
= dev
->dev_private
;
835 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
836 int index
= GetIndexIntoMasterTable(DATA
, CompassionateData
);
837 uint16_t data_offset
;
838 struct _COMPASSIONATE_DATA
*dac_info
;
841 struct radeon_encoder_primary_dac
*p_dac
= NULL
;
843 atom_parse_data_header(mode_info
->atom_context
, index
, NULL
, &frev
, &crev
, &data_offset
);
845 dac_info
= (struct _COMPASSIONATE_DATA
*)(mode_info
->atom_context
->bios
+ data_offset
);
848 p_dac
= kzalloc(sizeof(struct radeon_encoder_primary_dac
), GFP_KERNEL
);
853 bg
= dac_info
->ucDAC1_BG_Adjustment
;
854 dac
= dac_info
->ucDAC1_DAC_Adjustment
;
855 p_dac
->ps2_pdac_adj
= (bg
<< 8) | (dac
);
861 bool radeon_atom_get_tv_timings(struct radeon_device
*rdev
, int index
,
862 struct drm_display_mode
*mode
)
864 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
865 ATOM_ANALOG_TV_INFO
*tv_info
;
866 ATOM_ANALOG_TV_INFO_V1_2
*tv_info_v1_2
;
867 ATOM_DTD_FORMAT
*dtd_timings
;
868 int data_index
= GetIndexIntoMasterTable(DATA
, AnalogTV_Info
);
870 u16 data_offset
, misc
;
872 atom_parse_data_header(mode_info
->atom_context
, data_index
, NULL
, &frev
, &crev
, &data_offset
);
876 tv_info
= (ATOM_ANALOG_TV_INFO
*)(mode_info
->atom_context
->bios
+ data_offset
);
877 if (index
> MAX_SUPPORTED_TV_TIMING
)
880 mode
->crtc_htotal
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_H_Total
);
881 mode
->crtc_hdisplay
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_H_Disp
);
882 mode
->crtc_hsync_start
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_H_SyncStart
);
883 mode
->crtc_hsync_end
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_H_SyncStart
) +
884 le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_H_SyncWidth
);
886 mode
->crtc_vtotal
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_V_Total
);
887 mode
->crtc_vdisplay
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_V_Disp
);
888 mode
->crtc_vsync_start
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_V_SyncStart
);
889 mode
->crtc_vsync_end
= le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_V_SyncStart
) +
890 le16_to_cpu(tv_info
->aModeTimings
[index
].usCRTC_V_SyncWidth
);
893 misc
= le16_to_cpu(tv_info
->aModeTimings
[index
].susModeMiscInfo
.usAccess
);
894 if (misc
& ATOM_VSYNC_POLARITY
)
895 mode
->flags
|= DRM_MODE_FLAG_NVSYNC
;
896 if (misc
& ATOM_HSYNC_POLARITY
)
897 mode
->flags
|= DRM_MODE_FLAG_NHSYNC
;
898 if (misc
& ATOM_COMPOSITESYNC
)
899 mode
->flags
|= DRM_MODE_FLAG_CSYNC
;
900 if (misc
& ATOM_INTERLACE
)
901 mode
->flags
|= DRM_MODE_FLAG_INTERLACE
;
902 if (misc
& ATOM_DOUBLE_CLOCK_MODE
)
903 mode
->flags
|= DRM_MODE_FLAG_DBLSCAN
;
905 mode
->clock
= le16_to_cpu(tv_info
->aModeTimings
[index
].usPixelClock
) * 10;
908 /* PAL timings appear to have wrong values for totals */
909 mode
->crtc_htotal
-= 1;
910 mode
->crtc_vtotal
-= 1;
914 tv_info_v1_2
= (ATOM_ANALOG_TV_INFO_V1_2
*)(mode_info
->atom_context
->bios
+ data_offset
);
915 if (index
> MAX_SUPPORTED_TV_TIMING_V1_2
)
918 dtd_timings
= &tv_info_v1_2
->aModeTimings
[index
];
919 mode
->crtc_htotal
= le16_to_cpu(dtd_timings
->usHActive
) +
920 le16_to_cpu(dtd_timings
->usHBlanking_Time
);
921 mode
->crtc_hdisplay
= le16_to_cpu(dtd_timings
->usHActive
);
922 mode
->crtc_hsync_start
= le16_to_cpu(dtd_timings
->usHActive
) +
923 le16_to_cpu(dtd_timings
->usHSyncOffset
);
924 mode
->crtc_hsync_end
= mode
->crtc_hsync_start
+
925 le16_to_cpu(dtd_timings
->usHSyncWidth
);
927 mode
->crtc_vtotal
= le16_to_cpu(dtd_timings
->usVActive
) +
928 le16_to_cpu(dtd_timings
->usVBlanking_Time
);
929 mode
->crtc_vdisplay
= le16_to_cpu(dtd_timings
->usVActive
);
930 mode
->crtc_vsync_start
= le16_to_cpu(dtd_timings
->usVActive
) +
931 le16_to_cpu(dtd_timings
->usVSyncOffset
);
932 mode
->crtc_vsync_end
= mode
->crtc_vsync_start
+
933 le16_to_cpu(dtd_timings
->usVSyncWidth
);
936 misc
= le16_to_cpu(dtd_timings
->susModeMiscInfo
.usAccess
);
937 if (misc
& ATOM_VSYNC_POLARITY
)
938 mode
->flags
|= DRM_MODE_FLAG_NVSYNC
;
939 if (misc
& ATOM_HSYNC_POLARITY
)
940 mode
->flags
|= DRM_MODE_FLAG_NHSYNC
;
941 if (misc
& ATOM_COMPOSITESYNC
)
942 mode
->flags
|= DRM_MODE_FLAG_CSYNC
;
943 if (misc
& ATOM_INTERLACE
)
944 mode
->flags
|= DRM_MODE_FLAG_INTERLACE
;
945 if (misc
& ATOM_DOUBLE_CLOCK_MODE
)
946 mode
->flags
|= DRM_MODE_FLAG_DBLSCAN
;
948 mode
->clock
= le16_to_cpu(dtd_timings
->usPixClk
) * 10;
954 struct radeon_encoder_tv_dac
*
955 radeon_atombios_get_tv_dac_info(struct radeon_encoder
*encoder
)
957 struct drm_device
*dev
= encoder
->base
.dev
;
958 struct radeon_device
*rdev
= dev
->dev_private
;
959 struct radeon_mode_info
*mode_info
= &rdev
->mode_info
;
960 int index
= GetIndexIntoMasterTable(DATA
, CompassionateData
);
961 uint16_t data_offset
;
962 struct _COMPASSIONATE_DATA
*dac_info
;
965 struct radeon_encoder_tv_dac
*tv_dac
= NULL
;
967 atom_parse_data_header(mode_info
->atom_context
, index
, NULL
, &frev
, &crev
, &data_offset
);
969 dac_info
= (struct _COMPASSIONATE_DATA
*)(mode_info
->atom_context
->bios
+ data_offset
);
972 tv_dac
= kzalloc(sizeof(struct radeon_encoder_tv_dac
), GFP_KERNEL
);
977 bg
= dac_info
->ucDAC2_CRT2_BG_Adjustment
;
978 dac
= dac_info
->ucDAC2_CRT2_DAC_Adjustment
;
979 tv_dac
->ps2_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
981 bg
= dac_info
->ucDAC2_PAL_BG_Adjustment
;
982 dac
= dac_info
->ucDAC2_PAL_DAC_Adjustment
;
983 tv_dac
->pal_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
985 bg
= dac_info
->ucDAC2_NTSC_BG_Adjustment
;
986 dac
= dac_info
->ucDAC2_NTSC_DAC_Adjustment
;
987 tv_dac
->ntsc_tvdac_adj
= (bg
<< 16) | (dac
<< 20);
993 void radeon_atom_set_clock_gating(struct radeon_device
*rdev
, int enable
)
995 DYNAMIC_CLOCK_GATING_PS_ALLOCATION args
;
996 int index
= GetIndexIntoMasterTable(COMMAND
, DynamicClockGating
);
998 args
.ucEnable
= enable
;
1000 atom_execute_table(rdev
->mode_info
.atom_context
, index
, (uint32_t *)&args
);
1003 void radeon_atom_static_pwrmgt_setup(struct radeon_device
*rdev
, int enable
)
1005 ENABLE_ASIC_STATIC_PWR_MGT_PS_ALLOCATION args
;
1006 int index
= GetIndexIntoMasterTable(COMMAND
, EnableASIC_StaticPwrMgt
);
1008 args
.ucEnable
= enable
;
1010 atom_execute_table(rdev
->mode_info
.atom_context
, index
, (uint32_t *)&args
);
1013 void radeon_atom_set_engine_clock(struct radeon_device
*rdev
,
1016 SET_ENGINE_CLOCK_PS_ALLOCATION args
;
1017 int index
= GetIndexIntoMasterTable(COMMAND
, SetEngineClock
);
1019 args
.ulTargetEngineClock
= eng_clock
; /* 10 khz */
1021 atom_execute_table(rdev
->mode_info
.atom_context
, index
, (uint32_t *)&args
);
1024 void radeon_atom_set_memory_clock(struct radeon_device
*rdev
,
1027 SET_MEMORY_CLOCK_PS_ALLOCATION args
;
1028 int index
= GetIndexIntoMasterTable(COMMAND
, SetMemoryClock
);
1030 if (rdev
->flags
& RADEON_IS_IGP
)
1033 args
.ulTargetMemoryClock
= mem_clock
; /* 10 khz */
1035 atom_execute_table(rdev
->mode_info
.atom_context
, index
, (uint32_t *)&args
);
1038 void radeon_atom_initialize_bios_scratch_regs(struct drm_device
*dev
)
1040 struct radeon_device
*rdev
= dev
->dev_private
;
1041 uint32_t bios_2_scratch
, bios_6_scratch
;
1043 if (rdev
->family
>= CHIP_R600
) {
1044 bios_2_scratch
= RREG32(R600_BIOS_2_SCRATCH
);
1045 bios_6_scratch
= RREG32(R600_BIOS_6_SCRATCH
);
1047 bios_2_scratch
= RREG32(RADEON_BIOS_2_SCRATCH
);
1048 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
1051 /* let the bios control the backlight */
1052 bios_2_scratch
&= ~ATOM_S2_VRI_BRIGHT_ENABLE
;
1054 /* tell the bios not to handle mode switching */
1055 bios_6_scratch
|= (ATOM_S6_ACC_BLOCK_DISPLAY_SWITCH
| ATOM_S6_ACC_MODE
);
1057 if (rdev
->family
>= CHIP_R600
) {
1058 WREG32(R600_BIOS_2_SCRATCH
, bios_2_scratch
);
1059 WREG32(R600_BIOS_6_SCRATCH
, bios_6_scratch
);
1061 WREG32(RADEON_BIOS_2_SCRATCH
, bios_2_scratch
);
1062 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
1067 void radeon_save_bios_scratch_regs(struct radeon_device
*rdev
)
1069 uint32_t scratch_reg
;
1072 if (rdev
->family
>= CHIP_R600
)
1073 scratch_reg
= R600_BIOS_0_SCRATCH
;
1075 scratch_reg
= RADEON_BIOS_0_SCRATCH
;
1077 for (i
= 0; i
< RADEON_BIOS_NUM_SCRATCH
; i
++)
1078 rdev
->bios_scratch
[i
] = RREG32(scratch_reg
+ (i
* 4));
1081 void radeon_restore_bios_scratch_regs(struct radeon_device
*rdev
)
1083 uint32_t scratch_reg
;
1086 if (rdev
->family
>= CHIP_R600
)
1087 scratch_reg
= R600_BIOS_0_SCRATCH
;
1089 scratch_reg
= RADEON_BIOS_0_SCRATCH
;
1091 for (i
= 0; i
< RADEON_BIOS_NUM_SCRATCH
; i
++)
1092 WREG32(scratch_reg
+ (i
* 4), rdev
->bios_scratch
[i
]);
1095 void radeon_atom_output_lock(struct drm_encoder
*encoder
, bool lock
)
1097 struct drm_device
*dev
= encoder
->dev
;
1098 struct radeon_device
*rdev
= dev
->dev_private
;
1099 uint32_t bios_6_scratch
;
1101 if (rdev
->family
>= CHIP_R600
)
1102 bios_6_scratch
= RREG32(R600_BIOS_6_SCRATCH
);
1104 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
1107 bios_6_scratch
|= ATOM_S6_CRITICAL_STATE
;
1109 bios_6_scratch
&= ~ATOM_S6_CRITICAL_STATE
;
1111 if (rdev
->family
>= CHIP_R600
)
1112 WREG32(R600_BIOS_6_SCRATCH
, bios_6_scratch
);
1114 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
1117 /* at some point we may want to break this out into individual functions */
1119 radeon_atombios_connected_scratch_regs(struct drm_connector
*connector
,
1120 struct drm_encoder
*encoder
,
1123 struct drm_device
*dev
= connector
->dev
;
1124 struct radeon_device
*rdev
= dev
->dev_private
;
1125 struct radeon_connector
*radeon_connector
=
1126 to_radeon_connector(connector
);
1127 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
1128 uint32_t bios_0_scratch
, bios_3_scratch
, bios_6_scratch
;
1130 if (rdev
->family
>= CHIP_R600
) {
1131 bios_0_scratch
= RREG32(R600_BIOS_0_SCRATCH
);
1132 bios_3_scratch
= RREG32(R600_BIOS_3_SCRATCH
);
1133 bios_6_scratch
= RREG32(R600_BIOS_6_SCRATCH
);
1135 bios_0_scratch
= RREG32(RADEON_BIOS_0_SCRATCH
);
1136 bios_3_scratch
= RREG32(RADEON_BIOS_3_SCRATCH
);
1137 bios_6_scratch
= RREG32(RADEON_BIOS_6_SCRATCH
);
1140 if ((radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) &&
1141 (radeon_connector
->devices
& ATOM_DEVICE_TV1_SUPPORT
)) {
1143 DRM_DEBUG("TV1 connected\n");
1144 bios_3_scratch
|= ATOM_S3_TV1_ACTIVE
;
1145 bios_6_scratch
|= ATOM_S6_ACC_REQ_TV1
;
1147 DRM_DEBUG("TV1 disconnected\n");
1148 bios_0_scratch
&= ~ATOM_S0_TV1_MASK
;
1149 bios_3_scratch
&= ~ATOM_S3_TV1_ACTIVE
;
1150 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_TV1
;
1153 if ((radeon_encoder
->devices
& ATOM_DEVICE_CV_SUPPORT
) &&
1154 (radeon_connector
->devices
& ATOM_DEVICE_CV_SUPPORT
)) {
1156 DRM_DEBUG("CV connected\n");
1157 bios_3_scratch
|= ATOM_S3_CV_ACTIVE
;
1158 bios_6_scratch
|= ATOM_S6_ACC_REQ_CV
;
1160 DRM_DEBUG("CV disconnected\n");
1161 bios_0_scratch
&= ~ATOM_S0_CV_MASK
;
1162 bios_3_scratch
&= ~ATOM_S3_CV_ACTIVE
;
1163 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_CV
;
1166 if ((radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) &&
1167 (radeon_connector
->devices
& ATOM_DEVICE_LCD1_SUPPORT
)) {
1169 DRM_DEBUG("LCD1 connected\n");
1170 bios_0_scratch
|= ATOM_S0_LCD1
;
1171 bios_3_scratch
|= ATOM_S3_LCD1_ACTIVE
;
1172 bios_6_scratch
|= ATOM_S6_ACC_REQ_LCD1
;
1174 DRM_DEBUG("LCD1 disconnected\n");
1175 bios_0_scratch
&= ~ATOM_S0_LCD1
;
1176 bios_3_scratch
&= ~ATOM_S3_LCD1_ACTIVE
;
1177 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_LCD1
;
1180 if ((radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) &&
1181 (radeon_connector
->devices
& ATOM_DEVICE_CRT1_SUPPORT
)) {
1183 DRM_DEBUG("CRT1 connected\n");
1184 bios_0_scratch
|= ATOM_S0_CRT1_COLOR
;
1185 bios_3_scratch
|= ATOM_S3_CRT1_ACTIVE
;
1186 bios_6_scratch
|= ATOM_S6_ACC_REQ_CRT1
;
1188 DRM_DEBUG("CRT1 disconnected\n");
1189 bios_0_scratch
&= ~ATOM_S0_CRT1_MASK
;
1190 bios_3_scratch
&= ~ATOM_S3_CRT1_ACTIVE
;
1191 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_CRT1
;
1194 if ((radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) &&
1195 (radeon_connector
->devices
& ATOM_DEVICE_CRT2_SUPPORT
)) {
1197 DRM_DEBUG("CRT2 connected\n");
1198 bios_0_scratch
|= ATOM_S0_CRT2_COLOR
;
1199 bios_3_scratch
|= ATOM_S3_CRT2_ACTIVE
;
1200 bios_6_scratch
|= ATOM_S6_ACC_REQ_CRT2
;
1202 DRM_DEBUG("CRT2 disconnected\n");
1203 bios_0_scratch
&= ~ATOM_S0_CRT2_MASK
;
1204 bios_3_scratch
&= ~ATOM_S3_CRT2_ACTIVE
;
1205 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_CRT2
;
1208 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) &&
1209 (radeon_connector
->devices
& ATOM_DEVICE_DFP1_SUPPORT
)) {
1211 DRM_DEBUG("DFP1 connected\n");
1212 bios_0_scratch
|= ATOM_S0_DFP1
;
1213 bios_3_scratch
|= ATOM_S3_DFP1_ACTIVE
;
1214 bios_6_scratch
|= ATOM_S6_ACC_REQ_DFP1
;
1216 DRM_DEBUG("DFP1 disconnected\n");
1217 bios_0_scratch
&= ~ATOM_S0_DFP1
;
1218 bios_3_scratch
&= ~ATOM_S3_DFP1_ACTIVE
;
1219 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_DFP1
;
1222 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) &&
1223 (radeon_connector
->devices
& ATOM_DEVICE_DFP2_SUPPORT
)) {
1225 DRM_DEBUG("DFP2 connected\n");
1226 bios_0_scratch
|= ATOM_S0_DFP2
;
1227 bios_3_scratch
|= ATOM_S3_DFP2_ACTIVE
;
1228 bios_6_scratch
|= ATOM_S6_ACC_REQ_DFP2
;
1230 DRM_DEBUG("DFP2 disconnected\n");
1231 bios_0_scratch
&= ~ATOM_S0_DFP2
;
1232 bios_3_scratch
&= ~ATOM_S3_DFP2_ACTIVE
;
1233 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_DFP2
;
1236 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP3_SUPPORT
) &&
1237 (radeon_connector
->devices
& ATOM_DEVICE_DFP3_SUPPORT
)) {
1239 DRM_DEBUG("DFP3 connected\n");
1240 bios_0_scratch
|= ATOM_S0_DFP3
;
1241 bios_3_scratch
|= ATOM_S3_DFP3_ACTIVE
;
1242 bios_6_scratch
|= ATOM_S6_ACC_REQ_DFP3
;
1244 DRM_DEBUG("DFP3 disconnected\n");
1245 bios_0_scratch
&= ~ATOM_S0_DFP3
;
1246 bios_3_scratch
&= ~ATOM_S3_DFP3_ACTIVE
;
1247 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_DFP3
;
1250 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP4_SUPPORT
) &&
1251 (radeon_connector
->devices
& ATOM_DEVICE_DFP4_SUPPORT
)) {
1253 DRM_DEBUG("DFP4 connected\n");
1254 bios_0_scratch
|= ATOM_S0_DFP4
;
1255 bios_3_scratch
|= ATOM_S3_DFP4_ACTIVE
;
1256 bios_6_scratch
|= ATOM_S6_ACC_REQ_DFP4
;
1258 DRM_DEBUG("DFP4 disconnected\n");
1259 bios_0_scratch
&= ~ATOM_S0_DFP4
;
1260 bios_3_scratch
&= ~ATOM_S3_DFP4_ACTIVE
;
1261 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_DFP4
;
1264 if ((radeon_encoder
->devices
& ATOM_DEVICE_DFP5_SUPPORT
) &&
1265 (radeon_connector
->devices
& ATOM_DEVICE_DFP5_SUPPORT
)) {
1267 DRM_DEBUG("DFP5 connected\n");
1268 bios_0_scratch
|= ATOM_S0_DFP5
;
1269 bios_3_scratch
|= ATOM_S3_DFP5_ACTIVE
;
1270 bios_6_scratch
|= ATOM_S6_ACC_REQ_DFP5
;
1272 DRM_DEBUG("DFP5 disconnected\n");
1273 bios_0_scratch
&= ~ATOM_S0_DFP5
;
1274 bios_3_scratch
&= ~ATOM_S3_DFP5_ACTIVE
;
1275 bios_6_scratch
&= ~ATOM_S6_ACC_REQ_DFP5
;
1279 if (rdev
->family
>= CHIP_R600
) {
1280 WREG32(R600_BIOS_0_SCRATCH
, bios_0_scratch
);
1281 WREG32(R600_BIOS_3_SCRATCH
, bios_3_scratch
);
1282 WREG32(R600_BIOS_6_SCRATCH
, bios_6_scratch
);
1284 WREG32(RADEON_BIOS_0_SCRATCH
, bios_0_scratch
);
1285 WREG32(RADEON_BIOS_3_SCRATCH
, bios_3_scratch
);
1286 WREG32(RADEON_BIOS_6_SCRATCH
, bios_6_scratch
);
1291 radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder
*encoder
, int crtc
)
1293 struct drm_device
*dev
= encoder
->dev
;
1294 struct radeon_device
*rdev
= dev
->dev_private
;
1295 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
1296 uint32_t bios_3_scratch
;
1298 if (rdev
->family
>= CHIP_R600
)
1299 bios_3_scratch
= RREG32(R600_BIOS_3_SCRATCH
);
1301 bios_3_scratch
= RREG32(RADEON_BIOS_3_SCRATCH
);
1303 if (radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) {
1304 bios_3_scratch
&= ~ATOM_S3_TV1_CRTC_ACTIVE
;
1305 bios_3_scratch
|= (crtc
<< 18);
1307 if (radeon_encoder
->devices
& ATOM_DEVICE_CV_SUPPORT
) {
1308 bios_3_scratch
&= ~ATOM_S3_CV_CRTC_ACTIVE
;
1309 bios_3_scratch
|= (crtc
<< 24);
1311 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) {
1312 bios_3_scratch
&= ~ATOM_S3_CRT1_CRTC_ACTIVE
;
1313 bios_3_scratch
|= (crtc
<< 16);
1315 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) {
1316 bios_3_scratch
&= ~ATOM_S3_CRT2_CRTC_ACTIVE
;
1317 bios_3_scratch
|= (crtc
<< 20);
1319 if (radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) {
1320 bios_3_scratch
&= ~ATOM_S3_LCD1_CRTC_ACTIVE
;
1321 bios_3_scratch
|= (crtc
<< 17);
1323 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) {
1324 bios_3_scratch
&= ~ATOM_S3_DFP1_CRTC_ACTIVE
;
1325 bios_3_scratch
|= (crtc
<< 19);
1327 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) {
1328 bios_3_scratch
&= ~ATOM_S3_DFP2_CRTC_ACTIVE
;
1329 bios_3_scratch
|= (crtc
<< 23);
1331 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP3_SUPPORT
) {
1332 bios_3_scratch
&= ~ATOM_S3_DFP3_CRTC_ACTIVE
;
1333 bios_3_scratch
|= (crtc
<< 25);
1336 if (rdev
->family
>= CHIP_R600
)
1337 WREG32(R600_BIOS_3_SCRATCH
, bios_3_scratch
);
1339 WREG32(RADEON_BIOS_3_SCRATCH
, bios_3_scratch
);
1343 radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder
*encoder
, bool on
)
1345 struct drm_device
*dev
= encoder
->dev
;
1346 struct radeon_device
*rdev
= dev
->dev_private
;
1347 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
1348 uint32_t bios_2_scratch
;
1350 if (rdev
->family
>= CHIP_R600
)
1351 bios_2_scratch
= RREG32(R600_BIOS_2_SCRATCH
);
1353 bios_2_scratch
= RREG32(RADEON_BIOS_2_SCRATCH
);
1355 if (radeon_encoder
->devices
& ATOM_DEVICE_TV1_SUPPORT
) {
1357 bios_2_scratch
&= ~ATOM_S2_TV1_DPMS_STATE
;
1359 bios_2_scratch
|= ATOM_S2_TV1_DPMS_STATE
;
1361 if (radeon_encoder
->devices
& ATOM_DEVICE_CV_SUPPORT
) {
1363 bios_2_scratch
&= ~ATOM_S2_CV_DPMS_STATE
;
1365 bios_2_scratch
|= ATOM_S2_CV_DPMS_STATE
;
1367 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT1_SUPPORT
) {
1369 bios_2_scratch
&= ~ATOM_S2_CRT1_DPMS_STATE
;
1371 bios_2_scratch
|= ATOM_S2_CRT1_DPMS_STATE
;
1373 if (radeon_encoder
->devices
& ATOM_DEVICE_CRT2_SUPPORT
) {
1375 bios_2_scratch
&= ~ATOM_S2_CRT2_DPMS_STATE
;
1377 bios_2_scratch
|= ATOM_S2_CRT2_DPMS_STATE
;
1379 if (radeon_encoder
->devices
& ATOM_DEVICE_LCD1_SUPPORT
) {
1381 bios_2_scratch
&= ~ATOM_S2_LCD1_DPMS_STATE
;
1383 bios_2_scratch
|= ATOM_S2_LCD1_DPMS_STATE
;
1385 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP1_SUPPORT
) {
1387 bios_2_scratch
&= ~ATOM_S2_DFP1_DPMS_STATE
;
1389 bios_2_scratch
|= ATOM_S2_DFP1_DPMS_STATE
;
1391 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP2_SUPPORT
) {
1393 bios_2_scratch
&= ~ATOM_S2_DFP2_DPMS_STATE
;
1395 bios_2_scratch
|= ATOM_S2_DFP2_DPMS_STATE
;
1397 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP3_SUPPORT
) {
1399 bios_2_scratch
&= ~ATOM_S2_DFP3_DPMS_STATE
;
1401 bios_2_scratch
|= ATOM_S2_DFP3_DPMS_STATE
;
1403 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP4_SUPPORT
) {
1405 bios_2_scratch
&= ~ATOM_S2_DFP4_DPMS_STATE
;
1407 bios_2_scratch
|= ATOM_S2_DFP4_DPMS_STATE
;
1409 if (radeon_encoder
->devices
& ATOM_DEVICE_DFP5_SUPPORT
) {
1411 bios_2_scratch
&= ~ATOM_S2_DFP5_DPMS_STATE
;
1413 bios_2_scratch
|= ATOM_S2_DFP5_DPMS_STATE
;
1416 if (rdev
->family
>= CHIP_R600
)
1417 WREG32(R600_BIOS_2_SCRATCH
, bios_2_scratch
);
1419 WREG32(RADEON_BIOS_2_SCRATCH
, bios_2_scratch
);