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 <drm/radeon_drm.h>
31 #include "atom-bits.h"
34 radeon_add_atom_encoder(struct drm_device *dev, uint32_t encoder_enum,
35 uint32_t supported_device, u16 caps);
37 /* from radeon_legacy_encoder.c */
39 radeon_add_legacy_encoder(struct drm_device *dev, uint32_t encoder_enum,
40 uint32_t supported_device);
42 union atom_supported_devices {
43 struct _ATOM_SUPPORTED_DEVICES_INFO info;
44 struct _ATOM_SUPPORTED_DEVICES_INFO_2 info_2;
45 struct _ATOM_SUPPORTED_DEVICES_INFO_2d1 info_2d1;
48 static void radeon_lookup_i2c_gpio_quirks(struct radeon_device *rdev,
49 ATOM_GPIO_I2C_ASSIGMENT *gpio,
52 /* r4xx mask is technically not used by the hw, so patch in the legacy mask bits */
53 if ((rdev->family == CHIP_R420) ||
54 (rdev->family == CHIP_R423) ||
55 (rdev->family == CHIP_RV410)) {
56 if ((le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x0018) ||
57 (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x0019) ||
58 (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x001a)) {
59 gpio->ucClkMaskShift = 0x19;
60 gpio->ucDataMaskShift = 0x18;
64 /* some evergreen boards have bad data for this entry */
65 if (ASIC_IS_DCE4(rdev)) {
67 (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x1936) &&
68 (gpio->sucI2cId.ucAccess == 0)) {
69 gpio->sucI2cId.ucAccess = 0x97;
70 gpio->ucDataMaskShift = 8;
71 gpio->ucDataEnShift = 8;
72 gpio->ucDataY_Shift = 8;
73 gpio->ucDataA_Shift = 8;
77 /* some DCE3 boards have bad data for this entry */
78 if (ASIC_IS_DCE3(rdev)) {
80 (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x1fda) &&
81 (gpio->sucI2cId.ucAccess == 0x94))
82 gpio->sucI2cId.ucAccess = 0x14;
86 static struct radeon_i2c_bus_rec radeon_get_bus_rec_for_i2c_gpio(ATOM_GPIO_I2C_ASSIGMENT *gpio)
88 struct radeon_i2c_bus_rec i2c;
90 memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec));
92 i2c.mask_clk_reg = le16_to_cpu(gpio->usClkMaskRegisterIndex) * 4;
93 i2c.mask_data_reg = le16_to_cpu(gpio->usDataMaskRegisterIndex) * 4;
94 i2c.en_clk_reg = le16_to_cpu(gpio->usClkEnRegisterIndex) * 4;
95 i2c.en_data_reg = le16_to_cpu(gpio->usDataEnRegisterIndex) * 4;
96 i2c.y_clk_reg = le16_to_cpu(gpio->usClkY_RegisterIndex) * 4;
97 i2c.y_data_reg = le16_to_cpu(gpio->usDataY_RegisterIndex) * 4;
98 i2c.a_clk_reg = le16_to_cpu(gpio->usClkA_RegisterIndex) * 4;
99 i2c.a_data_reg = le16_to_cpu(gpio->usDataA_RegisterIndex) * 4;
100 i2c.mask_clk_mask = (1 << gpio->ucClkMaskShift);
101 i2c.mask_data_mask = (1 << gpio->ucDataMaskShift);
102 i2c.en_clk_mask = (1 << gpio->ucClkEnShift);
103 i2c.en_data_mask = (1 << gpio->ucDataEnShift);
104 i2c.y_clk_mask = (1 << gpio->ucClkY_Shift);
105 i2c.y_data_mask = (1 << gpio->ucDataY_Shift);
106 i2c.a_clk_mask = (1 << gpio->ucClkA_Shift);
107 i2c.a_data_mask = (1 << gpio->ucDataA_Shift);
109 if (gpio->sucI2cId.sbfAccess.bfHW_Capable)
110 i2c.hw_capable = true;
112 i2c.hw_capable = false;
114 if (gpio->sucI2cId.ucAccess == 0xa0)
119 i2c.i2c_id = gpio->sucI2cId.ucAccess;
121 if (i2c.mask_clk_reg)
129 static struct radeon_i2c_bus_rec radeon_lookup_i2c_gpio(struct radeon_device *rdev,
132 struct atom_context *ctx = rdev->mode_info.atom_context;
133 ATOM_GPIO_I2C_ASSIGMENT *gpio;
134 struct radeon_i2c_bus_rec i2c;
135 int index = GetIndexIntoMasterTable(DATA, GPIO_I2C_Info);
136 struct _ATOM_GPIO_I2C_INFO *i2c_info;
137 uint16_t data_offset, size;
140 memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec));
143 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
144 i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
146 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
147 sizeof(ATOM_GPIO_I2C_ASSIGMENT);
149 gpio = &i2c_info->asGPIO_Info[0];
150 for (i = 0; i < num_indices; i++) {
152 radeon_lookup_i2c_gpio_quirks(rdev, gpio, i);
154 if (gpio->sucI2cId.ucAccess == id) {
155 i2c = radeon_get_bus_rec_for_i2c_gpio(gpio);
158 gpio = (ATOM_GPIO_I2C_ASSIGMENT *)
159 ((u8 *)gpio + sizeof(ATOM_GPIO_I2C_ASSIGMENT));
166 void radeon_atombios_i2c_init(struct radeon_device *rdev)
168 struct atom_context *ctx = rdev->mode_info.atom_context;
169 ATOM_GPIO_I2C_ASSIGMENT *gpio;
170 struct radeon_i2c_bus_rec i2c;
171 int index = GetIndexIntoMasterTable(DATA, GPIO_I2C_Info);
172 struct _ATOM_GPIO_I2C_INFO *i2c_info;
173 uint16_t data_offset, size;
177 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
178 i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
180 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
181 sizeof(ATOM_GPIO_I2C_ASSIGMENT);
183 gpio = &i2c_info->asGPIO_Info[0];
184 for (i = 0; i < num_indices; i++) {
185 radeon_lookup_i2c_gpio_quirks(rdev, gpio, i);
187 i2c = radeon_get_bus_rec_for_i2c_gpio(gpio);
190 sprintf(stmp, "0x%x", i2c.i2c_id);
191 rdev->i2c_bus[i] = radeon_i2c_create(rdev->ddev, &i2c, stmp);
193 gpio = (ATOM_GPIO_I2C_ASSIGMENT *)
194 ((u8 *)gpio + sizeof(ATOM_GPIO_I2C_ASSIGMENT));
199 struct radeon_gpio_rec radeon_atombios_lookup_gpio(struct radeon_device *rdev,
202 struct atom_context *ctx = rdev->mode_info.atom_context;
203 struct radeon_gpio_rec gpio;
204 int index = GetIndexIntoMasterTable(DATA, GPIO_Pin_LUT);
205 struct _ATOM_GPIO_PIN_LUT *gpio_info;
206 ATOM_GPIO_PIN_ASSIGNMENT *pin;
207 u16 data_offset, size;
210 memset(&gpio, 0, sizeof(struct radeon_gpio_rec));
213 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
214 gpio_info = (struct _ATOM_GPIO_PIN_LUT *)(ctx->bios + data_offset);
216 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
217 sizeof(ATOM_GPIO_PIN_ASSIGNMENT);
219 pin = gpio_info->asGPIO_Pin;
220 for (i = 0; i < num_indices; i++) {
221 if (id == pin->ucGPIO_ID) {
222 gpio.id = pin->ucGPIO_ID;
223 gpio.reg = le16_to_cpu(pin->usGpioPin_AIndex) * 4;
224 gpio.shift = pin->ucGpioPinBitShift;
225 gpio.mask = (1 << pin->ucGpioPinBitShift);
229 pin = (ATOM_GPIO_PIN_ASSIGNMENT *)
230 ((u8 *)pin + sizeof(ATOM_GPIO_PIN_ASSIGNMENT));
237 static struct radeon_hpd radeon_atom_get_hpd_info_from_gpio(struct radeon_device *rdev,
238 struct radeon_gpio_rec *gpio)
240 struct radeon_hpd hpd;
243 memset(&hpd, 0, sizeof(struct radeon_hpd));
245 if (ASIC_IS_DCE6(rdev))
246 reg = SI_DC_GPIO_HPD_A;
247 else if (ASIC_IS_DCE4(rdev))
248 reg = EVERGREEN_DC_GPIO_HPD_A;
250 reg = AVIVO_DC_GPIO_HPD_A;
253 if (gpio->reg == reg) {
256 hpd.hpd = RADEON_HPD_1;
259 hpd.hpd = RADEON_HPD_2;
262 hpd.hpd = RADEON_HPD_3;
265 hpd.hpd = RADEON_HPD_4;
268 hpd.hpd = RADEON_HPD_5;
271 hpd.hpd = RADEON_HPD_6;
274 hpd.hpd = RADEON_HPD_NONE;
278 hpd.hpd = RADEON_HPD_NONE;
282 static bool radeon_atom_apply_quirks(struct drm_device *dev,
283 uint32_t supported_device,
285 struct radeon_i2c_bus_rec *i2c_bus,
287 struct radeon_hpd *hpd)
290 /* Asus M2A-VM HDMI board lists the DVI port as HDMI */
291 if ((dev->pdev->device == 0x791e) &&
292 (dev->pdev->subsystem_vendor == 0x1043) &&
293 (dev->pdev->subsystem_device == 0x826d)) {
294 if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) &&
295 (supported_device == ATOM_DEVICE_DFP3_SUPPORT))
296 *connector_type = DRM_MODE_CONNECTOR_DVID;
299 /* Asrock RS600 board lists the DVI port as HDMI */
300 if ((dev->pdev->device == 0x7941) &&
301 (dev->pdev->subsystem_vendor == 0x1849) &&
302 (dev->pdev->subsystem_device == 0x7941)) {
303 if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) &&
304 (supported_device == ATOM_DEVICE_DFP3_SUPPORT))
305 *connector_type = DRM_MODE_CONNECTOR_DVID;
308 /* MSI K9A2GM V2/V3 board has no HDMI or DVI */
309 if ((dev->pdev->device == 0x796e) &&
310 (dev->pdev->subsystem_vendor == 0x1462) &&
311 (dev->pdev->subsystem_device == 0x7302)) {
312 if ((supported_device == ATOM_DEVICE_DFP2_SUPPORT) ||
313 (supported_device == ATOM_DEVICE_DFP3_SUPPORT))
317 /* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */
318 if ((dev->pdev->device == 0x7941) &&
319 (dev->pdev->subsystem_vendor == 0x147b) &&
320 (dev->pdev->subsystem_device == 0x2412)) {
321 if (*connector_type == DRM_MODE_CONNECTOR_DVII)
325 /* Falcon NW laptop lists vga ddc line for LVDS */
326 if ((dev->pdev->device == 0x5653) &&
327 (dev->pdev->subsystem_vendor == 0x1462) &&
328 (dev->pdev->subsystem_device == 0x0291)) {
329 if (*connector_type == DRM_MODE_CONNECTOR_LVDS) {
330 i2c_bus->valid = false;
335 /* HIS X1300 is DVI+VGA, not DVI+DVI */
336 if ((dev->pdev->device == 0x7146) &&
337 (dev->pdev->subsystem_vendor == 0x17af) &&
338 (dev->pdev->subsystem_device == 0x2058)) {
339 if (supported_device == ATOM_DEVICE_DFP1_SUPPORT)
343 /* Gigabyte X1300 is DVI+VGA, not DVI+DVI */
344 if ((dev->pdev->device == 0x7142) &&
345 (dev->pdev->subsystem_vendor == 0x1458) &&
346 (dev->pdev->subsystem_device == 0x2134)) {
347 if (supported_device == ATOM_DEVICE_DFP1_SUPPORT)
353 if ((dev->pdev->device == 0x71C5) &&
354 (dev->pdev->subsystem_vendor == 0x106b) &&
355 (dev->pdev->subsystem_device == 0x0080)) {
356 if ((supported_device == ATOM_DEVICE_CRT1_SUPPORT) ||
357 (supported_device == ATOM_DEVICE_DFP2_SUPPORT))
359 if (supported_device == ATOM_DEVICE_CRT2_SUPPORT)
363 /* mac rv630, rv730, others */
364 if ((supported_device == ATOM_DEVICE_TV1_SUPPORT) &&
365 (*connector_type == DRM_MODE_CONNECTOR_DVII)) {
366 *connector_type = DRM_MODE_CONNECTOR_9PinDIN;
367 *line_mux = CONNECTOR_7PIN_DIN_ENUM_ID1;
370 /* ASUS HD 3600 XT board lists the DVI port as HDMI */
371 if ((dev->pdev->device == 0x9598) &&
372 (dev->pdev->subsystem_vendor == 0x1043) &&
373 (dev->pdev->subsystem_device == 0x01da)) {
374 if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
375 *connector_type = DRM_MODE_CONNECTOR_DVII;
379 /* ASUS HD 3600 board lists the DVI port as HDMI */
380 if ((dev->pdev->device == 0x9598) &&
381 (dev->pdev->subsystem_vendor == 0x1043) &&
382 (dev->pdev->subsystem_device == 0x01e4)) {
383 if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
384 *connector_type = DRM_MODE_CONNECTOR_DVII;
388 /* ASUS HD 3450 board lists the DVI port as HDMI */
389 if ((dev->pdev->device == 0x95C5) &&
390 (dev->pdev->subsystem_vendor == 0x1043) &&
391 (dev->pdev->subsystem_device == 0x01e2)) {
392 if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
393 *connector_type = DRM_MODE_CONNECTOR_DVII;
397 /* some BIOSes seem to report DAC on HDMI - usually this is a board with
398 * HDMI + VGA reporting as HDMI
400 if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
401 if (supported_device & (ATOM_DEVICE_CRT_SUPPORT)) {
402 *connector_type = DRM_MODE_CONNECTOR_VGA;
407 /* Acer laptop (Acer TravelMate 5730/5730G) has an HDMI port
408 * on the laptop and a DVI port on the docking station and
409 * both share the same encoder, hpd pin, and ddc line.
410 * So while the bios table is technically correct,
411 * we drop the DVI port here since xrandr has no concept of
412 * encoders and will try and drive both connectors
413 * with different crtcs which isn't possible on the hardware
414 * side and leaves no crtcs for LVDS or VGA.
416 if (((dev->pdev->device == 0x95c4) || (dev->pdev->device == 0x9591)) &&
417 (dev->pdev->subsystem_vendor == 0x1025) &&
418 (dev->pdev->subsystem_device == 0x013c)) {
419 if ((*connector_type == DRM_MODE_CONNECTOR_DVII) &&
420 (supported_device == ATOM_DEVICE_DFP1_SUPPORT)) {
421 /* actually it's a DVI-D port not DVI-I */
422 *connector_type = DRM_MODE_CONNECTOR_DVID;
427 /* XFX Pine Group device rv730 reports no VGA DDC lines
428 * even though they are wired up to record 0x93
430 if ((dev->pdev->device == 0x9498) &&
431 (dev->pdev->subsystem_vendor == 0x1682) &&
432 (dev->pdev->subsystem_device == 0x2452) &&
433 (i2c_bus->valid == false) &&
434 !(supported_device & (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT))) {
435 struct radeon_device *rdev = dev->dev_private;
436 *i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93);
439 /* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */
440 if (((dev->pdev->device == 0x9802) ||
441 (dev->pdev->device == 0x9805) ||
442 (dev->pdev->device == 0x9806)) &&
443 (dev->pdev->subsystem_vendor == 0x1734) &&
444 (dev->pdev->subsystem_device == 0x11bd)) {
445 if (*connector_type == DRM_MODE_CONNECTOR_VGA) {
446 *connector_type = DRM_MODE_CONNECTOR_DVII;
448 } else if (*connector_type == DRM_MODE_CONNECTOR_DVID) {
449 *connector_type = DRM_MODE_CONNECTOR_DVII;
456 static const int supported_devices_connector_convert[] = {
457 DRM_MODE_CONNECTOR_Unknown,
458 DRM_MODE_CONNECTOR_VGA,
459 DRM_MODE_CONNECTOR_DVII,
460 DRM_MODE_CONNECTOR_DVID,
461 DRM_MODE_CONNECTOR_DVIA,
462 DRM_MODE_CONNECTOR_SVIDEO,
463 DRM_MODE_CONNECTOR_Composite,
464 DRM_MODE_CONNECTOR_LVDS,
465 DRM_MODE_CONNECTOR_Unknown,
466 DRM_MODE_CONNECTOR_Unknown,
467 DRM_MODE_CONNECTOR_HDMIA,
468 DRM_MODE_CONNECTOR_HDMIB,
469 DRM_MODE_CONNECTOR_Unknown,
470 DRM_MODE_CONNECTOR_Unknown,
471 DRM_MODE_CONNECTOR_9PinDIN,
472 DRM_MODE_CONNECTOR_DisplayPort
475 static const uint16_t supported_devices_connector_object_id_convert[] = {
476 CONNECTOR_OBJECT_ID_NONE,
477 CONNECTOR_OBJECT_ID_VGA,
478 CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I, /* not all boards support DL */
479 CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D, /* not all boards support DL */
480 CONNECTOR_OBJECT_ID_VGA, /* technically DVI-A */
481 CONNECTOR_OBJECT_ID_COMPOSITE,
482 CONNECTOR_OBJECT_ID_SVIDEO,
483 CONNECTOR_OBJECT_ID_LVDS,
484 CONNECTOR_OBJECT_ID_9PIN_DIN,
485 CONNECTOR_OBJECT_ID_9PIN_DIN,
486 CONNECTOR_OBJECT_ID_DISPLAYPORT,
487 CONNECTOR_OBJECT_ID_HDMI_TYPE_A,
488 CONNECTOR_OBJECT_ID_HDMI_TYPE_B,
489 CONNECTOR_OBJECT_ID_SVIDEO
492 static const int object_connector_convert[] = {
493 DRM_MODE_CONNECTOR_Unknown,
494 DRM_MODE_CONNECTOR_DVII,
495 DRM_MODE_CONNECTOR_DVII,
496 DRM_MODE_CONNECTOR_DVID,
497 DRM_MODE_CONNECTOR_DVID,
498 DRM_MODE_CONNECTOR_VGA,
499 DRM_MODE_CONNECTOR_Composite,
500 DRM_MODE_CONNECTOR_SVIDEO,
501 DRM_MODE_CONNECTOR_Unknown,
502 DRM_MODE_CONNECTOR_Unknown,
503 DRM_MODE_CONNECTOR_9PinDIN,
504 DRM_MODE_CONNECTOR_Unknown,
505 DRM_MODE_CONNECTOR_HDMIA,
506 DRM_MODE_CONNECTOR_HDMIB,
507 DRM_MODE_CONNECTOR_LVDS,
508 DRM_MODE_CONNECTOR_9PinDIN,
509 DRM_MODE_CONNECTOR_Unknown,
510 DRM_MODE_CONNECTOR_Unknown,
511 DRM_MODE_CONNECTOR_Unknown,
512 DRM_MODE_CONNECTOR_DisplayPort,
513 DRM_MODE_CONNECTOR_eDP,
514 DRM_MODE_CONNECTOR_Unknown
517 bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev)
519 struct radeon_device *rdev = dev->dev_private;
520 struct radeon_mode_info *mode_info = &rdev->mode_info;
521 struct atom_context *ctx = mode_info->atom_context;
522 int index = GetIndexIntoMasterTable(DATA, Object_Header);
523 u16 size, data_offset;
525 ATOM_CONNECTOR_OBJECT_TABLE *con_obj;
526 ATOM_ENCODER_OBJECT_TABLE *enc_obj;
527 ATOM_OBJECT_TABLE *router_obj;
528 ATOM_DISPLAY_OBJECT_PATH_TABLE *path_obj;
529 ATOM_OBJECT_HEADER *obj_header;
530 int i, j, k, path_size, device_support;
532 u16 igp_lane_info, conn_id, connector_object_id;
533 struct radeon_i2c_bus_rec ddc_bus;
534 struct radeon_router router;
535 struct radeon_gpio_rec gpio;
536 struct radeon_hpd hpd;
538 if (!atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset))
544 obj_header = (ATOM_OBJECT_HEADER *) (ctx->bios + data_offset);
545 path_obj = (ATOM_DISPLAY_OBJECT_PATH_TABLE *)
546 (ctx->bios + data_offset +
547 le16_to_cpu(obj_header->usDisplayPathTableOffset));
548 con_obj = (ATOM_CONNECTOR_OBJECT_TABLE *)
549 (ctx->bios + data_offset +
550 le16_to_cpu(obj_header->usConnectorObjectTableOffset));
551 enc_obj = (ATOM_ENCODER_OBJECT_TABLE *)
552 (ctx->bios + data_offset +
553 le16_to_cpu(obj_header->usEncoderObjectTableOffset));
554 router_obj = (ATOM_OBJECT_TABLE *)
555 (ctx->bios + data_offset +
556 le16_to_cpu(obj_header->usRouterObjectTableOffset));
557 device_support = le16_to_cpu(obj_header->usDeviceSupport);
560 for (i = 0; i < path_obj->ucNumOfDispPath; i++) {
561 uint8_t *addr = (uint8_t *) path_obj->asDispPath;
562 ATOM_DISPLAY_OBJECT_PATH *path;
564 path = (ATOM_DISPLAY_OBJECT_PATH *) addr;
565 path_size += le16_to_cpu(path->usSize);
567 if (device_support & le16_to_cpu(path->usDeviceTag)) {
568 uint8_t con_obj_id, con_obj_num, con_obj_type;
571 (le16_to_cpu(path->usConnObjectId) & OBJECT_ID_MASK)
574 (le16_to_cpu(path->usConnObjectId) & ENUM_ID_MASK)
577 (le16_to_cpu(path->usConnObjectId) &
578 OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT;
580 /* TODO CV support */
581 if (le16_to_cpu(path->usDeviceTag) ==
582 ATOM_DEVICE_CV_SUPPORT)
586 if ((rdev->flags & RADEON_IS_IGP) &&
588 CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) {
589 uint16_t igp_offset = 0;
590 ATOM_INTEGRATED_SYSTEM_INFO_V2 *igp_obj;
593 GetIndexIntoMasterTable(DATA,
594 IntegratedSystemInfo);
596 if (atom_parse_data_header(ctx, index, &size, &frev,
597 &crev, &igp_offset)) {
601 (ATOM_INTEGRATED_SYSTEM_INFO_V2
602 *) (ctx->bios + igp_offset);
605 uint32_t slot_config, ct;
607 if (con_obj_num == 1)
616 ct = (slot_config >> 16) & 0xff;
618 object_connector_convert
620 connector_object_id = ct;
622 slot_config & 0xffff;
630 object_connector_convert[con_obj_id];
631 connector_object_id = con_obj_id;
636 object_connector_convert[con_obj_id];
637 connector_object_id = con_obj_id;
640 if (connector_type == DRM_MODE_CONNECTOR_Unknown)
643 router.ddc_valid = false;
644 router.cd_valid = false;
645 for (j = 0; j < ((le16_to_cpu(path->usSize) - 8) / 2); j++) {
646 uint8_t grph_obj_id, grph_obj_num, grph_obj_type;
649 (le16_to_cpu(path->usGraphicObjIds[j]) &
650 OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
652 (le16_to_cpu(path->usGraphicObjIds[j]) &
653 ENUM_ID_MASK) >> ENUM_ID_SHIFT;
655 (le16_to_cpu(path->usGraphicObjIds[j]) &
656 OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT;
658 if (grph_obj_type == GRAPH_OBJECT_TYPE_ENCODER) {
659 for (k = 0; k < enc_obj->ucNumberOfObjects; k++) {
660 u16 encoder_obj = le16_to_cpu(enc_obj->asObjects[k].usObjectID);
661 if (le16_to_cpu(path->usGraphicObjIds[j]) == encoder_obj) {
662 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *)
663 (ctx->bios + data_offset +
664 le16_to_cpu(enc_obj->asObjects[k].usRecordOffset));
665 ATOM_ENCODER_CAP_RECORD *cap_record;
668 while (record->ucRecordSize > 0 &&
669 record->ucRecordType > 0 &&
670 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) {
671 switch (record->ucRecordType) {
672 case ATOM_ENCODER_CAP_RECORD_TYPE:
673 cap_record =(ATOM_ENCODER_CAP_RECORD *)
675 caps = le16_to_cpu(cap_record->usEncoderCap);
678 record = (ATOM_COMMON_RECORD_HEADER *)
679 ((char *)record + record->ucRecordSize);
681 radeon_add_atom_encoder(dev,
689 } else if (grph_obj_type == GRAPH_OBJECT_TYPE_ROUTER) {
690 for (k = 0; k < router_obj->ucNumberOfObjects; k++) {
691 u16 router_obj_id = le16_to_cpu(router_obj->asObjects[k].usObjectID);
692 if (le16_to_cpu(path->usGraphicObjIds[j]) == router_obj_id) {
693 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *)
694 (ctx->bios + data_offset +
695 le16_to_cpu(router_obj->asObjects[k].usRecordOffset));
696 ATOM_I2C_RECORD *i2c_record;
697 ATOM_I2C_ID_CONFIG_ACCESS *i2c_config;
698 ATOM_ROUTER_DDC_PATH_SELECT_RECORD *ddc_path;
699 ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD *cd_path;
700 ATOM_SRC_DST_TABLE_FOR_ONE_OBJECT *router_src_dst_table =
701 (ATOM_SRC_DST_TABLE_FOR_ONE_OBJECT *)
702 (ctx->bios + data_offset +
703 le16_to_cpu(router_obj->asObjects[k].usSrcDstTableOffset));
704 u8 *num_dst_objs = (u8 *)
705 ((u8 *)router_src_dst_table + 1 +
706 (router_src_dst_table->ucNumberOfSrc * 2));
707 u16 *dst_objs = (u16 *)(num_dst_objs + 1);
710 router.router_id = router_obj_id;
711 for (enum_id = 0; enum_id < (*num_dst_objs); enum_id++) {
712 if (le16_to_cpu(path->usConnObjectId) ==
713 le16_to_cpu(dst_objs[enum_id]))
717 while (record->ucRecordSize > 0 &&
718 record->ucRecordType > 0 &&
719 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) {
720 switch (record->ucRecordType) {
721 case ATOM_I2C_RECORD_TYPE:
726 (ATOM_I2C_ID_CONFIG_ACCESS *)
727 &i2c_record->sucI2cId;
729 radeon_lookup_i2c_gpio(rdev,
732 router.i2c_addr = i2c_record->ucI2CAddr >> 1;
734 case ATOM_ROUTER_DDC_PATH_SELECT_RECORD_TYPE:
735 ddc_path = (ATOM_ROUTER_DDC_PATH_SELECT_RECORD *)
737 router.ddc_valid = true;
738 router.ddc_mux_type = ddc_path->ucMuxType;
739 router.ddc_mux_control_pin = ddc_path->ucMuxControlPin;
740 router.ddc_mux_state = ddc_path->ucMuxState[enum_id];
742 case ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD_TYPE:
743 cd_path = (ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD *)
745 router.cd_valid = true;
746 router.cd_mux_type = cd_path->ucMuxType;
747 router.cd_mux_control_pin = cd_path->ucMuxControlPin;
748 router.cd_mux_state = cd_path->ucMuxState[enum_id];
751 record = (ATOM_COMMON_RECORD_HEADER *)
752 ((char *)record + record->ucRecordSize);
759 /* look up gpio for ddc, hpd */
760 ddc_bus.valid = false;
761 hpd.hpd = RADEON_HPD_NONE;
762 if ((le16_to_cpu(path->usDeviceTag) &
763 (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT)) == 0) {
764 for (j = 0; j < con_obj->ucNumberOfObjects; j++) {
765 if (le16_to_cpu(path->usConnObjectId) ==
766 le16_to_cpu(con_obj->asObjects[j].
768 ATOM_COMMON_RECORD_HEADER
770 (ATOM_COMMON_RECORD_HEADER
772 (ctx->bios + data_offset +
773 le16_to_cpu(con_obj->
776 ATOM_I2C_RECORD *i2c_record;
777 ATOM_HPD_INT_RECORD *hpd_record;
778 ATOM_I2C_ID_CONFIG_ACCESS *i2c_config;
780 while (record->ucRecordSize > 0 &&
781 record->ucRecordType > 0 &&
782 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) {
783 switch (record->ucRecordType) {
784 case ATOM_I2C_RECORD_TYPE:
789 (ATOM_I2C_ID_CONFIG_ACCESS *)
790 &i2c_record->sucI2cId;
791 ddc_bus = radeon_lookup_i2c_gpio(rdev,
795 case ATOM_HPD_INT_RECORD_TYPE:
797 (ATOM_HPD_INT_RECORD *)
799 gpio = radeon_atombios_lookup_gpio(rdev,
800 hpd_record->ucHPDIntGPIOID);
801 hpd = radeon_atom_get_hpd_info_from_gpio(rdev, &gpio);
802 hpd.plugged_state = hpd_record->ucPlugged_PinState;
806 (ATOM_COMMON_RECORD_HEADER
817 /* needed for aux chan transactions */
818 ddc_bus.hpd = hpd.hpd;
820 conn_id = le16_to_cpu(path->usConnObjectId);
822 if (!radeon_atom_apply_quirks
823 (dev, le16_to_cpu(path->usDeviceTag), &connector_type,
824 &ddc_bus, &conn_id, &hpd))
827 radeon_add_atom_connector(dev,
831 connector_type, &ddc_bus,
840 radeon_link_encoder_connector(dev);
842 radeon_setup_mst_connector(dev);
846 static uint16_t atombios_get_connector_object_id(struct drm_device *dev,
850 struct radeon_device *rdev = dev->dev_private;
852 if (rdev->flags & RADEON_IS_IGP) {
853 return supported_devices_connector_object_id_convert
855 } else if (((connector_type == DRM_MODE_CONNECTOR_DVII) ||
856 (connector_type == DRM_MODE_CONNECTOR_DVID)) &&
857 (devices & ATOM_DEVICE_DFP2_SUPPORT)) {
858 struct radeon_mode_info *mode_info = &rdev->mode_info;
859 struct atom_context *ctx = mode_info->atom_context;
860 int index = GetIndexIntoMasterTable(DATA, XTMDS_Info);
861 uint16_t size, data_offset;
863 ATOM_XTMDS_INFO *xtmds;
865 if (atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) {
866 xtmds = (ATOM_XTMDS_INFO *)(ctx->bios + data_offset);
868 if (xtmds->ucSupportedLink & ATOM_XTMDS_SUPPORTED_DUALLINK) {
869 if (connector_type == DRM_MODE_CONNECTOR_DVII)
870 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I;
872 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D;
874 if (connector_type == DRM_MODE_CONNECTOR_DVII)
875 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I;
877 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D;
880 return supported_devices_connector_object_id_convert
883 return supported_devices_connector_object_id_convert
888 struct bios_connector {
893 struct radeon_i2c_bus_rec ddc_bus;
894 struct radeon_hpd hpd;
897 bool radeon_get_atom_connector_info_from_supported_devices_table(struct
901 struct radeon_device *rdev = dev->dev_private;
902 struct radeon_mode_info *mode_info = &rdev->mode_info;
903 struct atom_context *ctx = mode_info->atom_context;
904 int index = GetIndexIntoMasterTable(DATA, SupportedDevicesInfo);
905 uint16_t size, data_offset;
907 uint16_t device_support;
909 union atom_supported_devices *supported_devices;
910 int i, j, max_device;
911 struct bios_connector *bios_connectors;
912 size_t bc_size = sizeof(*bios_connectors) * ATOM_MAX_SUPPORTED_DEVICE;
913 struct radeon_router router;
915 router.ddc_valid = false;
916 router.cd_valid = false;
918 bios_connectors = kzalloc(bc_size, GFP_KERNEL);
919 if (!bios_connectors)
922 if (!atom_parse_data_header(ctx, index, &size, &frev, &crev,
924 kfree(bios_connectors);
929 (union atom_supported_devices *)(ctx->bios + data_offset);
931 device_support = le16_to_cpu(supported_devices->info.usDeviceSupport);
934 max_device = ATOM_MAX_SUPPORTED_DEVICE;
936 max_device = ATOM_MAX_SUPPORTED_DEVICE_INFO;
938 for (i = 0; i < max_device; i++) {
939 ATOM_CONNECTOR_INFO_I2C ci =
940 supported_devices->info.asConnInfo[i];
942 bios_connectors[i].valid = false;
944 if (!(device_support & (1 << i))) {
948 if (i == ATOM_DEVICE_CV_INDEX) {
949 DRM_DEBUG_KMS("Skipping Component Video\n");
953 bios_connectors[i].connector_type =
954 supported_devices_connector_convert[ci.sucConnectorInfo.
958 if (bios_connectors[i].connector_type ==
959 DRM_MODE_CONNECTOR_Unknown)
962 dac = ci.sucConnectorInfo.sbfAccess.bfAssociatedDAC;
964 bios_connectors[i].line_mux =
965 ci.sucI2cId.ucAccess;
967 /* give tv unique connector ids */
968 if (i == ATOM_DEVICE_TV1_INDEX) {
969 bios_connectors[i].ddc_bus.valid = false;
970 bios_connectors[i].line_mux = 50;
971 } else if (i == ATOM_DEVICE_TV2_INDEX) {
972 bios_connectors[i].ddc_bus.valid = false;
973 bios_connectors[i].line_mux = 51;
974 } else if (i == ATOM_DEVICE_CV_INDEX) {
975 bios_connectors[i].ddc_bus.valid = false;
976 bios_connectors[i].line_mux = 52;
978 bios_connectors[i].ddc_bus =
979 radeon_lookup_i2c_gpio(rdev,
980 bios_connectors[i].line_mux);
982 if ((crev > 1) && (frev > 1)) {
983 u8 isb = supported_devices->info_2d1.asIntSrcInfo[i].ucIntSrcBitmap;
986 bios_connectors[i].hpd.hpd = RADEON_HPD_1;
989 bios_connectors[i].hpd.hpd = RADEON_HPD_2;
992 bios_connectors[i].hpd.hpd = RADEON_HPD_NONE;
996 if (i == ATOM_DEVICE_DFP1_INDEX)
997 bios_connectors[i].hpd.hpd = RADEON_HPD_1;
998 else if (i == ATOM_DEVICE_DFP2_INDEX)
999 bios_connectors[i].hpd.hpd = RADEON_HPD_2;
1001 bios_connectors[i].hpd.hpd = RADEON_HPD_NONE;
1004 /* Always set the connector type to VGA for CRT1/CRT2. if they are
1005 * shared with a DVI port, we'll pick up the DVI connector when we
1006 * merge the outputs. Some bioses incorrectly list VGA ports as DVI.
1008 if (i == ATOM_DEVICE_CRT1_INDEX || i == ATOM_DEVICE_CRT2_INDEX)
1009 bios_connectors[i].connector_type =
1010 DRM_MODE_CONNECTOR_VGA;
1012 if (!radeon_atom_apply_quirks
1013 (dev, (1 << i), &bios_connectors[i].connector_type,
1014 &bios_connectors[i].ddc_bus, &bios_connectors[i].line_mux,
1015 &bios_connectors[i].hpd))
1018 bios_connectors[i].valid = true;
1019 bios_connectors[i].devices = (1 << i);
1021 if (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom)
1022 radeon_add_atom_encoder(dev,
1023 radeon_get_encoder_enum(dev,
1029 radeon_add_legacy_encoder(dev,
1030 radeon_get_encoder_enum(dev,
1036 /* combine shared connectors */
1037 for (i = 0; i < max_device; i++) {
1038 if (bios_connectors[i].valid) {
1039 for (j = 0; j < max_device; j++) {
1040 if (bios_connectors[j].valid && (i != j)) {
1041 if (bios_connectors[i].line_mux ==
1042 bios_connectors[j].line_mux) {
1043 /* make sure not to combine LVDS */
1044 if (bios_connectors[i].devices & (ATOM_DEVICE_LCD_SUPPORT)) {
1045 bios_connectors[i].line_mux = 53;
1046 bios_connectors[i].ddc_bus.valid = false;
1049 if (bios_connectors[j].devices & (ATOM_DEVICE_LCD_SUPPORT)) {
1050 bios_connectors[j].line_mux = 53;
1051 bios_connectors[j].ddc_bus.valid = false;
1054 /* combine analog and digital for DVI-I */
1055 if (((bios_connectors[i].devices & (ATOM_DEVICE_DFP_SUPPORT)) &&
1056 (bios_connectors[j].devices & (ATOM_DEVICE_CRT_SUPPORT))) ||
1057 ((bios_connectors[j].devices & (ATOM_DEVICE_DFP_SUPPORT)) &&
1058 (bios_connectors[i].devices & (ATOM_DEVICE_CRT_SUPPORT)))) {
1059 bios_connectors[i].devices |=
1060 bios_connectors[j].devices;
1061 bios_connectors[i].connector_type =
1062 DRM_MODE_CONNECTOR_DVII;
1063 if (bios_connectors[j].devices & (ATOM_DEVICE_DFP_SUPPORT))
1064 bios_connectors[i].hpd =
1065 bios_connectors[j].hpd;
1066 bios_connectors[j].valid = false;
1074 /* add the connectors */
1075 for (i = 0; i < max_device; i++) {
1076 if (bios_connectors[i].valid) {
1077 uint16_t connector_object_id =
1078 atombios_get_connector_object_id(dev,
1079 bios_connectors[i].connector_type,
1080 bios_connectors[i].devices);
1081 radeon_add_atom_connector(dev,
1082 bios_connectors[i].line_mux,
1083 bios_connectors[i].devices,
1086 &bios_connectors[i].ddc_bus,
1088 connector_object_id,
1089 &bios_connectors[i].hpd,
1094 radeon_link_encoder_connector(dev);
1096 kfree(bios_connectors);
1100 union firmware_info {
1101 ATOM_FIRMWARE_INFO info;
1102 ATOM_FIRMWARE_INFO_V1_2 info_12;
1103 ATOM_FIRMWARE_INFO_V1_3 info_13;
1104 ATOM_FIRMWARE_INFO_V1_4 info_14;
1105 ATOM_FIRMWARE_INFO_V2_1 info_21;
1106 ATOM_FIRMWARE_INFO_V2_2 info_22;
1109 bool radeon_atom_get_clock_info(struct drm_device *dev)
1111 struct radeon_device *rdev = dev->dev_private;
1112 struct radeon_mode_info *mode_info = &rdev->mode_info;
1113 int index = GetIndexIntoMasterTable(DATA, FirmwareInfo);
1114 union firmware_info *firmware_info;
1116 struct radeon_pll *p1pll = &rdev->clock.p1pll;
1117 struct radeon_pll *p2pll = &rdev->clock.p2pll;
1118 struct radeon_pll *dcpll = &rdev->clock.dcpll;
1119 struct radeon_pll *spll = &rdev->clock.spll;
1120 struct radeon_pll *mpll = &rdev->clock.mpll;
1121 uint16_t data_offset;
1123 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1124 &frev, &crev, &data_offset)) {
1126 (union firmware_info *)(mode_info->atom_context->bios +
1129 p1pll->reference_freq =
1130 le16_to_cpu(firmware_info->info.usReferenceClock);
1131 p1pll->reference_div = 0;
1134 p1pll->pll_out_min =
1135 le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Output);
1137 p1pll->pll_out_min =
1138 le32_to_cpu(firmware_info->info_12.ulMinPixelClockPLL_Output);
1139 p1pll->pll_out_max =
1140 le32_to_cpu(firmware_info->info.ulMaxPixelClockPLL_Output);
1143 p1pll->lcd_pll_out_min =
1144 le16_to_cpu(firmware_info->info_14.usLcdMinPixelClockPLL_Output) * 100;
1145 if (p1pll->lcd_pll_out_min == 0)
1146 p1pll->lcd_pll_out_min = p1pll->pll_out_min;
1147 p1pll->lcd_pll_out_max =
1148 le16_to_cpu(firmware_info->info_14.usLcdMaxPixelClockPLL_Output) * 100;
1149 if (p1pll->lcd_pll_out_max == 0)
1150 p1pll->lcd_pll_out_max = p1pll->pll_out_max;
1152 p1pll->lcd_pll_out_min = p1pll->pll_out_min;
1153 p1pll->lcd_pll_out_max = p1pll->pll_out_max;
1156 if (p1pll->pll_out_min == 0) {
1157 if (ASIC_IS_AVIVO(rdev))
1158 p1pll->pll_out_min = 64800;
1160 p1pll->pll_out_min = 20000;
1164 le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Input);
1166 le16_to_cpu(firmware_info->info.usMaxPixelClockPLL_Input);
1171 if (ASIC_IS_DCE4(rdev))
1172 spll->reference_freq =
1173 le16_to_cpu(firmware_info->info_21.usCoreReferenceClock);
1175 spll->reference_freq =
1176 le16_to_cpu(firmware_info->info.usReferenceClock);
1177 spll->reference_div = 0;
1180 le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Output);
1182 le32_to_cpu(firmware_info->info.ulMaxEngineClockPLL_Output);
1185 if (spll->pll_out_min == 0) {
1186 if (ASIC_IS_AVIVO(rdev))
1187 spll->pll_out_min = 64800;
1189 spll->pll_out_min = 20000;
1193 le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Input);
1195 le16_to_cpu(firmware_info->info.usMaxEngineClockPLL_Input);
1198 if (ASIC_IS_DCE4(rdev))
1199 mpll->reference_freq =
1200 le16_to_cpu(firmware_info->info_21.usMemoryReferenceClock);
1202 mpll->reference_freq =
1203 le16_to_cpu(firmware_info->info.usReferenceClock);
1204 mpll->reference_div = 0;
1207 le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Output);
1209 le32_to_cpu(firmware_info->info.ulMaxMemoryClockPLL_Output);
1212 if (mpll->pll_out_min == 0) {
1213 if (ASIC_IS_AVIVO(rdev))
1214 mpll->pll_out_min = 64800;
1216 mpll->pll_out_min = 20000;
1220 le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Input);
1222 le16_to_cpu(firmware_info->info.usMaxMemoryClockPLL_Input);
1224 rdev->clock.default_sclk =
1225 le32_to_cpu(firmware_info->info.ulDefaultEngineClock);
1226 rdev->clock.default_mclk =
1227 le32_to_cpu(firmware_info->info.ulDefaultMemoryClock);
1229 if (ASIC_IS_DCE4(rdev)) {
1230 rdev->clock.default_dispclk =
1231 le32_to_cpu(firmware_info->info_21.ulDefaultDispEngineClkFreq);
1232 if (rdev->clock.default_dispclk == 0) {
1233 if (ASIC_IS_DCE6(rdev))
1234 rdev->clock.default_dispclk = 60000; /* 600 Mhz */
1235 else if (ASIC_IS_DCE5(rdev))
1236 rdev->clock.default_dispclk = 54000; /* 540 Mhz */
1238 rdev->clock.default_dispclk = 60000; /* 600 Mhz */
1240 /* set a reasonable default for DP */
1241 if (ASIC_IS_DCE6(rdev) && (rdev->clock.default_dispclk < 53900)) {
1242 DRM_INFO("Changing default dispclk from %dMhz to 600Mhz\n",
1243 rdev->clock.default_dispclk / 100);
1244 rdev->clock.default_dispclk = 60000;
1246 rdev->clock.dp_extclk =
1247 le16_to_cpu(firmware_info->info_21.usUniphyDPModeExtClkFreq);
1248 rdev->clock.current_dispclk = rdev->clock.default_dispclk;
1252 rdev->clock.max_pixel_clock = le16_to_cpu(firmware_info->info.usMaxPixelClock);
1253 if (rdev->clock.max_pixel_clock == 0)
1254 rdev->clock.max_pixel_clock = 40000;
1256 /* not technically a clock, but... */
1257 rdev->mode_info.firmware_flags =
1258 le16_to_cpu(firmware_info->info.usFirmwareCapability.susAccess);
1260 if (ASIC_IS_DCE8(rdev))
1261 rdev->clock.vco_freq =
1262 le32_to_cpu(firmware_info->info_22.ulGPUPLL_OutputFreq);
1264 rdev->clock.vco_freq = rdev->clock.current_dispclk;
1266 if (rdev->clock.vco_freq == 0)
1267 rdev->clock.vco_freq = 360000; /* 3.6 GHz */
1276 struct _ATOM_INTEGRATED_SYSTEM_INFO info;
1277 struct _ATOM_INTEGRATED_SYSTEM_INFO_V2 info_2;
1278 struct _ATOM_INTEGRATED_SYSTEM_INFO_V6 info_6;
1279 struct _ATOM_INTEGRATED_SYSTEM_INFO_V1_7 info_7;
1280 struct _ATOM_INTEGRATED_SYSTEM_INFO_V1_8 info_8;
1283 bool radeon_atombios_sideport_present(struct radeon_device *rdev)
1285 struct radeon_mode_info *mode_info = &rdev->mode_info;
1286 int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo);
1287 union igp_info *igp_info;
1291 /* sideport is AMD only */
1292 if (rdev->family == CHIP_RS600)
1295 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1296 &frev, &crev, &data_offset)) {
1297 igp_info = (union igp_info *)(mode_info->atom_context->bios +
1301 if (le32_to_cpu(igp_info->info.ulBootUpMemoryClock))
1305 if (le32_to_cpu(igp_info->info_2.ulBootUpSidePortClock))
1309 DRM_ERROR("Unsupported IGP table: %d %d\n", frev, crev);
1316 bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder,
1317 struct radeon_encoder_int_tmds *tmds)
1319 struct drm_device *dev = encoder->base.dev;
1320 struct radeon_device *rdev = dev->dev_private;
1321 struct radeon_mode_info *mode_info = &rdev->mode_info;
1322 int index = GetIndexIntoMasterTable(DATA, TMDS_Info);
1323 uint16_t data_offset;
1324 struct _ATOM_TMDS_INFO *tmds_info;
1329 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1330 &frev, &crev, &data_offset)) {
1332 (struct _ATOM_TMDS_INFO *)(mode_info->atom_context->bios +
1335 maxfreq = le16_to_cpu(tmds_info->usMaxFrequency);
1336 for (i = 0; i < 4; i++) {
1337 tmds->tmds_pll[i].freq =
1338 le16_to_cpu(tmds_info->asMiscInfo[i].usFrequency);
1339 tmds->tmds_pll[i].value =
1340 tmds_info->asMiscInfo[i].ucPLL_ChargePump & 0x3f;
1341 tmds->tmds_pll[i].value |=
1342 (tmds_info->asMiscInfo[i].
1343 ucPLL_VCO_Gain & 0x3f) << 6;
1344 tmds->tmds_pll[i].value |=
1345 (tmds_info->asMiscInfo[i].
1346 ucPLL_DutyCycle & 0xf) << 12;
1347 tmds->tmds_pll[i].value |=
1348 (tmds_info->asMiscInfo[i].
1349 ucPLL_VoltageSwing & 0xf) << 16;
1351 DRM_DEBUG_KMS("TMDS PLL From ATOMBIOS %u %x\n",
1352 tmds->tmds_pll[i].freq,
1353 tmds->tmds_pll[i].value);
1355 if (maxfreq == tmds->tmds_pll[i].freq) {
1356 tmds->tmds_pll[i].freq = 0xffffffff;
1365 bool radeon_atombios_get_ppll_ss_info(struct radeon_device *rdev,
1366 struct radeon_atom_ss *ss,
1369 struct radeon_mode_info *mode_info = &rdev->mode_info;
1370 int index = GetIndexIntoMasterTable(DATA, PPLL_SS_Info);
1371 uint16_t data_offset, size;
1372 struct _ATOM_SPREAD_SPECTRUM_INFO *ss_info;
1373 struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT *ss_assign;
1377 memset(ss, 0, sizeof(struct radeon_atom_ss));
1378 if (atom_parse_data_header(mode_info->atom_context, index, &size,
1379 &frev, &crev, &data_offset)) {
1381 (struct _ATOM_SPREAD_SPECTRUM_INFO *)(mode_info->atom_context->bios + data_offset);
1383 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1384 sizeof(ATOM_SPREAD_SPECTRUM_ASSIGNMENT);
1385 ss_assign = (struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT*)
1386 ((u8 *)&ss_info->asSS_Info[0]);
1387 for (i = 0; i < num_indices; i++) {
1388 if (ss_assign->ucSS_Id == id) {
1390 le16_to_cpu(ss_assign->usSpreadSpectrumPercentage);
1391 ss->type = ss_assign->ucSpreadSpectrumType;
1392 ss->step = ss_assign->ucSS_Step;
1393 ss->delay = ss_assign->ucSS_Delay;
1394 ss->range = ss_assign->ucSS_Range;
1395 ss->refdiv = ss_assign->ucRecommendedRef_Div;
1398 ss_assign = (struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT*)
1399 ((u8 *)ss_assign + sizeof(struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT));
1405 static void radeon_atombios_get_igp_ss_overrides(struct radeon_device *rdev,
1406 struct radeon_atom_ss *ss,
1409 struct radeon_mode_info *mode_info = &rdev->mode_info;
1410 int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo);
1411 u16 data_offset, size;
1412 union igp_info *igp_info;
1414 u16 percentage = 0, rate = 0;
1416 /* get any igp specific overrides */
1417 if (atom_parse_data_header(mode_info->atom_context, index, &size,
1418 &frev, &crev, &data_offset)) {
1419 igp_info = (union igp_info *)
1420 (mode_info->atom_context->bios + data_offset);
1424 case ASIC_INTERNAL_SS_ON_TMDS:
1425 percentage = le16_to_cpu(igp_info->info_6.usDVISSPercentage);
1426 rate = le16_to_cpu(igp_info->info_6.usDVISSpreadRateIn10Hz);
1428 case ASIC_INTERNAL_SS_ON_HDMI:
1429 percentage = le16_to_cpu(igp_info->info_6.usHDMISSPercentage);
1430 rate = le16_to_cpu(igp_info->info_6.usHDMISSpreadRateIn10Hz);
1432 case ASIC_INTERNAL_SS_ON_LVDS:
1433 percentage = le16_to_cpu(igp_info->info_6.usLvdsSSPercentage);
1434 rate = le16_to_cpu(igp_info->info_6.usLvdsSSpreadRateIn10Hz);
1440 case ASIC_INTERNAL_SS_ON_TMDS:
1441 percentage = le16_to_cpu(igp_info->info_7.usDVISSPercentage);
1442 rate = le16_to_cpu(igp_info->info_7.usDVISSpreadRateIn10Hz);
1444 case ASIC_INTERNAL_SS_ON_HDMI:
1445 percentage = le16_to_cpu(igp_info->info_7.usHDMISSPercentage);
1446 rate = le16_to_cpu(igp_info->info_7.usHDMISSpreadRateIn10Hz);
1448 case ASIC_INTERNAL_SS_ON_LVDS:
1449 percentage = le16_to_cpu(igp_info->info_7.usLvdsSSPercentage);
1450 rate = le16_to_cpu(igp_info->info_7.usLvdsSSpreadRateIn10Hz);
1456 case ASIC_INTERNAL_SS_ON_TMDS:
1457 percentage = le16_to_cpu(igp_info->info_8.usDVISSPercentage);
1458 rate = le16_to_cpu(igp_info->info_8.usDVISSpreadRateIn10Hz);
1460 case ASIC_INTERNAL_SS_ON_HDMI:
1461 percentage = le16_to_cpu(igp_info->info_8.usHDMISSPercentage);
1462 rate = le16_to_cpu(igp_info->info_8.usHDMISSpreadRateIn10Hz);
1464 case ASIC_INTERNAL_SS_ON_LVDS:
1465 percentage = le16_to_cpu(igp_info->info_8.usLvdsSSPercentage);
1466 rate = le16_to_cpu(igp_info->info_8.usLvdsSSpreadRateIn10Hz);
1471 DRM_ERROR("Unsupported IGP table: %d %d\n", frev, crev);
1475 ss->percentage = percentage;
1481 union asic_ss_info {
1482 struct _ATOM_ASIC_INTERNAL_SS_INFO info;
1483 struct _ATOM_ASIC_INTERNAL_SS_INFO_V2 info_2;
1484 struct _ATOM_ASIC_INTERNAL_SS_INFO_V3 info_3;
1487 union asic_ss_assignment {
1488 struct _ATOM_ASIC_SS_ASSIGNMENT v1;
1489 struct _ATOM_ASIC_SS_ASSIGNMENT_V2 v2;
1490 struct _ATOM_ASIC_SS_ASSIGNMENT_V3 v3;
1493 bool radeon_atombios_get_asic_ss_info(struct radeon_device *rdev,
1494 struct radeon_atom_ss *ss,
1497 struct radeon_mode_info *mode_info = &rdev->mode_info;
1498 int index = GetIndexIntoMasterTable(DATA, ASIC_InternalSS_Info);
1499 uint16_t data_offset, size;
1500 union asic_ss_info *ss_info;
1501 union asic_ss_assignment *ss_assign;
1505 if (id == ASIC_INTERNAL_MEMORY_SS) {
1506 if (!(rdev->mode_info.firmware_flags & ATOM_BIOS_INFO_MEMORY_CLOCK_SS_SUPPORT))
1509 if (id == ASIC_INTERNAL_ENGINE_SS) {
1510 if (!(rdev->mode_info.firmware_flags & ATOM_BIOS_INFO_ENGINE_CLOCK_SS_SUPPORT))
1514 memset(ss, 0, sizeof(struct radeon_atom_ss));
1515 if (atom_parse_data_header(mode_info->atom_context, index, &size,
1516 &frev, &crev, &data_offset)) {
1519 (union asic_ss_info *)(mode_info->atom_context->bios + data_offset);
1523 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1524 sizeof(ATOM_ASIC_SS_ASSIGNMENT);
1526 ss_assign = (union asic_ss_assignment *)((u8 *)&ss_info->info.asSpreadSpectrum[0]);
1527 for (i = 0; i < num_indices; i++) {
1528 if ((ss_assign->v1.ucClockIndication == id) &&
1529 (clock <= le32_to_cpu(ss_assign->v1.ulTargetClockRange))) {
1531 le16_to_cpu(ss_assign->v1.usSpreadSpectrumPercentage);
1532 ss->type = ss_assign->v1.ucSpreadSpectrumMode;
1533 ss->rate = le16_to_cpu(ss_assign->v1.usSpreadRateInKhz);
1534 ss->percentage_divider = 100;
1537 ss_assign = (union asic_ss_assignment *)
1538 ((u8 *)ss_assign + sizeof(ATOM_ASIC_SS_ASSIGNMENT));
1542 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1543 sizeof(ATOM_ASIC_SS_ASSIGNMENT_V2);
1544 ss_assign = (union asic_ss_assignment *)((u8 *)&ss_info->info_2.asSpreadSpectrum[0]);
1545 for (i = 0; i < num_indices; i++) {
1546 if ((ss_assign->v2.ucClockIndication == id) &&
1547 (clock <= le32_to_cpu(ss_assign->v2.ulTargetClockRange))) {
1549 le16_to_cpu(ss_assign->v2.usSpreadSpectrumPercentage);
1550 ss->type = ss_assign->v2.ucSpreadSpectrumMode;
1551 ss->rate = le16_to_cpu(ss_assign->v2.usSpreadRateIn10Hz);
1552 ss->percentage_divider = 100;
1554 ((id == ASIC_INTERNAL_ENGINE_SS) ||
1555 (id == ASIC_INTERNAL_MEMORY_SS)))
1559 ss_assign = (union asic_ss_assignment *)
1560 ((u8 *)ss_assign + sizeof(ATOM_ASIC_SS_ASSIGNMENT_V2));
1564 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1565 sizeof(ATOM_ASIC_SS_ASSIGNMENT_V3);
1566 ss_assign = (union asic_ss_assignment *)((u8 *)&ss_info->info_3.asSpreadSpectrum[0]);
1567 for (i = 0; i < num_indices; i++) {
1568 if ((ss_assign->v3.ucClockIndication == id) &&
1569 (clock <= le32_to_cpu(ss_assign->v3.ulTargetClockRange))) {
1571 le16_to_cpu(ss_assign->v3.usSpreadSpectrumPercentage);
1572 ss->type = ss_assign->v3.ucSpreadSpectrumMode;
1573 ss->rate = le16_to_cpu(ss_assign->v3.usSpreadRateIn10Hz);
1574 if (ss_assign->v3.ucSpreadSpectrumMode &
1575 SS_MODE_V3_PERCENTAGE_DIV_BY_1000_MASK)
1576 ss->percentage_divider = 1000;
1578 ss->percentage_divider = 100;
1579 if ((id == ASIC_INTERNAL_ENGINE_SS) ||
1580 (id == ASIC_INTERNAL_MEMORY_SS))
1582 if (rdev->flags & RADEON_IS_IGP)
1583 radeon_atombios_get_igp_ss_overrides(rdev, ss, id);
1586 ss_assign = (union asic_ss_assignment *)
1587 ((u8 *)ss_assign + sizeof(ATOM_ASIC_SS_ASSIGNMENT_V3));
1591 DRM_ERROR("Unsupported ASIC_InternalSS_Info table: %d %d\n", frev, crev);
1600 struct _ATOM_LVDS_INFO info;
1601 struct _ATOM_LVDS_INFO_V12 info_12;
1604 struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct
1608 struct drm_device *dev = encoder->base.dev;
1609 struct radeon_device *rdev = dev->dev_private;
1610 struct radeon_mode_info *mode_info = &rdev->mode_info;
1611 int index = GetIndexIntoMasterTable(DATA, LVDS_Info);
1612 uint16_t data_offset, misc;
1613 union lvds_info *lvds_info;
1615 struct radeon_encoder_atom_dig *lvds = NULL;
1616 int encoder_enum = (encoder->encoder_enum & ENUM_ID_MASK) >> ENUM_ID_SHIFT;
1618 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1619 &frev, &crev, &data_offset)) {
1621 (union lvds_info *)(mode_info->atom_context->bios + data_offset);
1623 kzalloc(sizeof(struct radeon_encoder_atom_dig), GFP_KERNEL);
1628 lvds->native_mode.clock =
1629 le16_to_cpu(lvds_info->info.sLCDTiming.usPixClk) * 10;
1630 lvds->native_mode.hdisplay =
1631 le16_to_cpu(lvds_info->info.sLCDTiming.usHActive);
1632 lvds->native_mode.vdisplay =
1633 le16_to_cpu(lvds_info->info.sLCDTiming.usVActive);
1634 lvds->native_mode.htotal = lvds->native_mode.hdisplay +
1635 le16_to_cpu(lvds_info->info.sLCDTiming.usHBlanking_Time);
1636 lvds->native_mode.hsync_start = lvds->native_mode.hdisplay +
1637 le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncOffset);
1638 lvds->native_mode.hsync_end = lvds->native_mode.hsync_start +
1639 le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncWidth);
1640 lvds->native_mode.vtotal = lvds->native_mode.vdisplay +
1641 le16_to_cpu(lvds_info->info.sLCDTiming.usVBlanking_Time);
1642 lvds->native_mode.vsync_start = lvds->native_mode.vdisplay +
1643 le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncOffset);
1644 lvds->native_mode.vsync_end = lvds->native_mode.vsync_start +
1645 le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth);
1646 lvds->panel_pwr_delay =
1647 le16_to_cpu(lvds_info->info.usOffDelayInMs);
1648 lvds->lcd_misc = lvds_info->info.ucLVDS_Misc;
1650 misc = le16_to_cpu(lvds_info->info.sLCDTiming.susModeMiscInfo.usAccess);
1651 if (misc & ATOM_VSYNC_POLARITY)
1652 lvds->native_mode.flags |= DRM_MODE_FLAG_NVSYNC;
1653 if (misc & ATOM_HSYNC_POLARITY)
1654 lvds->native_mode.flags |= DRM_MODE_FLAG_NHSYNC;
1655 if (misc & ATOM_COMPOSITESYNC)
1656 lvds->native_mode.flags |= DRM_MODE_FLAG_CSYNC;
1657 if (misc & ATOM_INTERLACE)
1658 lvds->native_mode.flags |= DRM_MODE_FLAG_INTERLACE;
1659 if (misc & ATOM_DOUBLE_CLOCK_MODE)
1660 lvds->native_mode.flags |= DRM_MODE_FLAG_DBLSCAN;
1662 lvds->native_mode.width_mm = le16_to_cpu(lvds_info->info.sLCDTiming.usImageHSize);
1663 lvds->native_mode.height_mm = le16_to_cpu(lvds_info->info.sLCDTiming.usImageVSize);
1665 /* set crtc values */
1666 drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V);
1668 lvds->lcd_ss_id = lvds_info->info.ucSS_Id;
1670 encoder->native_mode = lvds->native_mode;
1672 if (encoder_enum == 2)
1675 lvds->linkb = false;
1677 /* parse the lcd record table */
1678 if (le16_to_cpu(lvds_info->info.usModePatchTableOffset)) {
1679 ATOM_FAKE_EDID_PATCH_RECORD *fake_edid_record;
1680 ATOM_PANEL_RESOLUTION_PATCH_RECORD *panel_res_record;
1681 bool bad_record = false;
1684 if ((frev == 1) && (crev < 2))
1686 record = (u8 *)(mode_info->atom_context->bios +
1687 le16_to_cpu(lvds_info->info.usModePatchTableOffset));
1690 record = (u8 *)(mode_info->atom_context->bios +
1692 le16_to_cpu(lvds_info->info.usModePatchTableOffset));
1693 while (*record != ATOM_RECORD_END_TYPE) {
1695 case LCD_MODE_PATCH_RECORD_MODE_TYPE:
1696 record += sizeof(ATOM_PATCH_RECORD_MODE);
1698 case LCD_RTS_RECORD_TYPE:
1699 record += sizeof(ATOM_LCD_RTS_RECORD);
1701 case LCD_CAP_RECORD_TYPE:
1702 record += sizeof(ATOM_LCD_MODE_CONTROL_CAP);
1704 case LCD_FAKE_EDID_PATCH_RECORD_TYPE:
1705 fake_edid_record = (ATOM_FAKE_EDID_PATCH_RECORD *)record;
1706 if (fake_edid_record->ucFakeEDIDLength) {
1709 max((int)EDID_LENGTH, (int)fake_edid_record->ucFakeEDIDLength);
1710 edid = kmalloc(edid_size, GFP_KERNEL);
1712 memcpy((u8 *)edid, (u8 *)&fake_edid_record->ucFakeEDIDString[0],
1713 fake_edid_record->ucFakeEDIDLength);
1715 if (drm_edid_is_valid(edid)) {
1716 rdev->mode_info.bios_hardcoded_edid = edid;
1717 rdev->mode_info.bios_hardcoded_edid_size = edid_size;
1722 record += fake_edid_record->ucFakeEDIDLength ?
1723 fake_edid_record->ucFakeEDIDLength + 2 :
1724 sizeof(ATOM_FAKE_EDID_PATCH_RECORD);
1726 case LCD_PANEL_RESOLUTION_RECORD_TYPE:
1727 panel_res_record = (ATOM_PANEL_RESOLUTION_PATCH_RECORD *)record;
1728 lvds->native_mode.width_mm = panel_res_record->usHSize;
1729 lvds->native_mode.height_mm = panel_res_record->usVSize;
1730 record += sizeof(ATOM_PANEL_RESOLUTION_PATCH_RECORD);
1733 DRM_ERROR("Bad LCD record %d\n", *record);
1745 struct radeon_encoder_primary_dac *
1746 radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder)
1748 struct drm_device *dev = encoder->base.dev;
1749 struct radeon_device *rdev = dev->dev_private;
1750 struct radeon_mode_info *mode_info = &rdev->mode_info;
1751 int index = GetIndexIntoMasterTable(DATA, CompassionateData);
1752 uint16_t data_offset;
1753 struct _COMPASSIONATE_DATA *dac_info;
1756 struct radeon_encoder_primary_dac *p_dac = NULL;
1758 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1759 &frev, &crev, &data_offset)) {
1760 dac_info = (struct _COMPASSIONATE_DATA *)
1761 (mode_info->atom_context->bios + data_offset);
1763 p_dac = kzalloc(sizeof(struct radeon_encoder_primary_dac), GFP_KERNEL);
1768 bg = dac_info->ucDAC1_BG_Adjustment;
1769 dac = dac_info->ucDAC1_DAC_Adjustment;
1770 p_dac->ps2_pdac_adj = (bg << 8) | (dac);
1776 bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index,
1777 struct drm_display_mode *mode)
1779 struct radeon_mode_info *mode_info = &rdev->mode_info;
1780 ATOM_ANALOG_TV_INFO *tv_info;
1781 ATOM_ANALOG_TV_INFO_V1_2 *tv_info_v1_2;
1782 ATOM_DTD_FORMAT *dtd_timings;
1783 int data_index = GetIndexIntoMasterTable(DATA, AnalogTV_Info);
1785 u16 data_offset, misc;
1787 if (!atom_parse_data_header(mode_info->atom_context, data_index, NULL,
1788 &frev, &crev, &data_offset))
1793 tv_info = (ATOM_ANALOG_TV_INFO *)(mode_info->atom_context->bios + data_offset);
1794 if (index >= MAX_SUPPORTED_TV_TIMING)
1797 mode->crtc_htotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Total);
1798 mode->crtc_hdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Disp);
1799 mode->crtc_hsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart);
1800 mode->crtc_hsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart) +
1801 le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncWidth);
1803 mode->crtc_vtotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Total);
1804 mode->crtc_vdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Disp);
1805 mode->crtc_vsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart);
1806 mode->crtc_vsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart) +
1807 le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncWidth);
1810 misc = le16_to_cpu(tv_info->aModeTimings[index].susModeMiscInfo.usAccess);
1811 if (misc & ATOM_VSYNC_POLARITY)
1812 mode->flags |= DRM_MODE_FLAG_NVSYNC;
1813 if (misc & ATOM_HSYNC_POLARITY)
1814 mode->flags |= DRM_MODE_FLAG_NHSYNC;
1815 if (misc & ATOM_COMPOSITESYNC)
1816 mode->flags |= DRM_MODE_FLAG_CSYNC;
1817 if (misc & ATOM_INTERLACE)
1818 mode->flags |= DRM_MODE_FLAG_INTERLACE;
1819 if (misc & ATOM_DOUBLE_CLOCK_MODE)
1820 mode->flags |= DRM_MODE_FLAG_DBLSCAN;
1822 mode->crtc_clock = mode->clock =
1823 le16_to_cpu(tv_info->aModeTimings[index].usPixelClock) * 10;
1826 /* PAL timings appear to have wrong values for totals */
1827 mode->crtc_htotal -= 1;
1828 mode->crtc_vtotal -= 1;
1832 tv_info_v1_2 = (ATOM_ANALOG_TV_INFO_V1_2 *)(mode_info->atom_context->bios + data_offset);
1833 if (index >= MAX_SUPPORTED_TV_TIMING_V1_2)
1836 dtd_timings = &tv_info_v1_2->aModeTimings[index];
1837 mode->crtc_htotal = le16_to_cpu(dtd_timings->usHActive) +
1838 le16_to_cpu(dtd_timings->usHBlanking_Time);
1839 mode->crtc_hdisplay = le16_to_cpu(dtd_timings->usHActive);
1840 mode->crtc_hsync_start = le16_to_cpu(dtd_timings->usHActive) +
1841 le16_to_cpu(dtd_timings->usHSyncOffset);
1842 mode->crtc_hsync_end = mode->crtc_hsync_start +
1843 le16_to_cpu(dtd_timings->usHSyncWidth);
1845 mode->crtc_vtotal = le16_to_cpu(dtd_timings->usVActive) +
1846 le16_to_cpu(dtd_timings->usVBlanking_Time);
1847 mode->crtc_vdisplay = le16_to_cpu(dtd_timings->usVActive);
1848 mode->crtc_vsync_start = le16_to_cpu(dtd_timings->usVActive) +
1849 le16_to_cpu(dtd_timings->usVSyncOffset);
1850 mode->crtc_vsync_end = mode->crtc_vsync_start +
1851 le16_to_cpu(dtd_timings->usVSyncWidth);
1854 misc = le16_to_cpu(dtd_timings->susModeMiscInfo.usAccess);
1855 if (misc & ATOM_VSYNC_POLARITY)
1856 mode->flags |= DRM_MODE_FLAG_NVSYNC;
1857 if (misc & ATOM_HSYNC_POLARITY)
1858 mode->flags |= DRM_MODE_FLAG_NHSYNC;
1859 if (misc & ATOM_COMPOSITESYNC)
1860 mode->flags |= DRM_MODE_FLAG_CSYNC;
1861 if (misc & ATOM_INTERLACE)
1862 mode->flags |= DRM_MODE_FLAG_INTERLACE;
1863 if (misc & ATOM_DOUBLE_CLOCK_MODE)
1864 mode->flags |= DRM_MODE_FLAG_DBLSCAN;
1866 mode->crtc_clock = mode->clock =
1867 le16_to_cpu(dtd_timings->usPixClk) * 10;
1874 radeon_atombios_get_tv_info(struct radeon_device *rdev)
1876 struct radeon_mode_info *mode_info = &rdev->mode_info;
1877 int index = GetIndexIntoMasterTable(DATA, AnalogTV_Info);
1878 uint16_t data_offset;
1880 struct _ATOM_ANALOG_TV_INFO *tv_info;
1881 enum radeon_tv_std tv_std = TV_STD_NTSC;
1883 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1884 &frev, &crev, &data_offset)) {
1886 tv_info = (struct _ATOM_ANALOG_TV_INFO *)
1887 (mode_info->atom_context->bios + data_offset);
1889 switch (tv_info->ucTV_BootUpDefaultStandard) {
1891 tv_std = TV_STD_NTSC;
1892 DRM_DEBUG_KMS("Default TV standard: NTSC\n");
1895 tv_std = TV_STD_NTSC_J;
1896 DRM_DEBUG_KMS("Default TV standard: NTSC-J\n");
1899 tv_std = TV_STD_PAL;
1900 DRM_DEBUG_KMS("Default TV standard: PAL\n");
1903 tv_std = TV_STD_PAL_M;
1904 DRM_DEBUG_KMS("Default TV standard: PAL-M\n");
1907 tv_std = TV_STD_PAL_N;
1908 DRM_DEBUG_KMS("Default TV standard: PAL-N\n");
1911 tv_std = TV_STD_PAL_CN;
1912 DRM_DEBUG_KMS("Default TV standard: PAL-CN\n");
1915 tv_std = TV_STD_PAL_60;
1916 DRM_DEBUG_KMS("Default TV standard: PAL-60\n");
1919 tv_std = TV_STD_SECAM;
1920 DRM_DEBUG_KMS("Default TV standard: SECAM\n");
1923 tv_std = TV_STD_NTSC;
1924 DRM_DEBUG_KMS("Unknown TV standard; defaulting to NTSC\n");
1931 struct radeon_encoder_tv_dac *
1932 radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder)
1934 struct drm_device *dev = encoder->base.dev;
1935 struct radeon_device *rdev = dev->dev_private;
1936 struct radeon_mode_info *mode_info = &rdev->mode_info;
1937 int index = GetIndexIntoMasterTable(DATA, CompassionateData);
1938 uint16_t data_offset;
1939 struct _COMPASSIONATE_DATA *dac_info;
1942 struct radeon_encoder_tv_dac *tv_dac = NULL;
1944 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1945 &frev, &crev, &data_offset)) {
1947 dac_info = (struct _COMPASSIONATE_DATA *)
1948 (mode_info->atom_context->bios + data_offset);
1950 tv_dac = kzalloc(sizeof(struct radeon_encoder_tv_dac), GFP_KERNEL);
1955 bg = dac_info->ucDAC2_CRT2_BG_Adjustment;
1956 dac = dac_info->ucDAC2_CRT2_DAC_Adjustment;
1957 tv_dac->ps2_tvdac_adj = (bg << 16) | (dac << 20);
1959 bg = dac_info->ucDAC2_PAL_BG_Adjustment;
1960 dac = dac_info->ucDAC2_PAL_DAC_Adjustment;
1961 tv_dac->pal_tvdac_adj = (bg << 16) | (dac << 20);
1963 bg = dac_info->ucDAC2_NTSC_BG_Adjustment;
1964 dac = dac_info->ucDAC2_NTSC_DAC_Adjustment;
1965 tv_dac->ntsc_tvdac_adj = (bg << 16) | (dac << 20);
1967 tv_dac->tv_std = radeon_atombios_get_tv_info(rdev);
1972 static const char *thermal_controller_names[] = {
1983 static const char *pp_lib_thermal_controller_names[] = {
2006 struct _ATOM_POWERPLAY_INFO info;
2007 struct _ATOM_POWERPLAY_INFO_V2 info_2;
2008 struct _ATOM_POWERPLAY_INFO_V3 info_3;
2009 struct _ATOM_PPLIB_POWERPLAYTABLE pplib;
2010 struct _ATOM_PPLIB_POWERPLAYTABLE2 pplib2;
2011 struct _ATOM_PPLIB_POWERPLAYTABLE3 pplib3;
2014 union pplib_clock_info {
2015 struct _ATOM_PPLIB_R600_CLOCK_INFO r600;
2016 struct _ATOM_PPLIB_RS780_CLOCK_INFO rs780;
2017 struct _ATOM_PPLIB_EVERGREEN_CLOCK_INFO evergreen;
2018 struct _ATOM_PPLIB_SUMO_CLOCK_INFO sumo;
2019 struct _ATOM_PPLIB_SI_CLOCK_INFO si;
2020 struct _ATOM_PPLIB_CI_CLOCK_INFO ci;
2023 union pplib_power_state {
2024 struct _ATOM_PPLIB_STATE v1;
2025 struct _ATOM_PPLIB_STATE_V2 v2;
2028 static void radeon_atombios_parse_misc_flags_1_3(struct radeon_device *rdev,
2030 u32 misc, u32 misc2)
2032 rdev->pm.power_state[state_index].misc = misc;
2033 rdev->pm.power_state[state_index].misc2 = misc2;
2034 /* order matters! */
2035 if (misc & ATOM_PM_MISCINFO_POWER_SAVING_MODE)
2036 rdev->pm.power_state[state_index].type =
2037 POWER_STATE_TYPE_POWERSAVE;
2038 if (misc & ATOM_PM_MISCINFO_DEFAULT_DC_STATE_ENTRY_TRUE)
2039 rdev->pm.power_state[state_index].type =
2040 POWER_STATE_TYPE_BATTERY;
2041 if (misc & ATOM_PM_MISCINFO_DEFAULT_LOW_DC_STATE_ENTRY_TRUE)
2042 rdev->pm.power_state[state_index].type =
2043 POWER_STATE_TYPE_BATTERY;
2044 if (misc & ATOM_PM_MISCINFO_LOAD_BALANCE_EN)
2045 rdev->pm.power_state[state_index].type =
2046 POWER_STATE_TYPE_BALANCED;
2047 if (misc & ATOM_PM_MISCINFO_3D_ACCELERATION_EN) {
2048 rdev->pm.power_state[state_index].type =
2049 POWER_STATE_TYPE_PERFORMANCE;
2050 rdev->pm.power_state[state_index].flags &=
2051 ~RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2053 if (misc2 & ATOM_PM_MISCINFO2_SYSTEM_AC_LITE_MODE)
2054 rdev->pm.power_state[state_index].type =
2055 POWER_STATE_TYPE_BALANCED;
2056 if (misc & ATOM_PM_MISCINFO_DRIVER_DEFAULT_MODE) {
2057 rdev->pm.power_state[state_index].type =
2058 POWER_STATE_TYPE_DEFAULT;
2059 rdev->pm.default_power_state_index = state_index;
2060 rdev->pm.power_state[state_index].default_clock_mode =
2061 &rdev->pm.power_state[state_index].clock_info[0];
2062 } else if (state_index == 0) {
2063 rdev->pm.power_state[state_index].clock_info[0].flags |=
2064 RADEON_PM_MODE_NO_DISPLAY;
2068 static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev)
2070 struct radeon_mode_info *mode_info = &rdev->mode_info;
2071 u32 misc, misc2 = 0;
2072 int num_modes = 0, i;
2073 int state_index = 0;
2074 struct radeon_i2c_bus_rec i2c_bus;
2075 union power_info *power_info;
2076 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2080 if (!atom_parse_data_header(mode_info->atom_context, index, NULL,
2081 &frev, &crev, &data_offset))
2083 power_info = (union power_info *)(mode_info->atom_context->bios + data_offset);
2085 /* add the i2c bus for thermal/fan chip */
2086 if ((power_info->info.ucOverdriveThermalController > 0) &&
2087 (power_info->info.ucOverdriveThermalController < ARRAY_SIZE(thermal_controller_names))) {
2088 DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2089 thermal_controller_names[power_info->info.ucOverdriveThermalController],
2090 power_info->info.ucOverdriveControllerAddress >> 1);
2091 i2c_bus = radeon_lookup_i2c_gpio(rdev, power_info->info.ucOverdriveI2cLine);
2092 rdev->pm.i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
2093 if (rdev->pm.i2c_bus) {
2094 struct i2c_board_info info = { };
2095 const char *name = thermal_controller_names[power_info->info.
2096 ucOverdriveThermalController];
2097 info.addr = power_info->info.ucOverdriveControllerAddress >> 1;
2098 strlcpy(info.type, name, sizeof(info.type));
2099 i2c_new_device(&rdev->pm.i2c_bus->adapter, &info);
2102 num_modes = power_info->info.ucNumOfPowerModeEntries;
2103 if (num_modes > ATOM_MAX_NUMBEROF_POWER_BLOCK)
2104 num_modes = ATOM_MAX_NUMBEROF_POWER_BLOCK;
2107 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) * num_modes, GFP_KERNEL);
2108 if (!rdev->pm.power_state)
2110 /* last mode is usually default, array is low to high */
2111 for (i = 0; i < num_modes; i++) {
2112 rdev->pm.power_state[state_index].clock_info =
2113 kzalloc(sizeof(struct radeon_pm_clock_info) * 1, GFP_KERNEL);
2114 if (!rdev->pm.power_state[state_index].clock_info)
2116 rdev->pm.power_state[state_index].num_clock_modes = 1;
2117 rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE;
2120 rdev->pm.power_state[state_index].clock_info[0].mclk =
2121 le16_to_cpu(power_info->info.asPowerPlayInfo[i].usMemoryClock);
2122 rdev->pm.power_state[state_index].clock_info[0].sclk =
2123 le16_to_cpu(power_info->info.asPowerPlayInfo[i].usEngineClock);
2124 /* skip invalid modes */
2125 if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) ||
2126 (rdev->pm.power_state[state_index].clock_info[0].sclk == 0))
2128 rdev->pm.power_state[state_index].pcie_lanes =
2129 power_info->info.asPowerPlayInfo[i].ucNumPciELanes;
2130 misc = le32_to_cpu(power_info->info.asPowerPlayInfo[i].ulMiscInfo);
2131 if ((misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) ||
2132 (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)) {
2133 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2135 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio =
2136 radeon_atombios_lookup_gpio(rdev,
2137 power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex);
2138 if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)
2139 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2142 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2144 } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) {
2145 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2147 rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id =
2148 power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex;
2150 rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2151 radeon_atombios_parse_misc_flags_1_3(rdev, state_index, misc, 0);
2155 rdev->pm.power_state[state_index].clock_info[0].mclk =
2156 le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMemoryClock);
2157 rdev->pm.power_state[state_index].clock_info[0].sclk =
2158 le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulEngineClock);
2159 /* skip invalid modes */
2160 if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) ||
2161 (rdev->pm.power_state[state_index].clock_info[0].sclk == 0))
2163 rdev->pm.power_state[state_index].pcie_lanes =
2164 power_info->info_2.asPowerPlayInfo[i].ucNumPciELanes;
2165 misc = le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMiscInfo);
2166 misc2 = le32_to_cpu(power_info->info_2.asPowerPlayInfo[i].ulMiscInfo2);
2167 if ((misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) ||
2168 (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)) {
2169 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2171 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio =
2172 radeon_atombios_lookup_gpio(rdev,
2173 power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex);
2174 if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)
2175 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2178 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2180 } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) {
2181 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2183 rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id =
2184 power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex;
2186 rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2187 radeon_atombios_parse_misc_flags_1_3(rdev, state_index, misc, misc2);
2191 rdev->pm.power_state[state_index].clock_info[0].mclk =
2192 le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMemoryClock);
2193 rdev->pm.power_state[state_index].clock_info[0].sclk =
2194 le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulEngineClock);
2195 /* skip invalid modes */
2196 if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) ||
2197 (rdev->pm.power_state[state_index].clock_info[0].sclk == 0))
2199 rdev->pm.power_state[state_index].pcie_lanes =
2200 power_info->info_3.asPowerPlayInfo[i].ucNumPciELanes;
2201 misc = le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMiscInfo);
2202 misc2 = le32_to_cpu(power_info->info_3.asPowerPlayInfo[i].ulMiscInfo2);
2203 if ((misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT) ||
2204 (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)) {
2205 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2207 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio =
2208 radeon_atombios_lookup_gpio(rdev,
2209 power_info->info_3.asPowerPlayInfo[i].ucVoltageDropIndex);
2210 if (misc & ATOM_PM_MISCINFO_VOLTAGE_DROP_ACTIVE_HIGH)
2211 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2214 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2216 } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) {
2217 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2219 rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id =
2220 power_info->info_3.asPowerPlayInfo[i].ucVoltageDropIndex;
2221 if (misc2 & ATOM_PM_MISCINFO2_VDDCI_DYNAMIC_VOLTAGE_EN) {
2222 rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_enabled =
2224 rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_id =
2225 power_info->info_3.asPowerPlayInfo[i].ucVDDCI_VoltageDropIndex;
2228 rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2229 radeon_atombios_parse_misc_flags_1_3(rdev, state_index, misc, misc2);
2234 /* last mode is usually default */
2235 if (rdev->pm.default_power_state_index == -1) {
2236 rdev->pm.power_state[state_index - 1].type =
2237 POWER_STATE_TYPE_DEFAULT;
2238 rdev->pm.default_power_state_index = state_index - 1;
2239 rdev->pm.power_state[state_index - 1].default_clock_mode =
2240 &rdev->pm.power_state[state_index - 1].clock_info[0];
2241 rdev->pm.power_state[state_index].flags &=
2242 ~RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2243 rdev->pm.power_state[state_index].misc = 0;
2244 rdev->pm.power_state[state_index].misc2 = 0;
2249 static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *rdev,
2250 ATOM_PPLIB_THERMALCONTROLLER *controller)
2252 struct radeon_i2c_bus_rec i2c_bus;
2254 /* add the i2c bus for thermal/fan chip */
2255 if (controller->ucType > 0) {
2256 if (controller->ucFanParameters & ATOM_PP_FANPARAMETERS_NOFAN)
2257 rdev->pm.no_fan = true;
2258 rdev->pm.fan_pulses_per_revolution =
2259 controller->ucFanParameters & ATOM_PP_FANPARAMETERS_TACHOMETER_PULSES_PER_REVOLUTION_MASK;
2260 if (rdev->pm.fan_pulses_per_revolution) {
2261 rdev->pm.fan_min_rpm = controller->ucFanMinRPM;
2262 rdev->pm.fan_max_rpm = controller->ucFanMaxRPM;
2264 if (controller->ucType == ATOM_PP_THERMALCONTROLLER_RV6xx) {
2265 DRM_INFO("Internal thermal controller %s fan control\n",
2266 (controller->ucFanParameters &
2267 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2268 rdev->pm.int_thermal_type = THERMAL_TYPE_RV6XX;
2269 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_RV770) {
2270 DRM_INFO("Internal thermal controller %s fan control\n",
2271 (controller->ucFanParameters &
2272 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2273 rdev->pm.int_thermal_type = THERMAL_TYPE_RV770;
2274 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_EVERGREEN) {
2275 DRM_INFO("Internal thermal controller %s fan control\n",
2276 (controller->ucFanParameters &
2277 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2278 rdev->pm.int_thermal_type = THERMAL_TYPE_EVERGREEN;
2279 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_SUMO) {
2280 DRM_INFO("Internal thermal controller %s fan control\n",
2281 (controller->ucFanParameters &
2282 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2283 rdev->pm.int_thermal_type = THERMAL_TYPE_SUMO;
2284 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_NISLANDS) {
2285 DRM_INFO("Internal thermal controller %s fan control\n",
2286 (controller->ucFanParameters &
2287 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2288 rdev->pm.int_thermal_type = THERMAL_TYPE_NI;
2289 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_SISLANDS) {
2290 DRM_INFO("Internal thermal controller %s fan control\n",
2291 (controller->ucFanParameters &
2292 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2293 rdev->pm.int_thermal_type = THERMAL_TYPE_SI;
2294 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_CISLANDS) {
2295 DRM_INFO("Internal thermal controller %s fan control\n",
2296 (controller->ucFanParameters &
2297 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2298 rdev->pm.int_thermal_type = THERMAL_TYPE_CI;
2299 } else if (controller->ucType == ATOM_PP_THERMALCONTROLLER_KAVERI) {
2300 DRM_INFO("Internal thermal controller %s fan control\n",
2301 (controller->ucFanParameters &
2302 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2303 rdev->pm.int_thermal_type = THERMAL_TYPE_KV;
2304 } else if (controller->ucType ==
2305 ATOM_PP_THERMALCONTROLLER_EXTERNAL_GPIO) {
2306 DRM_INFO("External GPIO thermal controller %s fan control\n",
2307 (controller->ucFanParameters &
2308 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2309 rdev->pm.int_thermal_type = THERMAL_TYPE_EXTERNAL_GPIO;
2310 } else if (controller->ucType ==
2311 ATOM_PP_THERMALCONTROLLER_ADT7473_WITH_INTERNAL) {
2312 DRM_INFO("ADT7473 with internal thermal controller %s fan control\n",
2313 (controller->ucFanParameters &
2314 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2315 rdev->pm.int_thermal_type = THERMAL_TYPE_ADT7473_WITH_INTERNAL;
2316 } else if (controller->ucType ==
2317 ATOM_PP_THERMALCONTROLLER_EMC2103_WITH_INTERNAL) {
2318 DRM_INFO("EMC2103 with internal thermal controller %s fan control\n",
2319 (controller->ucFanParameters &
2320 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2321 rdev->pm.int_thermal_type = THERMAL_TYPE_EMC2103_WITH_INTERNAL;
2322 } else if (controller->ucType < ARRAY_SIZE(pp_lib_thermal_controller_names)) {
2323 DRM_INFO("Possible %s thermal controller at 0x%02x %s fan control\n",
2324 pp_lib_thermal_controller_names[controller->ucType],
2325 controller->ucI2cAddress >> 1,
2326 (controller->ucFanParameters &
2327 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2328 rdev->pm.int_thermal_type = THERMAL_TYPE_EXTERNAL;
2329 i2c_bus = radeon_lookup_i2c_gpio(rdev, controller->ucI2cLine);
2330 rdev->pm.i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
2331 if (rdev->pm.i2c_bus) {
2332 struct i2c_board_info info = { };
2333 const char *name = pp_lib_thermal_controller_names[controller->ucType];
2334 info.addr = controller->ucI2cAddress >> 1;
2335 strlcpy(info.type, name, sizeof(info.type));
2336 i2c_new_device(&rdev->pm.i2c_bus->adapter, &info);
2339 DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n",
2341 controller->ucI2cAddress >> 1,
2342 (controller->ucFanParameters &
2343 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
2348 void radeon_atombios_get_default_voltages(struct radeon_device *rdev,
2349 u16 *vddc, u16 *vddci, u16 *mvdd)
2351 struct radeon_mode_info *mode_info = &rdev->mode_info;
2352 int index = GetIndexIntoMasterTable(DATA, FirmwareInfo);
2355 union firmware_info *firmware_info;
2361 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
2362 &frev, &crev, &data_offset)) {
2364 (union firmware_info *)(mode_info->atom_context->bios +
2366 *vddc = le16_to_cpu(firmware_info->info_14.usBootUpVDDCVoltage);
2367 if ((frev == 2) && (crev >= 2)) {
2368 *vddci = le16_to_cpu(firmware_info->info_22.usBootUpVDDCIVoltage);
2369 *mvdd = le16_to_cpu(firmware_info->info_22.usBootUpMVDDCVoltage);
2374 static void radeon_atombios_parse_pplib_non_clock_info(struct radeon_device *rdev,
2375 int state_index, int mode_index,
2376 struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info)
2379 u32 misc = le32_to_cpu(non_clock_info->ulCapsAndSettings);
2380 u32 misc2 = le16_to_cpu(non_clock_info->usClassification);
2381 u16 vddc, vddci, mvdd;
2383 radeon_atombios_get_default_voltages(rdev, &vddc, &vddci, &mvdd);
2385 rdev->pm.power_state[state_index].misc = misc;
2386 rdev->pm.power_state[state_index].misc2 = misc2;
2387 rdev->pm.power_state[state_index].pcie_lanes =
2388 ((misc & ATOM_PPLIB_PCIE_LINK_WIDTH_MASK) >>
2389 ATOM_PPLIB_PCIE_LINK_WIDTH_SHIFT) + 1;
2390 switch (misc2 & ATOM_PPLIB_CLASSIFICATION_UI_MASK) {
2391 case ATOM_PPLIB_CLASSIFICATION_UI_BATTERY:
2392 rdev->pm.power_state[state_index].type =
2393 POWER_STATE_TYPE_BATTERY;
2395 case ATOM_PPLIB_CLASSIFICATION_UI_BALANCED:
2396 rdev->pm.power_state[state_index].type =
2397 POWER_STATE_TYPE_BALANCED;
2399 case ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE:
2400 rdev->pm.power_state[state_index].type =
2401 POWER_STATE_TYPE_PERFORMANCE;
2403 case ATOM_PPLIB_CLASSIFICATION_UI_NONE:
2404 if (misc2 & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
2405 rdev->pm.power_state[state_index].type =
2406 POWER_STATE_TYPE_PERFORMANCE;
2409 rdev->pm.power_state[state_index].flags = 0;
2410 if (misc & ATOM_PPLIB_SINGLE_DISPLAY_ONLY)
2411 rdev->pm.power_state[state_index].flags |=
2412 RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2413 if (misc2 & ATOM_PPLIB_CLASSIFICATION_BOOT) {
2414 rdev->pm.power_state[state_index].type =
2415 POWER_STATE_TYPE_DEFAULT;
2416 rdev->pm.default_power_state_index = state_index;
2417 rdev->pm.power_state[state_index].default_clock_mode =
2418 &rdev->pm.power_state[state_index].clock_info[mode_index - 1];
2419 if ((rdev->family >= CHIP_BARTS) && !(rdev->flags & RADEON_IS_IGP)) {
2420 /* NI chips post without MC ucode, so default clocks are strobe mode only */
2421 rdev->pm.default_sclk = rdev->pm.power_state[state_index].clock_info[0].sclk;
2422 rdev->pm.default_mclk = rdev->pm.power_state[state_index].clock_info[0].mclk;
2423 rdev->pm.default_vddc = rdev->pm.power_state[state_index].clock_info[0].voltage.voltage;
2424 rdev->pm.default_vddci = rdev->pm.power_state[state_index].clock_info[0].voltage.vddci;
2428 if (ASIC_IS_DCE4(rdev))
2429 radeon_atom_get_max_voltage(rdev,
2430 SET_VOLTAGE_TYPE_ASIC_VDDCI,
2432 /* patch the table values with the default sclk/mclk from firmware info */
2433 for (j = 0; j < mode_index; j++) {
2434 rdev->pm.power_state[state_index].clock_info[j].mclk =
2435 rdev->clock.default_mclk;
2436 rdev->pm.power_state[state_index].clock_info[j].sclk =
2437 rdev->clock.default_sclk;
2439 rdev->pm.power_state[state_index].clock_info[j].voltage.voltage =
2442 rdev->pm.power_state[state_index].clock_info[j].voltage.vddci =
2449 static bool radeon_atombios_parse_pplib_clock_info(struct radeon_device *rdev,
2450 int state_index, int mode_index,
2451 union pplib_clock_info *clock_info)
2456 if (rdev->flags & RADEON_IS_IGP) {
2457 if (rdev->family >= CHIP_PALM) {
2458 sclk = le16_to_cpu(clock_info->sumo.usEngineClockLow);
2459 sclk |= clock_info->sumo.ucEngineClockHigh << 16;
2460 rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk;
2462 sclk = le16_to_cpu(clock_info->rs780.usLowEngineClockLow);
2463 sclk |= clock_info->rs780.ucLowEngineClockHigh << 16;
2464 rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk;
2466 } else if (rdev->family >= CHIP_BONAIRE) {
2467 sclk = le16_to_cpu(clock_info->ci.usEngineClockLow);
2468 sclk |= clock_info->ci.ucEngineClockHigh << 16;
2469 mclk = le16_to_cpu(clock_info->ci.usMemoryClockLow);
2470 mclk |= clock_info->ci.ucMemoryClockHigh << 16;
2471 rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk;
2472 rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk;
2473 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type =
2475 } else if (rdev->family >= CHIP_TAHITI) {
2476 sclk = le16_to_cpu(clock_info->si.usEngineClockLow);
2477 sclk |= clock_info->si.ucEngineClockHigh << 16;
2478 mclk = le16_to_cpu(clock_info->si.usMemoryClockLow);
2479 mclk |= clock_info->si.ucMemoryClockHigh << 16;
2480 rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk;
2481 rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk;
2482 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type =
2484 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage =
2485 le16_to_cpu(clock_info->si.usVDDC);
2486 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.vddci =
2487 le16_to_cpu(clock_info->si.usVDDCI);
2488 } else if (rdev->family >= CHIP_CEDAR) {
2489 sclk = le16_to_cpu(clock_info->evergreen.usEngineClockLow);
2490 sclk |= clock_info->evergreen.ucEngineClockHigh << 16;
2491 mclk = le16_to_cpu(clock_info->evergreen.usMemoryClockLow);
2492 mclk |= clock_info->evergreen.ucMemoryClockHigh << 16;
2493 rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk;
2494 rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk;
2495 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type =
2497 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage =
2498 le16_to_cpu(clock_info->evergreen.usVDDC);
2499 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.vddci =
2500 le16_to_cpu(clock_info->evergreen.usVDDCI);
2502 sclk = le16_to_cpu(clock_info->r600.usEngineClockLow);
2503 sclk |= clock_info->r600.ucEngineClockHigh << 16;
2504 mclk = le16_to_cpu(clock_info->r600.usMemoryClockLow);
2505 mclk |= clock_info->r600.ucMemoryClockHigh << 16;
2506 rdev->pm.power_state[state_index].clock_info[mode_index].mclk = mclk;
2507 rdev->pm.power_state[state_index].clock_info[mode_index].sclk = sclk;
2508 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.type =
2510 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage =
2511 le16_to_cpu(clock_info->r600.usVDDC);
2514 /* patch up vddc if necessary */
2515 switch (rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage) {
2516 case ATOM_VIRTUAL_VOLTAGE_ID0:
2517 case ATOM_VIRTUAL_VOLTAGE_ID1:
2518 case ATOM_VIRTUAL_VOLTAGE_ID2:
2519 case ATOM_VIRTUAL_VOLTAGE_ID3:
2520 case ATOM_VIRTUAL_VOLTAGE_ID4:
2521 case ATOM_VIRTUAL_VOLTAGE_ID5:
2522 case ATOM_VIRTUAL_VOLTAGE_ID6:
2523 case ATOM_VIRTUAL_VOLTAGE_ID7:
2524 if (radeon_atom_get_max_vddc(rdev, VOLTAGE_TYPE_VDDC,
2525 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage,
2527 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage = vddc;
2533 if (rdev->flags & RADEON_IS_IGP) {
2534 /* skip invalid modes */
2535 if (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0)
2538 /* skip invalid modes */
2539 if ((rdev->pm.power_state[state_index].clock_info[mode_index].mclk == 0) ||
2540 (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0))
2546 static int radeon_atombios_parse_power_table_4_5(struct radeon_device *rdev)
2548 struct radeon_mode_info *mode_info = &rdev->mode_info;
2549 struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info;
2550 union pplib_power_state *power_state;
2552 int state_index = 0, mode_index = 0;
2553 union pplib_clock_info *clock_info;
2555 union power_info *power_info;
2556 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2560 if (!atom_parse_data_header(mode_info->atom_context, index, NULL,
2561 &frev, &crev, &data_offset))
2563 power_info = (union power_info *)(mode_info->atom_context->bios + data_offset);
2565 radeon_atombios_add_pplib_thermal_controller(rdev, &power_info->pplib.sThermalController);
2566 if (power_info->pplib.ucNumStates == 0)
2568 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) *
2569 power_info->pplib.ucNumStates, GFP_KERNEL);
2570 if (!rdev->pm.power_state)
2572 /* first mode is usually default, followed by low to high */
2573 for (i = 0; i < power_info->pplib.ucNumStates; i++) {
2575 power_state = (union pplib_power_state *)
2576 (mode_info->atom_context->bios + data_offset +
2577 le16_to_cpu(power_info->pplib.usStateArrayOffset) +
2578 i * power_info->pplib.ucStateEntrySize);
2579 non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *)
2580 (mode_info->atom_context->bios + data_offset +
2581 le16_to_cpu(power_info->pplib.usNonClockInfoArrayOffset) +
2582 (power_state->v1.ucNonClockStateIndex *
2583 power_info->pplib.ucNonClockSize));
2584 rdev->pm.power_state[i].clock_info = kzalloc(sizeof(struct radeon_pm_clock_info) *
2585 ((power_info->pplib.ucStateEntrySize - 1) ?
2586 (power_info->pplib.ucStateEntrySize - 1) : 1),
2588 if (!rdev->pm.power_state[i].clock_info)
2590 if (power_info->pplib.ucStateEntrySize - 1) {
2591 for (j = 0; j < (power_info->pplib.ucStateEntrySize - 1); j++) {
2592 clock_info = (union pplib_clock_info *)
2593 (mode_info->atom_context->bios + data_offset +
2594 le16_to_cpu(power_info->pplib.usClockInfoArrayOffset) +
2595 (power_state->v1.ucClockStateIndices[j] *
2596 power_info->pplib.ucClockInfoSize));
2597 valid = radeon_atombios_parse_pplib_clock_info(rdev,
2598 state_index, mode_index,
2604 rdev->pm.power_state[state_index].clock_info[0].mclk =
2605 rdev->clock.default_mclk;
2606 rdev->pm.power_state[state_index].clock_info[0].sclk =
2607 rdev->clock.default_sclk;
2610 rdev->pm.power_state[state_index].num_clock_modes = mode_index;
2612 radeon_atombios_parse_pplib_non_clock_info(rdev, state_index, mode_index,
2617 /* if multiple clock modes, mark the lowest as no display */
2618 for (i = 0; i < state_index; i++) {
2619 if (rdev->pm.power_state[i].num_clock_modes > 1)
2620 rdev->pm.power_state[i].clock_info[0].flags |=
2621 RADEON_PM_MODE_NO_DISPLAY;
2623 /* first mode is usually default */
2624 if (rdev->pm.default_power_state_index == -1) {
2625 rdev->pm.power_state[0].type =
2626 POWER_STATE_TYPE_DEFAULT;
2627 rdev->pm.default_power_state_index = 0;
2628 rdev->pm.power_state[0].default_clock_mode =
2629 &rdev->pm.power_state[0].clock_info[0];
2634 static int radeon_atombios_parse_power_table_6(struct radeon_device *rdev)
2636 struct radeon_mode_info *mode_info = &rdev->mode_info;
2637 struct _ATOM_PPLIB_NONCLOCK_INFO *non_clock_info;
2638 union pplib_power_state *power_state;
2639 int i, j, non_clock_array_index, clock_array_index;
2640 int state_index = 0, mode_index = 0;
2641 union pplib_clock_info *clock_info;
2642 struct _StateArray *state_array;
2643 struct _ClockInfoArray *clock_info_array;
2644 struct _NonClockInfoArray *non_clock_info_array;
2646 union power_info *power_info;
2647 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2650 u8 *power_state_offset;
2652 if (!atom_parse_data_header(mode_info->atom_context, index, NULL,
2653 &frev, &crev, &data_offset))
2655 power_info = (union power_info *)(mode_info->atom_context->bios + data_offset);
2657 radeon_atombios_add_pplib_thermal_controller(rdev, &power_info->pplib.sThermalController);
2658 state_array = (struct _StateArray *)
2659 (mode_info->atom_context->bios + data_offset +
2660 le16_to_cpu(power_info->pplib.usStateArrayOffset));
2661 clock_info_array = (struct _ClockInfoArray *)
2662 (mode_info->atom_context->bios + data_offset +
2663 le16_to_cpu(power_info->pplib.usClockInfoArrayOffset));
2664 non_clock_info_array = (struct _NonClockInfoArray *)
2665 (mode_info->atom_context->bios + data_offset +
2666 le16_to_cpu(power_info->pplib.usNonClockInfoArrayOffset));
2667 if (state_array->ucNumEntries == 0)
2669 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) *
2670 state_array->ucNumEntries, GFP_KERNEL);
2671 if (!rdev->pm.power_state)
2673 power_state_offset = (u8 *)state_array->states;
2674 for (i = 0; i < state_array->ucNumEntries; i++) {
2676 power_state = (union pplib_power_state *)power_state_offset;
2677 non_clock_array_index = power_state->v2.nonClockInfoIndex;
2678 non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *)
2679 &non_clock_info_array->nonClockInfo[non_clock_array_index];
2680 rdev->pm.power_state[i].clock_info = kzalloc(sizeof(struct radeon_pm_clock_info) *
2681 (power_state->v2.ucNumDPMLevels ?
2682 power_state->v2.ucNumDPMLevels : 1),
2684 if (!rdev->pm.power_state[i].clock_info)
2686 if (power_state->v2.ucNumDPMLevels) {
2687 for (j = 0; j < power_state->v2.ucNumDPMLevels; j++) {
2688 clock_array_index = power_state->v2.clockInfoIndex[j];
2689 clock_info = (union pplib_clock_info *)
2690 &clock_info_array->clockInfo[clock_array_index * clock_info_array->ucEntrySize];
2691 valid = radeon_atombios_parse_pplib_clock_info(rdev,
2692 state_index, mode_index,
2698 rdev->pm.power_state[state_index].clock_info[0].mclk =
2699 rdev->clock.default_mclk;
2700 rdev->pm.power_state[state_index].clock_info[0].sclk =
2701 rdev->clock.default_sclk;
2704 rdev->pm.power_state[state_index].num_clock_modes = mode_index;
2706 radeon_atombios_parse_pplib_non_clock_info(rdev, state_index, mode_index,
2710 power_state_offset += 2 + power_state->v2.ucNumDPMLevels;
2712 /* if multiple clock modes, mark the lowest as no display */
2713 for (i = 0; i < state_index; i++) {
2714 if (rdev->pm.power_state[i].num_clock_modes > 1)
2715 rdev->pm.power_state[i].clock_info[0].flags |=
2716 RADEON_PM_MODE_NO_DISPLAY;
2718 /* first mode is usually default */
2719 if (rdev->pm.default_power_state_index == -1) {
2720 rdev->pm.power_state[0].type =
2721 POWER_STATE_TYPE_DEFAULT;
2722 rdev->pm.default_power_state_index = 0;
2723 rdev->pm.power_state[0].default_clock_mode =
2724 &rdev->pm.power_state[0].clock_info[0];
2729 void radeon_atombios_get_power_modes(struct radeon_device *rdev)
2731 struct radeon_mode_info *mode_info = &rdev->mode_info;
2732 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2735 int state_index = 0;
2737 rdev->pm.default_power_state_index = -1;
2739 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
2740 &frev, &crev, &data_offset)) {
2745 state_index = radeon_atombios_parse_power_table_1_3(rdev);
2749 state_index = radeon_atombios_parse_power_table_4_5(rdev);
2752 state_index = radeon_atombios_parse_power_table_6(rdev);
2759 if (state_index == 0) {
2760 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state), GFP_KERNEL);
2761 if (rdev->pm.power_state) {
2762 rdev->pm.power_state[0].clock_info =
2763 kzalloc(sizeof(struct radeon_pm_clock_info) * 1, GFP_KERNEL);
2764 if (rdev->pm.power_state[0].clock_info) {
2765 /* add the default mode */
2766 rdev->pm.power_state[state_index].type =
2767 POWER_STATE_TYPE_DEFAULT;
2768 rdev->pm.power_state[state_index].num_clock_modes = 1;
2769 rdev->pm.power_state[state_index].clock_info[0].mclk = rdev->clock.default_mclk;
2770 rdev->pm.power_state[state_index].clock_info[0].sclk = rdev->clock.default_sclk;
2771 rdev->pm.power_state[state_index].default_clock_mode =
2772 &rdev->pm.power_state[state_index].clock_info[0];
2773 rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE;
2774 rdev->pm.power_state[state_index].pcie_lanes = 16;
2775 rdev->pm.default_power_state_index = state_index;
2776 rdev->pm.power_state[state_index].flags = 0;
2782 rdev->pm.num_power_states = state_index;
2784 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
2785 rdev->pm.current_clock_mode_index = 0;
2786 if (rdev->pm.default_power_state_index >= 0)
2787 rdev->pm.current_vddc =
2788 rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage;
2790 rdev->pm.current_vddc = 0;
2793 union get_clock_dividers {
2794 struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS v1;
2795 struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V2 v2;
2796 struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V3 v3;
2797 struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V4 v4;
2798 struct _COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V5 v5;
2799 struct _COMPUTE_GPU_CLOCK_INPUT_PARAMETERS_V1_6 v6_in;
2800 struct _COMPUTE_GPU_CLOCK_OUTPUT_PARAMETERS_V1_6 v6_out;
2803 int radeon_atom_get_clock_dividers(struct radeon_device *rdev,
2807 struct atom_clock_dividers *dividers)
2809 union get_clock_dividers args;
2810 int index = GetIndexIntoMasterTable(COMMAND, ComputeMemoryEnginePLL);
2813 memset(&args, 0, sizeof(args));
2814 memset(dividers, 0, sizeof(struct atom_clock_dividers));
2816 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
2822 args.v1.ucAction = clock_type;
2823 args.v1.ulClock = cpu_to_le32(clock); /* 10 khz */
2825 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2827 dividers->post_div = args.v1.ucPostDiv;
2828 dividers->fb_div = args.v1.ucFbDiv;
2829 dividers->enable_post_div = true;
2834 /* r6xx, r7xx, evergreen, ni, si */
2835 if (rdev->family <= CHIP_RV770) {
2836 args.v2.ucAction = clock_type;
2837 args.v2.ulClock = cpu_to_le32(clock); /* 10 khz */
2839 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2841 dividers->post_div = args.v2.ucPostDiv;
2842 dividers->fb_div = le16_to_cpu(args.v2.usFbDiv);
2843 dividers->ref_div = args.v2.ucAction;
2844 if (rdev->family == CHIP_RV770) {
2845 dividers->enable_post_div = (le32_to_cpu(args.v2.ulClock) & (1 << 24)) ?
2847 dividers->vco_mode = (le32_to_cpu(args.v2.ulClock) & (1 << 25)) ? 1 : 0;
2849 dividers->enable_post_div = (dividers->fb_div & 1) ? true : false;
2851 if (clock_type == COMPUTE_ENGINE_PLL_PARAM) {
2852 args.v3.ulClockParams = cpu_to_le32((clock_type << 24) | clock);
2854 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2856 dividers->post_div = args.v3.ucPostDiv;
2857 dividers->enable_post_div = (args.v3.ucCntlFlag &
2858 ATOM_PLL_CNTL_FLAG_PLL_POST_DIV_EN) ? true : false;
2859 dividers->enable_dithen = (args.v3.ucCntlFlag &
2860 ATOM_PLL_CNTL_FLAG_FRACTION_DISABLE) ? false : true;
2861 dividers->whole_fb_div = le16_to_cpu(args.v3.ulFbDiv.usFbDiv);
2862 dividers->frac_fb_div = le16_to_cpu(args.v3.ulFbDiv.usFbDivFrac);
2863 dividers->ref_div = args.v3.ucRefDiv;
2864 dividers->vco_mode = (args.v3.ucCntlFlag &
2865 ATOM_PLL_CNTL_FLAG_MPLL_VCO_MODE) ? 1 : 0;
2867 /* for SI we use ComputeMemoryClockParam for memory plls */
2868 if (rdev->family >= CHIP_TAHITI)
2870 args.v5.ulClockParams = cpu_to_le32((clock_type << 24) | clock);
2872 args.v5.ucInputFlag = ATOM_PLL_INPUT_FLAG_PLL_STROBE_MODE_EN;
2874 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2876 dividers->post_div = args.v5.ucPostDiv;
2877 dividers->enable_post_div = (args.v5.ucCntlFlag &
2878 ATOM_PLL_CNTL_FLAG_PLL_POST_DIV_EN) ? true : false;
2879 dividers->enable_dithen = (args.v5.ucCntlFlag &
2880 ATOM_PLL_CNTL_FLAG_FRACTION_DISABLE) ? false : true;
2881 dividers->whole_fb_div = le16_to_cpu(args.v5.ulFbDiv.usFbDiv);
2882 dividers->frac_fb_div = le16_to_cpu(args.v5.ulFbDiv.usFbDivFrac);
2883 dividers->ref_div = args.v5.ucRefDiv;
2884 dividers->vco_mode = (args.v5.ucCntlFlag &
2885 ATOM_PLL_CNTL_FLAG_MPLL_VCO_MODE) ? 1 : 0;
2891 args.v4.ulClock = cpu_to_le32(clock); /* 10 khz */
2893 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2895 dividers->post_divider = dividers->post_div = args.v4.ucPostDiv;
2896 dividers->real_clock = le32_to_cpu(args.v4.ulClock);
2900 /* COMPUTE_GPUCLK_INPUT_FLAG_DEFAULT_GPUCLK, COMPUTE_GPUCLK_INPUT_FLAG_SCLK */
2901 args.v6_in.ulClock.ulComputeClockFlag = clock_type;
2902 args.v6_in.ulClock.ulClockFreq = cpu_to_le32(clock); /* 10 khz */
2904 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2906 dividers->whole_fb_div = le16_to_cpu(args.v6_out.ulFbDiv.usFbDiv);
2907 dividers->frac_fb_div = le16_to_cpu(args.v6_out.ulFbDiv.usFbDivFrac);
2908 dividers->ref_div = args.v6_out.ucPllRefDiv;
2909 dividers->post_div = args.v6_out.ucPllPostDiv;
2910 dividers->flags = args.v6_out.ucPllCntlFlag;
2911 dividers->real_clock = le32_to_cpu(args.v6_out.ulClock.ulClock);
2912 dividers->post_divider = args.v6_out.ulClock.ucPostDiv;
2920 int radeon_atom_get_memory_pll_dividers(struct radeon_device *rdev,
2923 struct atom_mpll_param *mpll_param)
2925 COMPUTE_MEMORY_CLOCK_PARAM_PARAMETERS_V2_1 args;
2926 int index = GetIndexIntoMasterTable(COMMAND, ComputeMemoryClockParam);
2929 memset(&args, 0, sizeof(args));
2930 memset(mpll_param, 0, sizeof(struct atom_mpll_param));
2932 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
2940 args.ulClock = cpu_to_le32(clock); /* 10 khz */
2941 args.ucInputFlag = 0;
2943 args.ucInputFlag |= MPLL_INPUT_FLAG_STROBE_MODE_EN;
2945 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2947 mpll_param->clkfrac = le16_to_cpu(args.ulFbDiv.usFbDivFrac);
2948 mpll_param->clkf = le16_to_cpu(args.ulFbDiv.usFbDiv);
2949 mpll_param->post_div = args.ucPostDiv;
2950 mpll_param->dll_speed = args.ucDllSpeed;
2951 mpll_param->bwcntl = args.ucBWCntl;
2952 mpll_param->vco_mode =
2953 (args.ucPllCntlFlag & MPLL_CNTL_FLAG_VCO_MODE_MASK);
2954 mpll_param->yclk_sel =
2955 (args.ucPllCntlFlag & MPLL_CNTL_FLAG_BYPASS_DQ_PLL) ? 1 : 0;
2957 (args.ucPllCntlFlag & MPLL_CNTL_FLAG_QDR_ENABLE) ? 1 : 0;
2958 mpll_param->half_rate =
2959 (args.ucPllCntlFlag & MPLL_CNTL_FLAG_AD_HALF_RATE) ? 1 : 0;
2971 void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable)
2973 DYNAMIC_CLOCK_GATING_PS_ALLOCATION args;
2974 int index = GetIndexIntoMasterTable(COMMAND, DynamicClockGating);
2976 args.ucEnable = enable;
2978 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2981 uint32_t radeon_atom_get_engine_clock(struct radeon_device *rdev)
2983 GET_ENGINE_CLOCK_PS_ALLOCATION args;
2984 int index = GetIndexIntoMasterTable(COMMAND, GetEngineClock);
2986 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2987 return le32_to_cpu(args.ulReturnEngineClock);
2990 uint32_t radeon_atom_get_memory_clock(struct radeon_device *rdev)
2992 GET_MEMORY_CLOCK_PS_ALLOCATION args;
2993 int index = GetIndexIntoMasterTable(COMMAND, GetMemoryClock);
2995 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2996 return le32_to_cpu(args.ulReturnMemoryClock);
2999 void radeon_atom_set_engine_clock(struct radeon_device *rdev,
3002 SET_ENGINE_CLOCK_PS_ALLOCATION args;
3003 int index = GetIndexIntoMasterTable(COMMAND, SetEngineClock);
3005 args.ulTargetEngineClock = cpu_to_le32(eng_clock); /* 10 khz */
3007 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3010 void radeon_atom_set_memory_clock(struct radeon_device *rdev,
3013 SET_MEMORY_CLOCK_PS_ALLOCATION args;
3014 int index = GetIndexIntoMasterTable(COMMAND, SetMemoryClock);
3016 if (rdev->flags & RADEON_IS_IGP)
3019 args.ulTargetMemoryClock = cpu_to_le32(mem_clock); /* 10 khz */
3021 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3024 void radeon_atom_set_engine_dram_timings(struct radeon_device *rdev,
3025 u32 eng_clock, u32 mem_clock)
3027 SET_ENGINE_CLOCK_PS_ALLOCATION args;
3028 int index = GetIndexIntoMasterTable(COMMAND, DynamicMemorySettings);
3031 memset(&args, 0, sizeof(args));
3033 tmp = eng_clock & SET_CLOCK_FREQ_MASK;
3034 tmp |= (COMPUTE_ENGINE_PLL_PARAM << 24);
3036 args.ulTargetEngineClock = cpu_to_le32(tmp);
3038 args.sReserved.ulClock = cpu_to_le32(mem_clock & SET_CLOCK_FREQ_MASK);
3040 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3043 void radeon_atom_update_memory_dll(struct radeon_device *rdev,
3047 int index = GetIndexIntoMasterTable(COMMAND, DynamicMemorySettings);
3049 args = cpu_to_le32(mem_clock); /* 10 khz */
3051 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3054 void radeon_atom_set_ac_timing(struct radeon_device *rdev,
3057 SET_MEMORY_CLOCK_PS_ALLOCATION args;
3058 int index = GetIndexIntoMasterTable(COMMAND, DynamicMemorySettings);
3059 u32 tmp = mem_clock | (COMPUTE_MEMORY_PLL_PARAM << 24);
3061 args.ulTargetMemoryClock = cpu_to_le32(tmp); /* 10 khz */
3063 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3067 struct _SET_VOLTAGE_PS_ALLOCATION alloc;
3068 struct _SET_VOLTAGE_PARAMETERS v1;
3069 struct _SET_VOLTAGE_PARAMETERS_V2 v2;
3070 struct _SET_VOLTAGE_PARAMETERS_V1_3 v3;
3073 void radeon_atom_set_voltage(struct radeon_device *rdev, u16 voltage_level, u8 voltage_type)
3075 union set_voltage args;
3076 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3077 u8 frev, crev, volt_index = voltage_level;
3079 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3082 /* 0xff01 is a flag rather then an actual voltage */
3083 if (voltage_level == 0xff01)
3088 args.v1.ucVoltageType = voltage_type;
3089 args.v1.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_ALL_SOURCE;
3090 args.v1.ucVoltageIndex = volt_index;
3093 args.v2.ucVoltageType = voltage_type;
3094 args.v2.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_SET_VOLTAGE;
3095 args.v2.usVoltageLevel = cpu_to_le16(voltage_level);
3098 args.v3.ucVoltageType = voltage_type;
3099 args.v3.ucVoltageMode = ATOM_SET_VOLTAGE;
3100 args.v3.usVoltageLevel = cpu_to_le16(voltage_level);
3103 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3107 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3110 int radeon_atom_get_max_vddc(struct radeon_device *rdev, u8 voltage_type,
3111 u16 voltage_id, u16 *voltage)
3113 union set_voltage args;
3114 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3117 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3124 args.v2.ucVoltageType = SET_VOLTAGE_GET_MAX_VOLTAGE;
3125 args.v2.ucVoltageMode = 0;
3126 args.v2.usVoltageLevel = 0;
3128 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3130 *voltage = le16_to_cpu(args.v2.usVoltageLevel);
3133 args.v3.ucVoltageType = voltage_type;
3134 args.v3.ucVoltageMode = ATOM_GET_VOLTAGE_LEVEL;
3135 args.v3.usVoltageLevel = cpu_to_le16(voltage_id);
3137 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3139 *voltage = le16_to_cpu(args.v3.usVoltageLevel);
3142 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3149 int radeon_atom_get_leakage_vddc_based_on_leakage_idx(struct radeon_device *rdev,
3153 return radeon_atom_get_max_vddc(rdev, VOLTAGE_TYPE_VDDC, leakage_idx, voltage);
3156 int radeon_atom_get_leakage_id_from_vbios(struct radeon_device *rdev,
3159 union set_voltage args;
3160 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3163 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3169 args.v3.ucVoltageType = 0;
3170 args.v3.ucVoltageMode = ATOM_GET_LEAKAGE_ID;
3171 args.v3.usVoltageLevel = 0;
3173 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3175 *leakage_id = le16_to_cpu(args.v3.usVoltageLevel);
3178 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3185 int radeon_atom_get_leakage_vddc_based_on_leakage_params(struct radeon_device *rdev,
3186 u16 *vddc, u16 *vddci,
3187 u16 virtual_voltage_id,
3188 u16 vbios_voltage_id)
3190 int index = GetIndexIntoMasterTable(DATA, ASIC_ProfilingInfo);
3192 u16 data_offset, size;
3194 ATOM_ASIC_PROFILING_INFO_V2_1 *profile;
3195 u16 *leakage_bin, *vddc_id_buf, *vddc_buf, *vddci_id_buf, *vddci_buf;
3200 if (!atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3201 &frev, &crev, &data_offset))
3204 profile = (ATOM_ASIC_PROFILING_INFO_V2_1 *)
3205 (rdev->mode_info.atom_context->bios + data_offset);
3213 if (size < sizeof(ATOM_ASIC_PROFILING_INFO_V2_1))
3215 leakage_bin = (u16 *)
3216 (rdev->mode_info.atom_context->bios + data_offset +
3217 le16_to_cpu(profile->usLeakageBinArrayOffset));
3218 vddc_id_buf = (u16 *)
3219 (rdev->mode_info.atom_context->bios + data_offset +
3220 le16_to_cpu(profile->usElbVDDC_IdArrayOffset));
3222 (rdev->mode_info.atom_context->bios + data_offset +
3223 le16_to_cpu(profile->usElbVDDC_LevelArrayOffset));
3224 vddci_id_buf = (u16 *)
3225 (rdev->mode_info.atom_context->bios + data_offset +
3226 le16_to_cpu(profile->usElbVDDCI_IdArrayOffset));
3228 (rdev->mode_info.atom_context->bios + data_offset +
3229 le16_to_cpu(profile->usElbVDDCI_LevelArrayOffset));
3231 if (profile->ucElbVDDC_Num > 0) {
3232 for (i = 0; i < profile->ucElbVDDC_Num; i++) {
3233 if (vddc_id_buf[i] == virtual_voltage_id) {
3234 for (j = 0; j < profile->ucLeakageBinNum; j++) {
3235 if (vbios_voltage_id <= leakage_bin[j]) {
3236 *vddc = vddc_buf[j * profile->ucElbVDDC_Num + i];
3244 if (profile->ucElbVDDCI_Num > 0) {
3245 for (i = 0; i < profile->ucElbVDDCI_Num; i++) {
3246 if (vddci_id_buf[i] == virtual_voltage_id) {
3247 for (j = 0; j < profile->ucLeakageBinNum; j++) {
3248 if (vbios_voltage_id <= leakage_bin[j]) {
3249 *vddci = vddci_buf[j * profile->ucElbVDDCI_Num + i];
3259 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3264 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3271 union get_voltage_info {
3272 struct _GET_VOLTAGE_INFO_INPUT_PARAMETER_V1_2 in;
3273 struct _GET_EVV_VOLTAGE_INFO_OUTPUT_PARAMETER_V1_2 evv_out;
3276 int radeon_atom_get_voltage_evv(struct radeon_device *rdev,
3277 u16 virtual_voltage_id,
3280 int index = GetIndexIntoMasterTable(COMMAND, GetVoltageInfo);
3282 u32 count = rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.count;
3283 union get_voltage_info args;
3285 for (entry_id = 0; entry_id < count; entry_id++) {
3286 if (rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries[entry_id].v ==
3291 if (entry_id >= count)
3294 args.in.ucVoltageType = VOLTAGE_TYPE_VDDC;
3295 args.in.ucVoltageMode = ATOM_GET_VOLTAGE_EVV_VOLTAGE;
3296 args.in.usVoltageLevel = cpu_to_le16(virtual_voltage_id);
3297 args.in.ulSCLKFreq =
3298 cpu_to_le32(rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries[entry_id].clk);
3300 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3302 *voltage = le16_to_cpu(args.evv_out.usVoltageLevel);
3307 int radeon_atom_get_voltage_gpio_settings(struct radeon_device *rdev,
3308 u16 voltage_level, u8 voltage_type,
3309 u32 *gpio_value, u32 *gpio_mask)
3311 union set_voltage args;
3312 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3315 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3322 args.v2.ucVoltageType = voltage_type;
3323 args.v2.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_GET_GPIOMASK;
3324 args.v2.usVoltageLevel = cpu_to_le16(voltage_level);
3326 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3328 *gpio_mask = le32_to_cpu(*(u32 *)&args.v2);
3330 args.v2.ucVoltageType = voltage_type;
3331 args.v2.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_GET_GPIOVAL;
3332 args.v2.usVoltageLevel = cpu_to_le16(voltage_level);
3334 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3336 *gpio_value = le32_to_cpu(*(u32 *)&args.v2);
3339 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3346 union voltage_object_info {
3347 struct _ATOM_VOLTAGE_OBJECT_INFO v1;
3348 struct _ATOM_VOLTAGE_OBJECT_INFO_V2 v2;
3349 struct _ATOM_VOLTAGE_OBJECT_INFO_V3_1 v3;
3352 union voltage_object {
3353 struct _ATOM_VOLTAGE_OBJECT v1;
3354 struct _ATOM_VOLTAGE_OBJECT_V2 v2;
3355 union _ATOM_VOLTAGE_OBJECT_V3 v3;
3358 static ATOM_VOLTAGE_OBJECT *atom_lookup_voltage_object_v1(ATOM_VOLTAGE_OBJECT_INFO *v1,
3361 u32 size = le16_to_cpu(v1->sHeader.usStructureSize);
3362 u32 offset = offsetof(ATOM_VOLTAGE_OBJECT_INFO, asVoltageObj[0]);
3363 u8 *start = (u8 *)v1;
3365 while (offset < size) {
3366 ATOM_VOLTAGE_OBJECT *vo = (ATOM_VOLTAGE_OBJECT *)(start + offset);
3367 if (vo->ucVoltageType == voltage_type)
3369 offset += offsetof(ATOM_VOLTAGE_OBJECT, asFormula.ucVIDAdjustEntries) +
3370 vo->asFormula.ucNumOfVoltageEntries;
3375 static ATOM_VOLTAGE_OBJECT_V2 *atom_lookup_voltage_object_v2(ATOM_VOLTAGE_OBJECT_INFO_V2 *v2,
3378 u32 size = le16_to_cpu(v2->sHeader.usStructureSize);
3379 u32 offset = offsetof(ATOM_VOLTAGE_OBJECT_INFO_V2, asVoltageObj[0]);
3380 u8 *start = (u8*)v2;
3382 while (offset < size) {
3383 ATOM_VOLTAGE_OBJECT_V2 *vo = (ATOM_VOLTAGE_OBJECT_V2 *)(start + offset);
3384 if (vo->ucVoltageType == voltage_type)
3386 offset += offsetof(ATOM_VOLTAGE_OBJECT_V2, asFormula.asVIDAdjustEntries) +
3387 (vo->asFormula.ucNumOfVoltageEntries * sizeof(VOLTAGE_LUT_ENTRY));
3392 static ATOM_VOLTAGE_OBJECT_V3 *atom_lookup_voltage_object_v3(ATOM_VOLTAGE_OBJECT_INFO_V3_1 *v3,
3393 u8 voltage_type, u8 voltage_mode)
3395 u32 size = le16_to_cpu(v3->sHeader.usStructureSize);
3396 u32 offset = offsetof(ATOM_VOLTAGE_OBJECT_INFO_V3_1, asVoltageObj[0]);
3397 u8 *start = (u8*)v3;
3399 while (offset < size) {
3400 ATOM_VOLTAGE_OBJECT_V3 *vo = (ATOM_VOLTAGE_OBJECT_V3 *)(start + offset);
3401 if ((vo->asGpioVoltageObj.sHeader.ucVoltageType == voltage_type) &&
3402 (vo->asGpioVoltageObj.sHeader.ucVoltageMode == voltage_mode))
3404 offset += le16_to_cpu(vo->asGpioVoltageObj.sHeader.usSize);
3410 radeon_atom_is_voltage_gpio(struct radeon_device *rdev,
3411 u8 voltage_type, u8 voltage_mode)
3413 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3415 u16 data_offset, size;
3416 union voltage_object_info *voltage_info;
3417 union voltage_object *voltage_object = NULL;
3419 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3420 &frev, &crev, &data_offset)) {
3421 voltage_info = (union voltage_object_info *)
3422 (rdev->mode_info.atom_context->bios + data_offset);
3429 voltage_object = (union voltage_object *)
3430 atom_lookup_voltage_object_v1(&voltage_info->v1, voltage_type);
3431 if (voltage_object &&
3432 (voltage_object->v1.asControl.ucVoltageControlId == VOLTAGE_CONTROLLED_BY_GPIO))
3436 voltage_object = (union voltage_object *)
3437 atom_lookup_voltage_object_v2(&voltage_info->v2, voltage_type);
3438 if (voltage_object &&
3439 (voltage_object->v2.asControl.ucVoltageControlId == VOLTAGE_CONTROLLED_BY_GPIO))
3443 DRM_ERROR("unknown voltage object table\n");
3450 if (atom_lookup_voltage_object_v3(&voltage_info->v3,
3451 voltage_type, voltage_mode))
3455 DRM_ERROR("unknown voltage object table\n");
3460 DRM_ERROR("unknown voltage object table\n");
3468 int radeon_atom_get_svi2_info(struct radeon_device *rdev,
3470 u8 *svd_gpio_id, u8 *svc_gpio_id)
3472 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3474 u16 data_offset, size;
3475 union voltage_object_info *voltage_info;
3476 union voltage_object *voltage_object = NULL;
3478 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3479 &frev, &crev, &data_offset)) {
3480 voltage_info = (union voltage_object_info *)
3481 (rdev->mode_info.atom_context->bios + data_offset);
3487 voltage_object = (union voltage_object *)
3488 atom_lookup_voltage_object_v3(&voltage_info->v3,
3491 if (voltage_object) {
3492 *svd_gpio_id = voltage_object->v3.asSVID2Obj.ucSVDGpioId;
3493 *svc_gpio_id = voltage_object->v3.asSVID2Obj.ucSVCGpioId;
3499 DRM_ERROR("unknown voltage object table\n");
3504 DRM_ERROR("unknown voltage object table\n");
3512 int radeon_atom_get_max_voltage(struct radeon_device *rdev,
3513 u8 voltage_type, u16 *max_voltage)
3515 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3517 u16 data_offset, size;
3518 union voltage_object_info *voltage_info;
3519 union voltage_object *voltage_object = NULL;
3521 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3522 &frev, &crev, &data_offset)) {
3523 voltage_info = (union voltage_object_info *)
3524 (rdev->mode_info.atom_context->bios + data_offset);
3528 voltage_object = (union voltage_object *)
3529 atom_lookup_voltage_object_v1(&voltage_info->v1, voltage_type);
3530 if (voltage_object) {
3531 ATOM_VOLTAGE_FORMULA *formula =
3532 &voltage_object->v1.asFormula;
3533 if (formula->ucFlag & 1)
3535 le16_to_cpu(formula->usVoltageBaseLevel) +
3536 formula->ucNumOfVoltageEntries / 2 *
3537 le16_to_cpu(formula->usVoltageStep);
3540 le16_to_cpu(formula->usVoltageBaseLevel) +
3541 (formula->ucNumOfVoltageEntries - 1) *
3542 le16_to_cpu(formula->usVoltageStep);
3547 voltage_object = (union voltage_object *)
3548 atom_lookup_voltage_object_v2(&voltage_info->v2, voltage_type);
3549 if (voltage_object) {
3550 ATOM_VOLTAGE_FORMULA_V2 *formula =
3551 &voltage_object->v2.asFormula;
3552 if (formula->ucNumOfVoltageEntries) {
3553 VOLTAGE_LUT_ENTRY *lut = (VOLTAGE_LUT_ENTRY *)
3554 ((u8 *)&formula->asVIDAdjustEntries[0] +
3555 (sizeof(VOLTAGE_LUT_ENTRY) * (formula->ucNumOfVoltageEntries - 1)));
3557 le16_to_cpu(lut->usVoltageValue);
3563 DRM_ERROR("unknown voltage object table\n");
3571 int radeon_atom_get_min_voltage(struct radeon_device *rdev,
3572 u8 voltage_type, u16 *min_voltage)
3574 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3576 u16 data_offset, size;
3577 union voltage_object_info *voltage_info;
3578 union voltage_object *voltage_object = NULL;
3580 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3581 &frev, &crev, &data_offset)) {
3582 voltage_info = (union voltage_object_info *)
3583 (rdev->mode_info.atom_context->bios + data_offset);
3587 voltage_object = (union voltage_object *)
3588 atom_lookup_voltage_object_v1(&voltage_info->v1, voltage_type);
3589 if (voltage_object) {
3590 ATOM_VOLTAGE_FORMULA *formula =
3591 &voltage_object->v1.asFormula;
3593 le16_to_cpu(formula->usVoltageBaseLevel);
3598 voltage_object = (union voltage_object *)
3599 atom_lookup_voltage_object_v2(&voltage_info->v2, voltage_type);
3600 if (voltage_object) {
3601 ATOM_VOLTAGE_FORMULA_V2 *formula =
3602 &voltage_object->v2.asFormula;
3603 if (formula->ucNumOfVoltageEntries) {
3605 le16_to_cpu(formula->asVIDAdjustEntries[
3613 DRM_ERROR("unknown voltage object table\n");
3621 int radeon_atom_get_voltage_step(struct radeon_device *rdev,
3622 u8 voltage_type, u16 *voltage_step)
3624 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3626 u16 data_offset, size;
3627 union voltage_object_info *voltage_info;
3628 union voltage_object *voltage_object = NULL;
3630 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3631 &frev, &crev, &data_offset)) {
3632 voltage_info = (union voltage_object_info *)
3633 (rdev->mode_info.atom_context->bios + data_offset);
3637 voltage_object = (union voltage_object *)
3638 atom_lookup_voltage_object_v1(&voltage_info->v1, voltage_type);
3639 if (voltage_object) {
3640 ATOM_VOLTAGE_FORMULA *formula =
3641 &voltage_object->v1.asFormula;
3642 if (formula->ucFlag & 1)
3644 (le16_to_cpu(formula->usVoltageStep) + 1) / 2;
3647 le16_to_cpu(formula->usVoltageStep);
3654 DRM_ERROR("unknown voltage object table\n");
3662 int radeon_atom_round_to_true_voltage(struct radeon_device *rdev,
3664 u16 nominal_voltage,
3667 u16 min_voltage, max_voltage, voltage_step;
3669 if (radeon_atom_get_max_voltage(rdev, voltage_type, &max_voltage))
3671 if (radeon_atom_get_min_voltage(rdev, voltage_type, &min_voltage))
3673 if (radeon_atom_get_voltage_step(rdev, voltage_type, &voltage_step))
3676 if (nominal_voltage <= min_voltage)
3677 *true_voltage = min_voltage;
3678 else if (nominal_voltage >= max_voltage)
3679 *true_voltage = max_voltage;
3681 *true_voltage = min_voltage +
3682 ((nominal_voltage - min_voltage) / voltage_step) *
3688 int radeon_atom_get_voltage_table(struct radeon_device *rdev,
3689 u8 voltage_type, u8 voltage_mode,
3690 struct atom_voltage_table *voltage_table)
3692 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3694 u16 data_offset, size;
3696 union voltage_object_info *voltage_info;
3697 union voltage_object *voltage_object = NULL;
3699 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3700 &frev, &crev, &data_offset)) {
3701 voltage_info = (union voltage_object_info *)
3702 (rdev->mode_info.atom_context->bios + data_offset);
3709 DRM_ERROR("old table version %d, %d\n", frev, crev);
3712 voltage_object = (union voltage_object *)
3713 atom_lookup_voltage_object_v2(&voltage_info->v2, voltage_type);
3714 if (voltage_object) {
3715 ATOM_VOLTAGE_FORMULA_V2 *formula =
3716 &voltage_object->v2.asFormula;
3717 VOLTAGE_LUT_ENTRY *lut;
3718 if (formula->ucNumOfVoltageEntries > MAX_VOLTAGE_ENTRIES)
3720 lut = &formula->asVIDAdjustEntries[0];
3721 for (i = 0; i < formula->ucNumOfVoltageEntries; i++) {
3722 voltage_table->entries[i].value =
3723 le16_to_cpu(lut->usVoltageValue);
3724 ret = radeon_atom_get_voltage_gpio_settings(rdev,
3725 voltage_table->entries[i].value,
3727 &voltage_table->entries[i].smio_low,
3728 &voltage_table->mask_low);
3731 lut = (VOLTAGE_LUT_ENTRY *)
3732 ((u8 *)lut + sizeof(VOLTAGE_LUT_ENTRY));
3734 voltage_table->count = formula->ucNumOfVoltageEntries;
3739 DRM_ERROR("unknown voltage object table\n");
3746 voltage_object = (union voltage_object *)
3747 atom_lookup_voltage_object_v3(&voltage_info->v3,
3748 voltage_type, voltage_mode);
3749 if (voltage_object) {
3750 ATOM_GPIO_VOLTAGE_OBJECT_V3 *gpio =
3751 &voltage_object->v3.asGpioVoltageObj;
3752 VOLTAGE_LUT_ENTRY_V2 *lut;
3753 if (gpio->ucGpioEntryNum > MAX_VOLTAGE_ENTRIES)
3755 lut = &gpio->asVolGpioLut[0];
3756 for (i = 0; i < gpio->ucGpioEntryNum; i++) {
3757 voltage_table->entries[i].value =
3758 le16_to_cpu(lut->usVoltageValue);
3759 voltage_table->entries[i].smio_low =
3760 le32_to_cpu(lut->ulVoltageId);
3761 lut = (VOLTAGE_LUT_ENTRY_V2 *)
3762 ((u8 *)lut + sizeof(VOLTAGE_LUT_ENTRY_V2));
3764 voltage_table->mask_low = le32_to_cpu(gpio->ulGpioMaskVal);
3765 voltage_table->count = gpio->ucGpioEntryNum;
3766 voltage_table->phase_delay = gpio->ucPhaseDelay;
3771 DRM_ERROR("unknown voltage object table\n");
3776 DRM_ERROR("unknown voltage object table\n");
3784 struct _ATOM_VRAM_INFO_V3 v1_3;
3785 struct _ATOM_VRAM_INFO_V4 v1_4;
3786 struct _ATOM_VRAM_INFO_HEADER_V2_1 v2_1;
3789 int radeon_atom_get_memory_info(struct radeon_device *rdev,
3790 u8 module_index, struct atom_memory_info *mem_info)
3792 int index = GetIndexIntoMasterTable(DATA, VRAM_Info);
3794 u16 data_offset, size;
3795 union vram_info *vram_info;
3797 memset(mem_info, 0, sizeof(struct atom_memory_info));
3799 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3800 &frev, &crev, &data_offset)) {
3801 vram_info = (union vram_info *)
3802 (rdev->mode_info.atom_context->bios + data_offset);
3808 if (module_index < vram_info->v1_3.ucNumOfVRAMModule) {
3809 ATOM_VRAM_MODULE_V3 *vram_module =
3810 (ATOM_VRAM_MODULE_V3 *)vram_info->v1_3.aVramInfo;
3812 for (i = 0; i < module_index; i++) {
3813 if (le16_to_cpu(vram_module->usSize) == 0)
3815 vram_module = (ATOM_VRAM_MODULE_V3 *)
3816 ((u8 *)vram_module + le16_to_cpu(vram_module->usSize));
3818 mem_info->mem_vendor = vram_module->asMemory.ucMemoryVenderID & 0xf;
3819 mem_info->mem_type = vram_module->asMemory.ucMemoryType & 0xf0;
3824 /* r7xx, evergreen */
3825 if (module_index < vram_info->v1_4.ucNumOfVRAMModule) {
3826 ATOM_VRAM_MODULE_V4 *vram_module =
3827 (ATOM_VRAM_MODULE_V4 *)vram_info->v1_4.aVramInfo;
3829 for (i = 0; i < module_index; i++) {
3830 if (le16_to_cpu(vram_module->usModuleSize) == 0)
3832 vram_module = (ATOM_VRAM_MODULE_V4 *)
3833 ((u8 *)vram_module + le16_to_cpu(vram_module->usModuleSize));
3835 mem_info->mem_vendor = vram_module->ucMemoryVenderID & 0xf;
3836 mem_info->mem_type = vram_module->ucMemoryType & 0xf0;
3841 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3849 if (module_index < vram_info->v2_1.ucNumOfVRAMModule) {
3850 ATOM_VRAM_MODULE_V7 *vram_module =
3851 (ATOM_VRAM_MODULE_V7 *)vram_info->v2_1.aVramInfo;
3853 for (i = 0; i < module_index; i++) {
3854 if (le16_to_cpu(vram_module->usModuleSize) == 0)
3856 vram_module = (ATOM_VRAM_MODULE_V7 *)
3857 ((u8 *)vram_module + le16_to_cpu(vram_module->usModuleSize));
3859 mem_info->mem_vendor = vram_module->ucMemoryVenderID & 0xf;
3860 mem_info->mem_type = vram_module->ucMemoryType & 0xf0;
3865 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3870 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3878 int radeon_atom_get_mclk_range_table(struct radeon_device *rdev,
3879 bool gddr5, u8 module_index,
3880 struct atom_memory_clock_range_table *mclk_range_table)
3882 int index = GetIndexIntoMasterTable(DATA, VRAM_Info);
3884 u16 data_offset, size;
3885 union vram_info *vram_info;
3886 u32 mem_timing_size = gddr5 ?
3887 sizeof(ATOM_MEMORY_TIMING_FORMAT_V2) : sizeof(ATOM_MEMORY_TIMING_FORMAT);
3889 memset(mclk_range_table, 0, sizeof(struct atom_memory_clock_range_table));
3891 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3892 &frev, &crev, &data_offset)) {
3893 vram_info = (union vram_info *)
3894 (rdev->mode_info.atom_context->bios + data_offset);
3899 DRM_ERROR("old table version %d, %d\n", frev, crev);
3902 /* r7xx, evergreen */
3903 if (module_index < vram_info->v1_4.ucNumOfVRAMModule) {
3904 ATOM_VRAM_MODULE_V4 *vram_module =
3905 (ATOM_VRAM_MODULE_V4 *)vram_info->v1_4.aVramInfo;
3906 ATOM_MEMORY_TIMING_FORMAT *format;
3908 for (i = 0; i < module_index; i++) {
3909 if (le16_to_cpu(vram_module->usModuleSize) == 0)
3911 vram_module = (ATOM_VRAM_MODULE_V4 *)
3912 ((u8 *)vram_module + le16_to_cpu(vram_module->usModuleSize));
3914 mclk_range_table->num_entries = (u8)
3915 ((le16_to_cpu(vram_module->usModuleSize) - offsetof(ATOM_VRAM_MODULE_V4, asMemTiming)) /
3917 format = &vram_module->asMemTiming[0];
3918 for (i = 0; i < mclk_range_table->num_entries; i++) {
3919 mclk_range_table->mclk[i] = le32_to_cpu(format->ulClkRange);
3920 format = (ATOM_MEMORY_TIMING_FORMAT *)
3921 ((u8 *)format + mem_timing_size);
3927 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3932 DRM_ERROR("new table version %d, %d\n", frev, crev);
3935 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3943 #define MEM_ID_MASK 0xff000000
3944 #define MEM_ID_SHIFT 24
3945 #define CLOCK_RANGE_MASK 0x00ffffff
3946 #define CLOCK_RANGE_SHIFT 0
3947 #define LOW_NIBBLE_MASK 0xf
3948 #define DATA_EQU_PREV 0
3949 #define DATA_FROM_TABLE 4
3951 int radeon_atom_init_mc_reg_table(struct radeon_device *rdev,
3953 struct atom_mc_reg_table *reg_table)
3955 int index = GetIndexIntoMasterTable(DATA, VRAM_Info);
3956 u8 frev, crev, num_entries, t_mem_id, num_ranges = 0;
3958 u16 data_offset, size;
3959 union vram_info *vram_info;
3961 memset(reg_table, 0, sizeof(struct atom_mc_reg_table));
3963 if (atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3964 &frev, &crev, &data_offset)) {
3965 vram_info = (union vram_info *)
3966 (rdev->mode_info.atom_context->bios + data_offset);
3969 DRM_ERROR("old table version %d, %d\n", frev, crev);
3974 if (module_index < vram_info->v2_1.ucNumOfVRAMModule) {
3975 ATOM_INIT_REG_BLOCK *reg_block =
3976 (ATOM_INIT_REG_BLOCK *)
3977 ((u8 *)vram_info + le16_to_cpu(vram_info->v2_1.usMemClkPatchTblOffset));
3978 ATOM_MEMORY_SETTING_DATA_BLOCK *reg_data =
3979 (ATOM_MEMORY_SETTING_DATA_BLOCK *)
3980 ((u8 *)reg_block + (2 * sizeof(u16)) +
3981 le16_to_cpu(reg_block->usRegIndexTblSize));
3982 ATOM_INIT_REG_INDEX_FORMAT *format = ®_block->asRegIndexBuf[0];
3983 num_entries = (u8)((le16_to_cpu(reg_block->usRegIndexTblSize)) /
3984 sizeof(ATOM_INIT_REG_INDEX_FORMAT)) - 1;
3985 if (num_entries > VBIOS_MC_REGISTER_ARRAY_SIZE)
3987 while (i < num_entries) {
3988 if (format->ucPreRegDataLength & ACCESS_PLACEHOLDER)
3990 reg_table->mc_reg_address[i].s1 =
3991 (u16)(le16_to_cpu(format->usRegIndex));
3992 reg_table->mc_reg_address[i].pre_reg_data =
3993 (u8)(format->ucPreRegDataLength);
3995 format = (ATOM_INIT_REG_INDEX_FORMAT *)
3996 ((u8 *)format + sizeof(ATOM_INIT_REG_INDEX_FORMAT));
3998 reg_table->last = i;
3999 while ((le32_to_cpu(*(u32 *)reg_data) != END_OF_REG_DATA_BLOCK) &&
4000 (num_ranges < VBIOS_MAX_AC_TIMING_ENTRIES)) {
4001 t_mem_id = (u8)((le32_to_cpu(*(u32 *)reg_data) & MEM_ID_MASK)
4003 if (module_index == t_mem_id) {
4004 reg_table->mc_reg_table_entry[num_ranges].mclk_max =
4005 (u32)((le32_to_cpu(*(u32 *)reg_data) & CLOCK_RANGE_MASK)
4006 >> CLOCK_RANGE_SHIFT);
4007 for (i = 0, j = 1; i < reg_table->last; i++) {
4008 if ((reg_table->mc_reg_address[i].pre_reg_data & LOW_NIBBLE_MASK) == DATA_FROM_TABLE) {
4009 reg_table->mc_reg_table_entry[num_ranges].mc_data[i] =
4010 (u32)le32_to_cpu(*((u32 *)reg_data + j));
4012 } else if ((reg_table->mc_reg_address[i].pre_reg_data & LOW_NIBBLE_MASK) == DATA_EQU_PREV) {
4013 reg_table->mc_reg_table_entry[num_ranges].mc_data[i] =
4014 reg_table->mc_reg_table_entry[num_ranges].mc_data[i - 1];
4019 reg_data = (ATOM_MEMORY_SETTING_DATA_BLOCK *)
4020 ((u8 *)reg_data + le16_to_cpu(reg_block->usRegDataBlkSize));
4022 if (le32_to_cpu(*(u32 *)reg_data) != END_OF_REG_DATA_BLOCK)
4024 reg_table->num_entries = num_ranges;
4029 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
4034 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
4042 void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev)
4044 struct radeon_device *rdev = dev->dev_private;
4045 uint32_t bios_2_scratch, bios_6_scratch;
4047 if (rdev->family >= CHIP_R600) {
4048 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
4049 bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH);
4051 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
4052 bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
4055 /* let the bios control the backlight */
4056 bios_2_scratch &= ~ATOM_S2_VRI_BRIGHT_ENABLE;
4058 /* tell the bios not to handle mode switching */
4059 bios_6_scratch |= ATOM_S6_ACC_BLOCK_DISPLAY_SWITCH;
4061 /* clear the vbios dpms state */
4062 if (ASIC_IS_DCE4(rdev))
4063 bios_2_scratch &= ~ATOM_S2_DEVICE_DPMS_STATE;
4065 if (rdev->family >= CHIP_R600) {
4066 WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch);
4067 WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch);
4069 WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch);
4070 WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
4075 void radeon_save_bios_scratch_regs(struct radeon_device *rdev)
4077 uint32_t scratch_reg;
4080 if (rdev->family >= CHIP_R600)
4081 scratch_reg = R600_BIOS_0_SCRATCH;
4083 scratch_reg = RADEON_BIOS_0_SCRATCH;
4085 for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++)
4086 rdev->bios_scratch[i] = RREG32(scratch_reg + (i * 4));
4089 void radeon_restore_bios_scratch_regs(struct radeon_device *rdev)
4091 uint32_t scratch_reg;
4094 if (rdev->family >= CHIP_R600)
4095 scratch_reg = R600_BIOS_0_SCRATCH;
4097 scratch_reg = RADEON_BIOS_0_SCRATCH;
4099 for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++)
4100 WREG32(scratch_reg + (i * 4), rdev->bios_scratch[i]);
4103 void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock)
4105 struct drm_device *dev = encoder->dev;
4106 struct radeon_device *rdev = dev->dev_private;
4107 uint32_t bios_6_scratch;
4109 if (rdev->family >= CHIP_R600)
4110 bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH);
4112 bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
4115 bios_6_scratch |= ATOM_S6_CRITICAL_STATE;
4116 bios_6_scratch &= ~ATOM_S6_ACC_MODE;
4118 bios_6_scratch &= ~ATOM_S6_CRITICAL_STATE;
4119 bios_6_scratch |= ATOM_S6_ACC_MODE;
4122 if (rdev->family >= CHIP_R600)
4123 WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch);
4125 WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
4128 /* at some point we may want to break this out into individual functions */
4130 radeon_atombios_connected_scratch_regs(struct drm_connector *connector,
4131 struct drm_encoder *encoder,
4134 struct drm_device *dev = connector->dev;
4135 struct radeon_device *rdev = dev->dev_private;
4136 struct radeon_connector *radeon_connector =
4137 to_radeon_connector(connector);
4138 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
4139 uint32_t bios_0_scratch, bios_3_scratch, bios_6_scratch;
4141 if (rdev->family >= CHIP_R600) {
4142 bios_0_scratch = RREG32(R600_BIOS_0_SCRATCH);
4143 bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH);
4144 bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH);
4146 bios_0_scratch = RREG32(RADEON_BIOS_0_SCRATCH);
4147 bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH);
4148 bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
4151 if ((radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) &&
4152 (radeon_connector->devices & ATOM_DEVICE_TV1_SUPPORT)) {
4154 DRM_DEBUG_KMS("TV1 connected\n");
4155 bios_3_scratch |= ATOM_S3_TV1_ACTIVE;
4156 bios_6_scratch |= ATOM_S6_ACC_REQ_TV1;
4158 DRM_DEBUG_KMS("TV1 disconnected\n");
4159 bios_0_scratch &= ~ATOM_S0_TV1_MASK;
4160 bios_3_scratch &= ~ATOM_S3_TV1_ACTIVE;
4161 bios_6_scratch &= ~ATOM_S6_ACC_REQ_TV1;
4164 if ((radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) &&
4165 (radeon_connector->devices & ATOM_DEVICE_CV_SUPPORT)) {
4167 DRM_DEBUG_KMS("CV connected\n");
4168 bios_3_scratch |= ATOM_S3_CV_ACTIVE;
4169 bios_6_scratch |= ATOM_S6_ACC_REQ_CV;
4171 DRM_DEBUG_KMS("CV disconnected\n");
4172 bios_0_scratch &= ~ATOM_S0_CV_MASK;
4173 bios_3_scratch &= ~ATOM_S3_CV_ACTIVE;
4174 bios_6_scratch &= ~ATOM_S6_ACC_REQ_CV;
4177 if ((radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) &&
4178 (radeon_connector->devices & ATOM_DEVICE_LCD1_SUPPORT)) {
4180 DRM_DEBUG_KMS("LCD1 connected\n");
4181 bios_0_scratch |= ATOM_S0_LCD1;
4182 bios_3_scratch |= ATOM_S3_LCD1_ACTIVE;
4183 bios_6_scratch |= ATOM_S6_ACC_REQ_LCD1;
4185 DRM_DEBUG_KMS("LCD1 disconnected\n");
4186 bios_0_scratch &= ~ATOM_S0_LCD1;
4187 bios_3_scratch &= ~ATOM_S3_LCD1_ACTIVE;
4188 bios_6_scratch &= ~ATOM_S6_ACC_REQ_LCD1;
4191 if ((radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) &&
4192 (radeon_connector->devices & ATOM_DEVICE_CRT1_SUPPORT)) {
4194 DRM_DEBUG_KMS("CRT1 connected\n");
4195 bios_0_scratch |= ATOM_S0_CRT1_COLOR;
4196 bios_3_scratch |= ATOM_S3_CRT1_ACTIVE;
4197 bios_6_scratch |= ATOM_S6_ACC_REQ_CRT1;
4199 DRM_DEBUG_KMS("CRT1 disconnected\n");
4200 bios_0_scratch &= ~ATOM_S0_CRT1_MASK;
4201 bios_3_scratch &= ~ATOM_S3_CRT1_ACTIVE;
4202 bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT1;
4205 if ((radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) &&
4206 (radeon_connector->devices & ATOM_DEVICE_CRT2_SUPPORT)) {
4208 DRM_DEBUG_KMS("CRT2 connected\n");
4209 bios_0_scratch |= ATOM_S0_CRT2_COLOR;
4210 bios_3_scratch |= ATOM_S3_CRT2_ACTIVE;
4211 bios_6_scratch |= ATOM_S6_ACC_REQ_CRT2;
4213 DRM_DEBUG_KMS("CRT2 disconnected\n");
4214 bios_0_scratch &= ~ATOM_S0_CRT2_MASK;
4215 bios_3_scratch &= ~ATOM_S3_CRT2_ACTIVE;
4216 bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT2;
4219 if ((radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) &&
4220 (radeon_connector->devices & ATOM_DEVICE_DFP1_SUPPORT)) {
4222 DRM_DEBUG_KMS("DFP1 connected\n");
4223 bios_0_scratch |= ATOM_S0_DFP1;
4224 bios_3_scratch |= ATOM_S3_DFP1_ACTIVE;
4225 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP1;
4227 DRM_DEBUG_KMS("DFP1 disconnected\n");
4228 bios_0_scratch &= ~ATOM_S0_DFP1;
4229 bios_3_scratch &= ~ATOM_S3_DFP1_ACTIVE;
4230 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP1;
4233 if ((radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) &&
4234 (radeon_connector->devices & ATOM_DEVICE_DFP2_SUPPORT)) {
4236 DRM_DEBUG_KMS("DFP2 connected\n");
4237 bios_0_scratch |= ATOM_S0_DFP2;
4238 bios_3_scratch |= ATOM_S3_DFP2_ACTIVE;
4239 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP2;
4241 DRM_DEBUG_KMS("DFP2 disconnected\n");
4242 bios_0_scratch &= ~ATOM_S0_DFP2;
4243 bios_3_scratch &= ~ATOM_S3_DFP2_ACTIVE;
4244 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP2;
4247 if ((radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) &&
4248 (radeon_connector->devices & ATOM_DEVICE_DFP3_SUPPORT)) {
4250 DRM_DEBUG_KMS("DFP3 connected\n");
4251 bios_0_scratch |= ATOM_S0_DFP3;
4252 bios_3_scratch |= ATOM_S3_DFP3_ACTIVE;
4253 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP3;
4255 DRM_DEBUG_KMS("DFP3 disconnected\n");
4256 bios_0_scratch &= ~ATOM_S0_DFP3;
4257 bios_3_scratch &= ~ATOM_S3_DFP3_ACTIVE;
4258 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP3;
4261 if ((radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) &&
4262 (radeon_connector->devices & ATOM_DEVICE_DFP4_SUPPORT)) {
4264 DRM_DEBUG_KMS("DFP4 connected\n");
4265 bios_0_scratch |= ATOM_S0_DFP4;
4266 bios_3_scratch |= ATOM_S3_DFP4_ACTIVE;
4267 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP4;
4269 DRM_DEBUG_KMS("DFP4 disconnected\n");
4270 bios_0_scratch &= ~ATOM_S0_DFP4;
4271 bios_3_scratch &= ~ATOM_S3_DFP4_ACTIVE;
4272 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP4;
4275 if ((radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) &&
4276 (radeon_connector->devices & ATOM_DEVICE_DFP5_SUPPORT)) {
4278 DRM_DEBUG_KMS("DFP5 connected\n");
4279 bios_0_scratch |= ATOM_S0_DFP5;
4280 bios_3_scratch |= ATOM_S3_DFP5_ACTIVE;
4281 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP5;
4283 DRM_DEBUG_KMS("DFP5 disconnected\n");
4284 bios_0_scratch &= ~ATOM_S0_DFP5;
4285 bios_3_scratch &= ~ATOM_S3_DFP5_ACTIVE;
4286 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP5;
4289 if ((radeon_encoder->devices & ATOM_DEVICE_DFP6_SUPPORT) &&
4290 (radeon_connector->devices & ATOM_DEVICE_DFP6_SUPPORT)) {
4292 DRM_DEBUG_KMS("DFP6 connected\n");
4293 bios_0_scratch |= ATOM_S0_DFP6;
4294 bios_3_scratch |= ATOM_S3_DFP6_ACTIVE;
4295 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP6;
4297 DRM_DEBUG_KMS("DFP6 disconnected\n");
4298 bios_0_scratch &= ~ATOM_S0_DFP6;
4299 bios_3_scratch &= ~ATOM_S3_DFP6_ACTIVE;
4300 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP6;
4304 if (rdev->family >= CHIP_R600) {
4305 WREG32(R600_BIOS_0_SCRATCH, bios_0_scratch);
4306 WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch);
4307 WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch);
4309 WREG32(RADEON_BIOS_0_SCRATCH, bios_0_scratch);
4310 WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch);
4311 WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
4316 radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc)
4318 struct drm_device *dev = encoder->dev;
4319 struct radeon_device *rdev = dev->dev_private;
4320 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
4321 uint32_t bios_3_scratch;
4323 if (ASIC_IS_DCE4(rdev))
4326 if (rdev->family >= CHIP_R600)
4327 bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH);
4329 bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH);
4331 if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) {
4332 bios_3_scratch &= ~ATOM_S3_TV1_CRTC_ACTIVE;
4333 bios_3_scratch |= (crtc << 18);
4335 if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) {
4336 bios_3_scratch &= ~ATOM_S3_CV_CRTC_ACTIVE;
4337 bios_3_scratch |= (crtc << 24);
4339 if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) {
4340 bios_3_scratch &= ~ATOM_S3_CRT1_CRTC_ACTIVE;
4341 bios_3_scratch |= (crtc << 16);
4343 if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) {
4344 bios_3_scratch &= ~ATOM_S3_CRT2_CRTC_ACTIVE;
4345 bios_3_scratch |= (crtc << 20);
4347 if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) {
4348 bios_3_scratch &= ~ATOM_S3_LCD1_CRTC_ACTIVE;
4349 bios_3_scratch |= (crtc << 17);
4351 if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) {
4352 bios_3_scratch &= ~ATOM_S3_DFP1_CRTC_ACTIVE;
4353 bios_3_scratch |= (crtc << 19);
4355 if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) {
4356 bios_3_scratch &= ~ATOM_S3_DFP2_CRTC_ACTIVE;
4357 bios_3_scratch |= (crtc << 23);
4359 if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) {
4360 bios_3_scratch &= ~ATOM_S3_DFP3_CRTC_ACTIVE;
4361 bios_3_scratch |= (crtc << 25);
4364 if (rdev->family >= CHIP_R600)
4365 WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch);
4367 WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch);
4371 radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on)
4373 struct drm_device *dev = encoder->dev;
4374 struct radeon_device *rdev = dev->dev_private;
4375 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
4376 uint32_t bios_2_scratch;
4378 if (ASIC_IS_DCE4(rdev))
4381 if (rdev->family >= CHIP_R600)
4382 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
4384 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
4386 if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) {
4388 bios_2_scratch &= ~ATOM_S2_TV1_DPMS_STATE;
4390 bios_2_scratch |= ATOM_S2_TV1_DPMS_STATE;
4392 if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) {
4394 bios_2_scratch &= ~ATOM_S2_CV_DPMS_STATE;
4396 bios_2_scratch |= ATOM_S2_CV_DPMS_STATE;
4398 if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) {
4400 bios_2_scratch &= ~ATOM_S2_CRT1_DPMS_STATE;
4402 bios_2_scratch |= ATOM_S2_CRT1_DPMS_STATE;
4404 if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) {
4406 bios_2_scratch &= ~ATOM_S2_CRT2_DPMS_STATE;
4408 bios_2_scratch |= ATOM_S2_CRT2_DPMS_STATE;
4410 if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) {
4412 bios_2_scratch &= ~ATOM_S2_LCD1_DPMS_STATE;
4414 bios_2_scratch |= ATOM_S2_LCD1_DPMS_STATE;
4416 if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) {
4418 bios_2_scratch &= ~ATOM_S2_DFP1_DPMS_STATE;
4420 bios_2_scratch |= ATOM_S2_DFP1_DPMS_STATE;
4422 if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) {
4424 bios_2_scratch &= ~ATOM_S2_DFP2_DPMS_STATE;
4426 bios_2_scratch |= ATOM_S2_DFP2_DPMS_STATE;
4428 if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) {
4430 bios_2_scratch &= ~ATOM_S2_DFP3_DPMS_STATE;
4432 bios_2_scratch |= ATOM_S2_DFP3_DPMS_STATE;
4434 if (radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) {
4436 bios_2_scratch &= ~ATOM_S2_DFP4_DPMS_STATE;
4438 bios_2_scratch |= ATOM_S2_DFP4_DPMS_STATE;
4440 if (radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) {
4442 bios_2_scratch &= ~ATOM_S2_DFP5_DPMS_STATE;
4444 bios_2_scratch |= ATOM_S2_DFP5_DPMS_STATE;
4447 if (rdev->family >= CHIP_R600)
4448 WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch);
4450 WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch);