blob: 9a9363a7e5b9af36eb3021c609e4d4fe2ad860a3 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 *
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:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
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.
22 *
23 * Authors: Dave Airlie
24 * Alex Deucher
25 */
David Howells760285e2012-10-02 18:01:07 +010026#include <drm/drmP.h>
27#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020028#include "radeon.h"
29
30#include "atom.h"
31#include "atom-bits.h"
32
Jerome Glisse771fe6b2009-06-05 14:42:42 +020033extern void
Alex Deucher5137ee92010-08-12 18:58:47 -040034radeon_add_atom_encoder(struct drm_device *dev, uint32_t encoder_enum,
Alex Deucher36868bd2011-01-06 21:19:21 -050035 uint32_t supported_device, u16 caps);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020036
Jerome Glisse771fe6b2009-06-05 14:42:42 +020037/* from radeon_legacy_encoder.c */
38extern void
Alex Deucher5137ee92010-08-12 18:58:47 -040039radeon_add_legacy_encoder(struct drm_device *dev, uint32_t encoder_enum,
Jerome Glisse771fe6b2009-06-05 14:42:42 +020040 uint32_t supported_device);
41
42union 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;
46};
47
Alex Deucher21240f92011-11-21 12:41:21 -050048static void radeon_lookup_i2c_gpio_quirks(struct radeon_device *rdev,
49 ATOM_GPIO_I2C_ASSIGMENT *gpio,
50 u8 index)
51{
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;
61 }
62 }
63
64 /* some evergreen boards have bad data for this entry */
65 if (ASIC_IS_DCE4(rdev)) {
66 if ((index == 7) &&
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;
74 }
75 }
76
77 /* some DCE3 boards have bad data for this entry */
78 if (ASIC_IS_DCE3(rdev)) {
79 if ((index == 4) &&
80 (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x1fda) &&
81 (gpio->sucI2cId.ucAccess == 0x94))
82 gpio->sucI2cId.ucAccess = 0x14;
83 }
84}
85
86static struct radeon_i2c_bus_rec radeon_get_bus_rec_for_i2c_gpio(ATOM_GPIO_I2C_ASSIGMENT *gpio)
87{
88 struct radeon_i2c_bus_rec i2c;
89
90 memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec));
91
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);
108
109 if (gpio->sucI2cId.sbfAccess.bfHW_Capable)
110 i2c.hw_capable = true;
111 else
112 i2c.hw_capable = false;
113
114 if (gpio->sucI2cId.ucAccess == 0xa0)
115 i2c.mm_i2c = true;
116 else
117 i2c.mm_i2c = false;
118
119 i2c.i2c_id = gpio->sucI2cId.ucAccess;
120
121 if (i2c.mask_clk_reg)
122 i2c.valid = true;
123 else
124 i2c.valid = false;
125
126 return i2c;
127}
128
Andi Kleence580fa2011-10-13 16:08:47 -0700129static struct radeon_i2c_bus_rec radeon_lookup_i2c_gpio(struct radeon_device *rdev,
Alex Deuchereed45b32009-12-04 14:45:27 -0500130 uint8_t id)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200131{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200132 struct atom_context *ctx = rdev->mode_info.atom_context;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500133 ATOM_GPIO_I2C_ASSIGMENT *gpio;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200134 struct radeon_i2c_bus_rec i2c;
135 int index = GetIndexIntoMasterTable(DATA, GPIO_I2C_Info);
136 struct _ATOM_GPIO_I2C_INFO *i2c_info;
Alex Deucher95beb692010-04-01 19:08:47 +0000137 uint16_t data_offset, size;
138 int i, num_indices;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200139
140 memset(&i2c, 0, sizeof(struct radeon_i2c_bus_rec));
141 i2c.valid = false;
142
Alex Deucher95beb692010-04-01 19:08:47 +0000143 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
Alex Deuchera084e6e2010-03-18 01:04:01 -0400144 i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200145
Alex Deucher95beb692010-04-01 19:08:47 +0000146 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
147 sizeof(ATOM_GPIO_I2C_ASSIGMENT);
148
Alex Deucher607f2c22013-08-20 18:40:46 -0400149 gpio = &i2c_info->asGPIO_Info[0];
Alex Deucher95beb692010-04-01 19:08:47 +0000150 for (i = 0; i < num_indices; i++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151
Alex Deucher21240f92011-11-21 12:41:21 -0500152 radeon_lookup_i2c_gpio_quirks(rdev, gpio, i);
Alex Deucher3074adc2010-11-30 00:15:10 -0500153
Alex Deuchera084e6e2010-03-18 01:04:01 -0400154 if (gpio->sucI2cId.ucAccess == id) {
Alex Deucher21240f92011-11-21 12:41:21 -0500155 i2c = radeon_get_bus_rec_for_i2c_gpio(gpio);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400156 break;
157 }
Alex Deucher607f2c22013-08-20 18:40:46 -0400158 gpio = (ATOM_GPIO_I2C_ASSIGMENT *)
159 ((u8 *)gpio + sizeof(ATOM_GPIO_I2C_ASSIGMENT));
Alex Deucherd3f420d2009-12-08 14:30:49 -0500160 }
161 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162
163 return i2c;
164}
165
Alex Deucherf376b942010-08-05 21:21:16 -0400166void radeon_atombios_i2c_init(struct radeon_device *rdev)
167{
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;
174 int i, num_indices;
175 char stmp[32];
176
Alex Deucherf376b942010-08-05 21:21:16 -0400177 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
178 i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
179
180 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
181 sizeof(ATOM_GPIO_I2C_ASSIGMENT);
182
Alex Deucher607f2c22013-08-20 18:40:46 -0400183 gpio = &i2c_info->asGPIO_Info[0];
Alex Deucherf376b942010-08-05 21:21:16 -0400184 for (i = 0; i < num_indices; i++) {
Alex Deucher21240f92011-11-21 12:41:21 -0500185 radeon_lookup_i2c_gpio_quirks(rdev, gpio, i);
Alex Deucherd7245022011-11-21 12:10:14 -0500186
Alex Deucher21240f92011-11-21 12:41:21 -0500187 i2c = radeon_get_bus_rec_for_i2c_gpio(gpio);
Alex Deucherea393022010-08-27 16:04:29 -0400188
Alex Deucher21240f92011-11-21 12:41:21 -0500189 if (i2c.valid) {
Alex Deucherf376b942010-08-05 21:21:16 -0400190 sprintf(stmp, "0x%x", i2c.i2c_id);
191 rdev->i2c_bus[i] = radeon_i2c_create(rdev->ddev, &i2c, stmp);
192 }
Alex Deucher607f2c22013-08-20 18:40:46 -0400193 gpio = (ATOM_GPIO_I2C_ASSIGMENT *)
194 ((u8 *)gpio + sizeof(ATOM_GPIO_I2C_ASSIGMENT));
Alex Deucherf376b942010-08-05 21:21:16 -0400195 }
196 }
197}
198
Alex Deucher09e619c2014-11-07 11:16:25 -0500199struct radeon_gpio_rec radeon_atombios_lookup_gpio(struct radeon_device *rdev,
200 u8 id)
Alex Deuchereed45b32009-12-04 14:45:27 -0500201{
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;
208 int i, num_indices;
209
210 memset(&gpio, 0, sizeof(struct radeon_gpio_rec));
211 gpio.valid = false;
212
Alex Deuchera084e6e2010-03-18 01:04:01 -0400213 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
214 gpio_info = (struct _ATOM_GPIO_PIN_LUT *)(ctx->bios + data_offset);
Alex Deuchereed45b32009-12-04 14:45:27 -0500215
Alex Deuchera084e6e2010-03-18 01:04:01 -0400216 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
217 sizeof(ATOM_GPIO_PIN_ASSIGNMENT);
Alex Deuchereed45b32009-12-04 14:45:27 -0500218
Alex Deucher607f2c22013-08-20 18:40:46 -0400219 pin = gpio_info->asGPIO_Pin;
Alex Deuchera084e6e2010-03-18 01:04:01 -0400220 for (i = 0; i < num_indices; i++) {
Alex Deuchera084e6e2010-03-18 01:04:01 -0400221 if (id == pin->ucGPIO_ID) {
222 gpio.id = pin->ucGPIO_ID;
Cédric Cano45894332011-02-11 19:45:37 -0500223 gpio.reg = le16_to_cpu(pin->usGpioPin_AIndex) * 4;
Alex Deucher727b3d22014-11-07 11:34:57 -0500224 gpio.shift = pin->ucGpioPinBitShift;
Alex Deuchera084e6e2010-03-18 01:04:01 -0400225 gpio.mask = (1 << pin->ucGpioPinBitShift);
226 gpio.valid = true;
227 break;
228 }
Alex Deucher607f2c22013-08-20 18:40:46 -0400229 pin = (ATOM_GPIO_PIN_ASSIGNMENT *)
230 ((u8 *)pin + sizeof(ATOM_GPIO_PIN_ASSIGNMENT));
Alex Deuchereed45b32009-12-04 14:45:27 -0500231 }
232 }
233
234 return gpio;
235}
236
237static struct radeon_hpd radeon_atom_get_hpd_info_from_gpio(struct radeon_device *rdev,
238 struct radeon_gpio_rec *gpio)
239{
240 struct radeon_hpd hpd;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500241 u32 reg;
242
Jean Delvare1d978da2010-08-15 14:11:24 +0200243 memset(&hpd, 0, sizeof(struct radeon_hpd));
244
Alex Deucher82d118e2012-03-20 17:18:01 -0400245 if (ASIC_IS_DCE6(rdev))
246 reg = SI_DC_GPIO_HPD_A;
247 else if (ASIC_IS_DCE4(rdev))
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500248 reg = EVERGREEN_DC_GPIO_HPD_A;
249 else
250 reg = AVIVO_DC_GPIO_HPD_A;
251
Alex Deuchereed45b32009-12-04 14:45:27 -0500252 hpd.gpio = *gpio;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500253 if (gpio->reg == reg) {
Alex Deuchereed45b32009-12-04 14:45:27 -0500254 switch(gpio->mask) {
255 case (1 << 0):
256 hpd.hpd = RADEON_HPD_1;
257 break;
258 case (1 << 8):
259 hpd.hpd = RADEON_HPD_2;
260 break;
261 case (1 << 16):
262 hpd.hpd = RADEON_HPD_3;
263 break;
264 case (1 << 24):
265 hpd.hpd = RADEON_HPD_4;
266 break;
267 case (1 << 26):
268 hpd.hpd = RADEON_HPD_5;
269 break;
270 case (1 << 28):
271 hpd.hpd = RADEON_HPD_6;
272 break;
273 default:
274 hpd.hpd = RADEON_HPD_NONE;
275 break;
276 }
277 } else
278 hpd.hpd = RADEON_HPD_NONE;
279 return hpd;
280}
281
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200282static bool radeon_atom_apply_quirks(struct drm_device *dev,
283 uint32_t supported_device,
284 int *connector_type,
Alex Deucher848577e2009-07-08 16:15:30 -0400285 struct radeon_i2c_bus_rec *i2c_bus,
Alex Deuchereed45b32009-12-04 14:45:27 -0500286 uint16_t *line_mux,
287 struct radeon_hpd *hpd)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200288{
289
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;
297 }
298
Alex Deucherc86a9032010-02-18 14:14:58 -0500299 /* 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;
306 }
307
Alex Deucherf36fce02010-09-27 11:33:00 -0400308 /* 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))
314 return false;
315 }
316
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200317 /* 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)
322 return false;
323 }
324
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)) {
Alex Deucher848577e2009-07-08 16:15:30 -0400329 if (*connector_type == DRM_MODE_CONNECTOR_LVDS) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200330 i2c_bus->valid = false;
Alex Deucher848577e2009-07-08 16:15:30 -0400331 *line_mux = 53;
332 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200333 }
334
Alex Deucher4e3f9b782009-12-01 14:49:50 -0500335 /* 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)
340 return false;
341 }
342
Dave Airlieaa1a7502009-12-04 11:51:34 +1000343 /* 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)
348 return false;
349 }
350
351
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200352 /* Funky macbooks */
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))
358 return false;
Alex Deuchere1e8a5d2010-03-26 17:14:37 -0400359 if (supported_device == ATOM_DEVICE_CRT2_SUPPORT)
360 *line_mux = 0x90;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200361 }
362
Alex Deucherbe23da82011-01-18 18:26:11 +0000363 /* 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;
Alex Deucherf598aa72011-01-04 00:43:39 -0500368 }
369
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370 /* 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)) {
Alex Deucher705af9c2009-09-10 16:31:13 -0400374 if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
Alex Deucherd42571e2009-09-11 15:27:14 -0400375 *connector_type = DRM_MODE_CONNECTOR_DVII;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200376 }
377 }
378
Alex Deuchere153b702010-07-20 18:07:22 -0400379 /* 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;
385 }
386 }
387
Alex Deucher705af9c2009-09-10 16:31:13 -0400388 /* 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) {
Alex Deucherd42571e2009-09-11 15:27:14 -0400393 *connector_type = DRM_MODE_CONNECTOR_DVII;
Alex Deucher705af9c2009-09-10 16:31:13 -0400394 }
395 }
396
397 /* some BIOSes seem to report DAC on HDMI - usually this is a board with
398 * HDMI + VGA reporting as HDMI
399 */
400 if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
401 if (supported_device & (ATOM_DEVICE_CRT_SUPPORT)) {
402 *connector_type = DRM_MODE_CONNECTOR_VGA;
403 *line_mux = 0;
404 }
405 }
406
Alex Deucher4f87af42011-05-04 11:41:47 -0400407 /* Acer laptop (Acer TravelMate 5730/5730G) has an HDMI port
Alex Deucher2f299d52011-01-04 17:42:20 -0500408 * 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.
415 */
Alex Deucher4f87af42011-05-04 11:41:47 -0400416 if (((dev->pdev->device == 0x95c4) || (dev->pdev->device == 0x9591)) &&
Alex Deucher3e5f8ff2009-11-17 17:12:10 -0500417 (dev->pdev->subsystem_vendor == 0x1025) &&
418 (dev->pdev->subsystem_device == 0x013c)) {
419 if ((*connector_type == DRM_MODE_CONNECTOR_DVII) &&
Alex Deucher9ea2c4b2010-08-06 00:27:44 -0400420 (supported_device == ATOM_DEVICE_DFP1_SUPPORT)) {
Alex Deucher2f299d52011-01-04 17:42:20 -0500421 /* actually it's a DVI-D port not DVI-I */
Alex Deucher3e5f8ff2009-11-17 17:12:10 -0500422 *connector_type = DRM_MODE_CONNECTOR_DVID;
Alex Deucher2f299d52011-01-04 17:42:20 -0500423 return false;
Alex Deucher9ea2c4b2010-08-06 00:27:44 -0400424 }
Alex Deucher3e5f8ff2009-11-17 17:12:10 -0500425 }
426
Dave Airlieefa84502010-02-09 09:06:00 +1000427 /* XFX Pine Group device rv730 reports no VGA DDC lines
428 * even though they are wired up to record 0x93
429 */
430 if ((dev->pdev->device == 0x9498) &&
431 (dev->pdev->subsystem_vendor == 0x1682) &&
Alex Deucher1ebf1692012-05-23 11:48:59 -0400432 (dev->pdev->subsystem_device == 0x2452) &&
433 (i2c_bus->valid == false) &&
434 !(supported_device & (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT))) {
Dave Airlieefa84502010-02-09 09:06:00 +1000435 struct radeon_device *rdev = dev->dev_private;
436 *i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93);
437 }
Alex Deucher4c1b2d22012-03-16 12:22:10 -0400438
439 /* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */
Alex Deucher0eb1c3d2015-12-17 12:52:17 -0500440 if (((dev->pdev->device == 0x9802) ||
441 (dev->pdev->device == 0x9805) ||
442 (dev->pdev->device == 0x9806)) &&
Alex Deucher4c1b2d22012-03-16 12:22:10 -0400443 (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;
447 *line_mux = 0x3103;
448 } else if (*connector_type == DRM_MODE_CONNECTOR_DVID) {
449 *connector_type = DRM_MODE_CONNECTOR_DVII;
450 }
451 }
452
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200453 return true;
454}
455
Michele Curti7f6bf722014-09-23 18:08:06 +0200456static const int supported_devices_connector_convert[] = {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200457 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
473};
474
Michele Curti7f6bf722014-09-23 18:08:06 +0200475static const uint16_t supported_devices_connector_object_id_convert[] = {
Alex Deucherb75fad02009-11-05 13:16:01 -0500476 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
490};
491
Michele Curti7f6bf722014-09-23 18:08:06 +0200492static const int object_connector_convert[] = {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200493 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,
Alex Deucher705af9c2009-09-10 16:31:13 -0400502 DRM_MODE_CONNECTOR_Unknown,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200503 DRM_MODE_CONNECTOR_9PinDIN,
504 DRM_MODE_CONNECTOR_Unknown,
505 DRM_MODE_CONNECTOR_HDMIA,
506 DRM_MODE_CONNECTOR_HDMIB,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200507 DRM_MODE_CONNECTOR_LVDS,
508 DRM_MODE_CONNECTOR_9PinDIN,
509 DRM_MODE_CONNECTOR_Unknown,
510 DRM_MODE_CONNECTOR_Unknown,
511 DRM_MODE_CONNECTOR_Unknown,
Alex Deucher196c58d2010-01-07 14:22:32 -0500512 DRM_MODE_CONNECTOR_DisplayPort,
513 DRM_MODE_CONNECTOR_eDP,
514 DRM_MODE_CONNECTOR_Unknown
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200515};
516
517bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev)
518{
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);
Alex Deuchereed45b32009-12-04 14:45:27 -0500523 u16 size, data_offset;
524 u8 frev, crev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200525 ATOM_CONNECTOR_OBJECT_TABLE *con_obj;
Alex Deucher36868bd2011-01-06 21:19:21 -0500526 ATOM_ENCODER_OBJECT_TABLE *enc_obj;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400527 ATOM_OBJECT_TABLE *router_obj;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200528 ATOM_DISPLAY_OBJECT_PATH_TABLE *path_obj;
529 ATOM_OBJECT_HEADER *obj_header;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400530 int i, j, k, path_size, device_support;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200531 int connector_type;
Alex Deuchereed45b32009-12-04 14:45:27 -0500532 u16 igp_lane_info, conn_id, connector_object_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200533 struct radeon_i2c_bus_rec ddc_bus;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400534 struct radeon_router router;
Alex Deuchereed45b32009-12-04 14:45:27 -0500535 struct radeon_gpio_rec gpio;
536 struct radeon_hpd hpd;
537
Alex Deuchera084e6e2010-03-18 01:04:01 -0400538 if (!atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset))
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200539 return false;
540
541 if (crev < 2)
542 return false;
543
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));
Alex Deucher36868bd2011-01-06 21:19:21 -0500551 enc_obj = (ATOM_ENCODER_OBJECT_TABLE *)
552 (ctx->bios + data_offset +
553 le16_to_cpu(obj_header->usEncoderObjectTableOffset));
Alex Deucher26b5bc92010-08-05 21:21:18 -0400554 router_obj = (ATOM_OBJECT_TABLE *)
555 (ctx->bios + data_offset +
556 le16_to_cpu(obj_header->usRouterObjectTableOffset));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200557 device_support = le16_to_cpu(obj_header->usDeviceSupport);
558
559 path_size = 0;
560 for (i = 0; i < path_obj->ucNumOfDispPath; i++) {
561 uint8_t *addr = (uint8_t *) path_obj->asDispPath;
562 ATOM_DISPLAY_OBJECT_PATH *path;
563 addr += path_size;
564 path = (ATOM_DISPLAY_OBJECT_PATH *) addr;
565 path_size += le16_to_cpu(path->usSize);
Alex Deucher5137ee92010-08-12 18:58:47 -0400566
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200567 if (device_support & le16_to_cpu(path->usDeviceTag)) {
568 uint8_t con_obj_id, con_obj_num, con_obj_type;
569
570 con_obj_id =
571 (le16_to_cpu(path->usConnObjectId) & OBJECT_ID_MASK)
572 >> OBJECT_ID_SHIFT;
573 con_obj_num =
574 (le16_to_cpu(path->usConnObjectId) & ENUM_ID_MASK)
575 >> ENUM_ID_SHIFT;
576 con_obj_type =
577 (le16_to_cpu(path->usConnObjectId) &
578 OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT;
579
Dave Airlie4bbd4972009-09-25 08:56:12 +1000580 /* TODO CV support */
581 if (le16_to_cpu(path->usDeviceTag) ==
582 ATOM_DEVICE_CV_SUPPORT)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200583 continue;
584
Alex Deucheree59f2b2009-11-05 13:11:46 -0500585 /* IGP chips */
586 if ((rdev->flags & RADEON_IS_IGP) &&
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200587 (con_obj_id ==
588 CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) {
589 uint16_t igp_offset = 0;
590 ATOM_INTEGRATED_SYSTEM_INFO_V2 *igp_obj;
591
592 index =
593 GetIndexIntoMasterTable(DATA,
594 IntegratedSystemInfo);
595
Alex Deuchera084e6e2010-03-18 01:04:01 -0400596 if (atom_parse_data_header(ctx, index, &size, &frev,
597 &crev, &igp_offset)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200598
Alex Deuchera084e6e2010-03-18 01:04:01 -0400599 if (crev >= 2) {
600 igp_obj =
601 (ATOM_INTEGRATED_SYSTEM_INFO_V2
602 *) (ctx->bios + igp_offset);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200603
Alex Deuchera084e6e2010-03-18 01:04:01 -0400604 if (igp_obj) {
605 uint32_t slot_config, ct;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200606
Alex Deuchera084e6e2010-03-18 01:04:01 -0400607 if (con_obj_num == 1)
608 slot_config =
609 igp_obj->
610 ulDDISlot1Config;
611 else
612 slot_config =
613 igp_obj->
614 ulDDISlot2Config;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200615
Alex Deuchera084e6e2010-03-18 01:04:01 -0400616 ct = (slot_config >> 16) & 0xff;
617 connector_type =
618 object_connector_convert
619 [ct];
620 connector_object_id = ct;
621 igp_lane_info =
622 slot_config & 0xffff;
623 } else
624 continue;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200625 } else
626 continue;
Alex Deuchera084e6e2010-03-18 01:04:01 -0400627 } else {
628 igp_lane_info = 0;
629 connector_type =
630 object_connector_convert[con_obj_id];
631 connector_object_id = con_obj_id;
632 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200633 } else {
634 igp_lane_info = 0;
635 connector_type =
636 object_connector_convert[con_obj_id];
Alex Deucherb75fad02009-11-05 13:16:01 -0500637 connector_object_id = con_obj_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200638 }
639
640 if (connector_type == DRM_MODE_CONNECTOR_Unknown)
641 continue;
642
Tyson Whiteheadbdd91b22010-11-08 16:08:30 +0000643 router.ddc_valid = false;
644 router.cd_valid = false;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400645 for (j = 0; j < ((le16_to_cpu(path->usSize) - 8) / 2); j++) {
646 uint8_t grph_obj_id, grph_obj_num, grph_obj_type;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200647
Alex Deucher26b5bc92010-08-05 21:21:18 -0400648 grph_obj_id =
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200649 (le16_to_cpu(path->usGraphicObjIds[j]) &
650 OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400651 grph_obj_num =
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200652 (le16_to_cpu(path->usGraphicObjIds[j]) &
653 ENUM_ID_MASK) >> ENUM_ID_SHIFT;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400654 grph_obj_type =
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200655 (le16_to_cpu(path->usGraphicObjIds[j]) &
656 OBJECT_TYPE_MASK) >> OBJECT_TYPE_SHIFT;
657
Alex Deucher26b5bc92010-08-05 21:21:18 -0400658 if (grph_obj_type == GRAPH_OBJECT_TYPE_ENCODER) {
Alex Deucher36868bd2011-01-06 21:19:21 -0500659 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;
666 u16 caps = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200667
John Lindgren97ea5302011-03-24 23:28:31 +0000668 while (record->ucRecordSize > 0 &&
669 record->ucRecordType > 0 &&
Alex Deucher36868bd2011-01-06 21:19:21 -0500670 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 *)
674 record;
675 caps = le16_to_cpu(cap_record->usEncoderCap);
676 break;
677 }
678 record = (ATOM_COMMON_RECORD_HEADER *)
679 ((char *)record + record->ucRecordSize);
680 }
681 radeon_add_atom_encoder(dev,
682 encoder_obj,
683 le16_to_cpu
684 (path->
685 usDeviceTag),
686 caps);
687 }
688 }
Alex Deucher26b5bc92010-08-05 21:21:18 -0400689 } else if (grph_obj_type == GRAPH_OBJECT_TYPE_ROUTER) {
Alex Deucher26b5bc92010-08-05 21:21:18 -0400690 for (k = 0; k < router_obj->ucNumberOfObjects; k++) {
Tyson Whiteheadbdd91b22010-11-08 16:08:30 +0000691 u16 router_obj_id = le16_to_cpu(router_obj->asObjects[k].usObjectID);
Alex Deucher26b5bc92010-08-05 21:21:18 -0400692 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;
Alex Deucherfb939df2010-11-08 16:08:29 +0000699 ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD *cd_path;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400700 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));
Alex Deucherfb93df12013-08-27 12:36:01 -0400704 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);
Alex Deucher26b5bc92010-08-05 21:21:18 -0400708 int enum_id;
709
710 router.router_id = router_obj_id;
Alex Deucherfb93df12013-08-27 12:36:01 -0400711 for (enum_id = 0; enum_id < (*num_dst_objs); enum_id++) {
Alex Deucher26b5bc92010-08-05 21:21:18 -0400712 if (le16_to_cpu(path->usConnObjectId) ==
Alex Deucherfb93df12013-08-27 12:36:01 -0400713 le16_to_cpu(dst_objs[enum_id]))
Alex Deucher26b5bc92010-08-05 21:21:18 -0400714 break;
715 }
716
John Lindgren97ea5302011-03-24 23:28:31 +0000717 while (record->ucRecordSize > 0 &&
718 record->ucRecordType > 0 &&
Alex Deucher26b5bc92010-08-05 21:21:18 -0400719 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) {
720 switch (record->ucRecordType) {
721 case ATOM_I2C_RECORD_TYPE:
722 i2c_record =
723 (ATOM_I2C_RECORD *)
724 record;
725 i2c_config =
726 (ATOM_I2C_ID_CONFIG_ACCESS *)
727 &i2c_record->sucI2cId;
728 router.i2c_info =
729 radeon_lookup_i2c_gpio(rdev,
730 i2c_config->
731 ucAccess);
732 router.i2c_addr = i2c_record->ucI2CAddr >> 1;
733 break;
734 case ATOM_ROUTER_DDC_PATH_SELECT_RECORD_TYPE:
735 ddc_path = (ATOM_ROUTER_DDC_PATH_SELECT_RECORD *)
736 record;
Alex Deucherfb939df2010-11-08 16:08:29 +0000737 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];
741 break;
742 case ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD_TYPE:
743 cd_path = (ATOM_ROUTER_DATA_CLOCK_PATH_SELECT_RECORD *)
744 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];
Alex Deucher26b5bc92010-08-05 21:21:18 -0400749 break;
750 }
751 record = (ATOM_COMMON_RECORD_HEADER *)
752 ((char *)record + record->ucRecordSize);
753 }
754 }
755 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200756 }
757 }
758
Alex Deuchereed45b32009-12-04 14:45:27 -0500759 /* look up gpio for ddc, hpd */
Alex Deucher2bfcc0f2010-05-18 19:26:46 -0400760 ddc_bus.valid = false;
761 hpd.hpd = RADEON_HPD_NONE;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200762 if ((le16_to_cpu(path->usDeviceTag) &
Alex Deuchereed45b32009-12-04 14:45:27 -0500763 (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT)) == 0) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200764 for (j = 0; j < con_obj->ucNumberOfObjects; j++) {
765 if (le16_to_cpu(path->usConnObjectId) ==
766 le16_to_cpu(con_obj->asObjects[j].
767 usObjectID)) {
768 ATOM_COMMON_RECORD_HEADER
769 *record =
770 (ATOM_COMMON_RECORD_HEADER
771 *)
772 (ctx->bios + data_offset +
773 le16_to_cpu(con_obj->
774 asObjects[j].
775 usRecordOffset));
776 ATOM_I2C_RECORD *i2c_record;
Alex Deuchereed45b32009-12-04 14:45:27 -0500777 ATOM_HPD_INT_RECORD *hpd_record;
Alex Deucherd3f420d2009-12-08 14:30:49 -0500778 ATOM_I2C_ID_CONFIG_ACCESS *i2c_config;
Alex Deucher6a93cb22009-11-23 17:39:28 -0500779
John Lindgren97ea5302011-03-24 23:28:31 +0000780 while (record->ucRecordSize > 0 &&
781 record->ucRecordType > 0 &&
782 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) {
Alex Deuchereed45b32009-12-04 14:45:27 -0500783 switch (record->ucRecordType) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200784 case ATOM_I2C_RECORD_TYPE:
785 i2c_record =
Alex Deuchereed45b32009-12-04 14:45:27 -0500786 (ATOM_I2C_RECORD *)
787 record;
Alex Deucherd3f420d2009-12-08 14:30:49 -0500788 i2c_config =
789 (ATOM_I2C_ID_CONFIG_ACCESS *)
790 &i2c_record->sucI2cId;
Alex Deuchereed45b32009-12-04 14:45:27 -0500791 ddc_bus = radeon_lookup_i2c_gpio(rdev,
Alex Deucherd3f420d2009-12-08 14:30:49 -0500792 i2c_config->
793 ucAccess);
Alex Deuchereed45b32009-12-04 14:45:27 -0500794 break;
795 case ATOM_HPD_INT_RECORD_TYPE:
796 hpd_record =
797 (ATOM_HPD_INT_RECORD *)
798 record;
Alex Deucher09e619c2014-11-07 11:16:25 -0500799 gpio = radeon_atombios_lookup_gpio(rdev,
Alex Deuchereed45b32009-12-04 14:45:27 -0500800 hpd_record->ucHPDIntGPIOID);
801 hpd = radeon_atom_get_hpd_info_from_gpio(rdev, &gpio);
802 hpd.plugged_state = hpd_record->ucPlugged_PinState;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200803 break;
804 }
805 record =
806 (ATOM_COMMON_RECORD_HEADER
807 *) ((char *)record
808 +
809 record->
810 ucRecordSize);
811 }
812 break;
813 }
814 }
Alex Deuchereed45b32009-12-04 14:45:27 -0500815 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200816
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500817 /* needed for aux chan transactions */
Alex Deucher8e36ed02010-05-18 19:26:47 -0400818 ddc_bus.hpd = hpd.hpd;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500819
Alex Deucher705af9c2009-09-10 16:31:13 -0400820 conn_id = le16_to_cpu(path->usConnObjectId);
821
822 if (!radeon_atom_apply_quirks
823 (dev, le16_to_cpu(path->usDeviceTag), &connector_type,
Alex Deuchereed45b32009-12-04 14:45:27 -0500824 &ddc_bus, &conn_id, &hpd))
Alex Deucher705af9c2009-09-10 16:31:13 -0400825 continue;
826
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200827 radeon_add_atom_connector(dev,
Alex Deucher705af9c2009-09-10 16:31:13 -0400828 conn_id,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200829 le16_to_cpu(path->
830 usDeviceTag),
831 connector_type, &ddc_bus,
Alex Deucher5137ee92010-08-12 18:58:47 -0400832 igp_lane_info,
Alex Deuchereed45b32009-12-04 14:45:27 -0500833 connector_object_id,
Alex Deucher26b5bc92010-08-05 21:21:18 -0400834 &hpd,
835 &router);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200836
837 }
838 }
839
840 radeon_link_encoder_connector(dev);
841
Dave Airlie9843ead2015-02-24 09:24:04 +1000842 radeon_setup_mst_connector(dev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200843 return true;
844}
845
Alex Deucherb75fad02009-11-05 13:16:01 -0500846static uint16_t atombios_get_connector_object_id(struct drm_device *dev,
847 int connector_type,
848 uint16_t devices)
849{
850 struct radeon_device *rdev = dev->dev_private;
851
852 if (rdev->flags & RADEON_IS_IGP) {
853 return supported_devices_connector_object_id_convert
854 [connector_type];
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;
862 uint8_t frev, crev;
863 ATOM_XTMDS_INFO *xtmds;
864
Alex Deuchera084e6e2010-03-18 01:04:01 -0400865 if (atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset)) {
866 xtmds = (ATOM_XTMDS_INFO *)(ctx->bios + data_offset);
Alex Deucherb75fad02009-11-05 13:16:01 -0500867
Alex Deuchera084e6e2010-03-18 01:04:01 -0400868 if (xtmds->ucSupportedLink & ATOM_XTMDS_SUPPORTED_DUALLINK) {
869 if (connector_type == DRM_MODE_CONNECTOR_DVII)
870 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I;
871 else
872 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D;
873 } else {
874 if (connector_type == DRM_MODE_CONNECTOR_DVII)
875 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I;
876 else
877 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D;
878 }
879 } else
880 return supported_devices_connector_object_id_convert
881 [connector_type];
Alex Deucherb75fad02009-11-05 13:16:01 -0500882 } else {
883 return supported_devices_connector_object_id_convert
884 [connector_type];
885 }
886}
887
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200888struct bios_connector {
889 bool valid;
Alex Deucher705af9c2009-09-10 16:31:13 -0400890 uint16_t line_mux;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200891 uint16_t devices;
892 int connector_type;
893 struct radeon_i2c_bus_rec ddc_bus;
Alex Deuchereed45b32009-12-04 14:45:27 -0500894 struct radeon_hpd hpd;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200895};
896
897bool radeon_get_atom_connector_info_from_supported_devices_table(struct
898 drm_device
899 *dev)
900{
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;
906 uint8_t frev, crev;
907 uint16_t device_support;
908 uint8_t dac;
909 union atom_supported_devices *supported_devices;
Alex Deuchereed45b32009-12-04 14:45:27 -0500910 int i, j, max_device;
Prarit Bhargavaf49d2732010-05-24 10:24:07 +1000911 struct bios_connector *bios_connectors;
912 size_t bc_size = sizeof(*bios_connectors) * ATOM_MAX_SUPPORTED_DEVICE;
Alex Deucher26b5bc92010-08-05 21:21:18 -0400913 struct radeon_router router;
914
Alex Deucherfb939df2010-11-08 16:08:29 +0000915 router.ddc_valid = false;
916 router.cd_valid = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200917
Prarit Bhargavaf49d2732010-05-24 10:24:07 +1000918 bios_connectors = kzalloc(bc_size, GFP_KERNEL);
919 if (!bios_connectors)
Alex Deuchera084e6e2010-03-18 01:04:01 -0400920 return false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200921
Prarit Bhargavaf49d2732010-05-24 10:24:07 +1000922 if (!atom_parse_data_header(ctx, index, &size, &frev, &crev,
923 &data_offset)) {
924 kfree(bios_connectors);
925 return false;
926 }
927
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200928 supported_devices =
929 (union atom_supported_devices *)(ctx->bios + data_offset);
930
931 device_support = le16_to_cpu(supported_devices->info.usDeviceSupport);
932
Alex Deuchereed45b32009-12-04 14:45:27 -0500933 if (frev > 1)
934 max_device = ATOM_MAX_SUPPORTED_DEVICE;
935 else
936 max_device = ATOM_MAX_SUPPORTED_DEVICE_INFO;
937
938 for (i = 0; i < max_device; i++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200939 ATOM_CONNECTOR_INFO_I2C ci =
940 supported_devices->info.asConnInfo[i];
941
942 bios_connectors[i].valid = false;
943
944 if (!(device_support & (1 << i))) {
945 continue;
946 }
947
948 if (i == ATOM_DEVICE_CV_INDEX) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000949 DRM_DEBUG_KMS("Skipping Component Video\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200950 continue;
951 }
952
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200953 bios_connectors[i].connector_type =
954 supported_devices_connector_convert[ci.sucConnectorInfo.
955 sbfAccess.
956 bfConnectorType];
957
958 if (bios_connectors[i].connector_type ==
959 DRM_MODE_CONNECTOR_Unknown)
960 continue;
961
962 dac = ci.sucConnectorInfo.sbfAccess.bfAssociatedDAC;
963
Alex Deucherd3f420d2009-12-08 14:30:49 -0500964 bios_connectors[i].line_mux =
965 ci.sucI2cId.ucAccess;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200966
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;
977 } else
978 bios_connectors[i].ddc_bus =
Alex Deuchereed45b32009-12-04 14:45:27 -0500979 radeon_lookup_i2c_gpio(rdev,
980 bios_connectors[i].line_mux);
981
982 if ((crev > 1) && (frev > 1)) {
983 u8 isb = supported_devices->info_2d1.asIntSrcInfo[i].ucIntSrcBitmap;
984 switch (isb) {
985 case 0x4:
986 bios_connectors[i].hpd.hpd = RADEON_HPD_1;
987 break;
988 case 0xa:
989 bios_connectors[i].hpd.hpd = RADEON_HPD_2;
990 break;
991 default:
992 bios_connectors[i].hpd.hpd = RADEON_HPD_NONE;
993 break;
994 }
995 } else {
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;
1000 else
1001 bios_connectors[i].hpd.hpd = RADEON_HPD_NONE;
1002 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001003
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.
1007 */
1008 if (i == ATOM_DEVICE_CRT1_INDEX || i == ATOM_DEVICE_CRT2_INDEX)
1009 bios_connectors[i].connector_type =
1010 DRM_MODE_CONNECTOR_VGA;
1011
1012 if (!radeon_atom_apply_quirks
1013 (dev, (1 << i), &bios_connectors[i].connector_type,
Alex Deuchereed45b32009-12-04 14:45:27 -05001014 &bios_connectors[i].ddc_bus, &bios_connectors[i].line_mux,
1015 &bios_connectors[i].hpd))
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001016 continue;
1017
1018 bios_connectors[i].valid = true;
1019 bios_connectors[i].devices = (1 << i);
1020
1021 if (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom)
1022 radeon_add_atom_encoder(dev,
Alex Deucher5137ee92010-08-12 18:58:47 -04001023 radeon_get_encoder_enum(dev,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001024 (1 << i),
1025 dac),
Alex Deucher36868bd2011-01-06 21:19:21 -05001026 (1 << i),
1027 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001028 else
1029 radeon_add_legacy_encoder(dev,
Alex Deucher5137ee92010-08-12 18:58:47 -04001030 radeon_get_encoder_enum(dev,
Alex Deucherf56cd642009-12-18 11:28:22 -05001031 (1 << i),
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001032 dac),
1033 (1 << i));
1034 }
1035
1036 /* combine shared connectors */
Alex Deuchereed45b32009-12-04 14:45:27 -05001037 for (i = 0; i < max_device; i++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001038 if (bios_connectors[i].valid) {
Alex Deuchereed45b32009-12-04 14:45:27 -05001039 for (j = 0; j < max_device; j++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001040 if (bios_connectors[j].valid && (i != j)) {
1041 if (bios_connectors[i].line_mux ==
1042 bios_connectors[j].line_mux) {
Alex Deucherf56cd642009-12-18 11:28:22 -05001043 /* 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;
1047 continue;
1048 }
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;
1052 continue;
1053 }
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))
Alex Deuchereed45b32009-12-04 14:45:27 -05001064 bios_connectors[i].hpd =
1065 bios_connectors[j].hpd;
Alex Deucherf56cd642009-12-18 11:28:22 -05001066 bios_connectors[j].valid = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001067 }
1068 }
1069 }
1070 }
1071 }
1072 }
1073
1074 /* add the connectors */
Alex Deuchereed45b32009-12-04 14:45:27 -05001075 for (i = 0; i < max_device; i++) {
Alex Deucherb75fad02009-11-05 13:16:01 -05001076 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);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001081 radeon_add_atom_connector(dev,
1082 bios_connectors[i].line_mux,
1083 bios_connectors[i].devices,
1084 bios_connectors[i].
1085 connector_type,
1086 &bios_connectors[i].ddc_bus,
Alex Deucher5137ee92010-08-12 18:58:47 -04001087 0,
Alex Deuchereed45b32009-12-04 14:45:27 -05001088 connector_object_id,
Alex Deucher26b5bc92010-08-05 21:21:18 -04001089 &bios_connectors[i].hpd,
1090 &router);
Alex Deucherb75fad02009-11-05 13:16:01 -05001091 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001092 }
1093
1094 radeon_link_encoder_connector(dev);
1095
Prarit Bhargavaf49d2732010-05-24 10:24:07 +10001096 kfree(bios_connectors);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001097 return true;
1098}
1099
1100union 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;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001105 ATOM_FIRMWARE_INFO_V2_1 info_21;
Alex Deucherf82b3dd2011-01-06 21:19:15 -05001106 ATOM_FIRMWARE_INFO_V2_2 info_22;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001107};
1108
1109bool radeon_atom_get_clock_info(struct drm_device *dev)
1110{
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;
1115 uint8_t frev, crev;
1116 struct radeon_pll *p1pll = &rdev->clock.p1pll;
1117 struct radeon_pll *p2pll = &rdev->clock.p2pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001118 struct radeon_pll *dcpll = &rdev->clock.dcpll;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001119 struct radeon_pll *spll = &rdev->clock.spll;
1120 struct radeon_pll *mpll = &rdev->clock.mpll;
1121 uint16_t data_offset;
1122
Alex Deuchera084e6e2010-03-18 01:04:01 -04001123 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1124 &frev, &crev, &data_offset)) {
1125 firmware_info =
1126 (union firmware_info *)(mode_info->atom_context->bios +
1127 data_offset);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001128 /* pixel clocks */
1129 p1pll->reference_freq =
1130 le16_to_cpu(firmware_info->info.usReferenceClock);
1131 p1pll->reference_div = 0;
1132
Mathias Fröhlichbc293e52009-10-19 17:49:49 -04001133 if (crev < 2)
1134 p1pll->pll_out_min =
1135 le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Output);
1136 else
1137 p1pll->pll_out_min =
1138 le32_to_cpu(firmware_info->info_12.ulMinPixelClockPLL_Output);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001139 p1pll->pll_out_max =
1140 le32_to_cpu(firmware_info->info.ulMaxPixelClockPLL_Output);
1141
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001142 if (crev >= 4) {
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;
1151 } else {
1152 p1pll->lcd_pll_out_min = p1pll->pll_out_min;
1153 p1pll->lcd_pll_out_max = p1pll->pll_out_max;
1154 }
1155
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001156 if (p1pll->pll_out_min == 0) {
1157 if (ASIC_IS_AVIVO(rdev))
1158 p1pll->pll_out_min = 64800;
1159 else
1160 p1pll->pll_out_min = 20000;
1161 }
1162
1163 p1pll->pll_in_min =
1164 le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Input);
1165 p1pll->pll_in_max =
1166 le16_to_cpu(firmware_info->info.usMaxPixelClockPLL_Input);
1167
1168 *p2pll = *p1pll;
1169
1170 /* system clock */
Alex Deucherf82b3dd2011-01-06 21:19:15 -05001171 if (ASIC_IS_DCE4(rdev))
1172 spll->reference_freq =
1173 le16_to_cpu(firmware_info->info_21.usCoreReferenceClock);
1174 else
1175 spll->reference_freq =
1176 le16_to_cpu(firmware_info->info.usReferenceClock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001177 spll->reference_div = 0;
1178
1179 spll->pll_out_min =
1180 le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Output);
1181 spll->pll_out_max =
1182 le32_to_cpu(firmware_info->info.ulMaxEngineClockPLL_Output);
1183
1184 /* ??? */
1185 if (spll->pll_out_min == 0) {
1186 if (ASIC_IS_AVIVO(rdev))
1187 spll->pll_out_min = 64800;
1188 else
1189 spll->pll_out_min = 20000;
1190 }
1191
1192 spll->pll_in_min =
1193 le16_to_cpu(firmware_info->info.usMinEngineClockPLL_Input);
1194 spll->pll_in_max =
1195 le16_to_cpu(firmware_info->info.usMaxEngineClockPLL_Input);
1196
1197 /* memory clock */
Alex Deucherf82b3dd2011-01-06 21:19:15 -05001198 if (ASIC_IS_DCE4(rdev))
1199 mpll->reference_freq =
1200 le16_to_cpu(firmware_info->info_21.usMemoryReferenceClock);
1201 else
1202 mpll->reference_freq =
1203 le16_to_cpu(firmware_info->info.usReferenceClock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001204 mpll->reference_div = 0;
1205
1206 mpll->pll_out_min =
1207 le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Output);
1208 mpll->pll_out_max =
1209 le32_to_cpu(firmware_info->info.ulMaxMemoryClockPLL_Output);
1210
1211 /* ??? */
1212 if (mpll->pll_out_min == 0) {
1213 if (ASIC_IS_AVIVO(rdev))
1214 mpll->pll_out_min = 64800;
1215 else
1216 mpll->pll_out_min = 20000;
1217 }
1218
1219 mpll->pll_in_min =
1220 le16_to_cpu(firmware_info->info.usMinMemoryClockPLL_Input);
1221 mpll->pll_in_max =
1222 le16_to_cpu(firmware_info->info.usMaxMemoryClockPLL_Input);
1223
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);
1228
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001229 if (ASIC_IS_DCE4(rdev)) {
1230 rdev->clock.default_dispclk =
1231 le32_to_cpu(firmware_info->info_21.ulDefaultDispEngineClkFreq);
Alex Deucherf82b3dd2011-01-06 21:19:15 -05001232 if (rdev->clock.default_dispclk == 0) {
Alex Deucher93689312014-06-18 11:46:35 -04001233 if (ASIC_IS_DCE6(rdev))
1234 rdev->clock.default_dispclk = 60000; /* 600 Mhz */
1235 else if (ASIC_IS_DCE5(rdev))
Alex Deucherf82b3dd2011-01-06 21:19:15 -05001236 rdev->clock.default_dispclk = 54000; /* 540 Mhz */
1237 else
1238 rdev->clock.default_dispclk = 60000; /* 600 Mhz */
1239 }
Alex Deucher93689312014-06-18 11:46:35 -04001240 /* 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;
1245 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001246 rdev->clock.dp_extclk =
1247 le16_to_cpu(firmware_info->info_21.usUniphyDPModeExtClkFreq);
Alex Deucher4489cd622013-03-22 15:59:10 -04001248 rdev->clock.current_dispclk = rdev->clock.default_dispclk;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001249 }
1250 *dcpll = *p1pll;
1251
Alex Deucherb20f9be2011-06-08 13:01:11 -04001252 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;
1255
Alex Deucheraf7912e2012-07-26 09:50:57 -04001256 /* not technically a clock, but... */
1257 rdev->mode_info.firmware_flags =
1258 le16_to_cpu(firmware_info->info.usFirmwareCapability.susAccess);
1259
Slava Grigorevc9a392e2016-01-26 16:45:10 -05001260 if (ASIC_IS_DCE8(rdev))
1261 rdev->clock.vco_freq =
Slava Grigorevac4a9352015-12-17 11:09:58 -05001262 le32_to_cpu(firmware_info->info_22.ulGPUPLL_OutputFreq);
Slava Grigorevc9a392e2016-01-26 16:45:10 -05001263 else
1264 rdev->clock.vco_freq = rdev->clock.current_dispclk;
1265
1266 if (rdev->clock.vco_freq == 0)
1267 rdev->clock.vco_freq = 360000; /* 3.6 GHz */
Slava Grigorevac4a9352015-12-17 11:09:58 -05001268
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001269 return true;
1270 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001271
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001272 return false;
1273}
1274
Alex Deucher06b64762010-01-05 11:27:29 -05001275union igp_info {
1276 struct _ATOM_INTEGRATED_SYSTEM_INFO info;
1277 struct _ATOM_INTEGRATED_SYSTEM_INFO_V2 info_2;
Alex Deucher3838f462012-07-25 12:32:59 -04001278 struct _ATOM_INTEGRATED_SYSTEM_INFO_V6 info_6;
1279 struct _ATOM_INTEGRATED_SYSTEM_INFO_V1_7 info_7;
Alex Deucherc2037ad2012-07-25 12:45:16 -04001280 struct _ATOM_INTEGRATED_SYSTEM_INFO_V1_8 info_8;
Alex Deucher06b64762010-01-05 11:27:29 -05001281};
1282
1283bool radeon_atombios_sideport_present(struct radeon_device *rdev)
1284{
1285 struct radeon_mode_info *mode_info = &rdev->mode_info;
1286 int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo);
1287 union igp_info *igp_info;
1288 u8 frev, crev;
1289 u16 data_offset;
1290
Alex Deucher4c70b2e2010-08-02 19:39:15 -04001291 /* sideport is AMD only */
1292 if (rdev->family == CHIP_RS600)
1293 return false;
1294
Alex Deuchera084e6e2010-03-18 01:04:01 -04001295 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 +
Alex Deucher06b64762010-01-05 11:27:29 -05001298 data_offset);
Alex Deucher06b64762010-01-05 11:27:29 -05001299 switch (crev) {
1300 case 1:
Cédric Cano45894332011-02-11 19:45:37 -05001301 if (le32_to_cpu(igp_info->info.ulBootUpMemoryClock))
Alex Deucher4c70b2e2010-08-02 19:39:15 -04001302 return true;
Alex Deucher06b64762010-01-05 11:27:29 -05001303 break;
1304 case 2:
Cédric Cano45894332011-02-11 19:45:37 -05001305 if (le32_to_cpu(igp_info->info_2.ulBootUpSidePortClock))
Alex Deucher06b64762010-01-05 11:27:29 -05001306 return true;
1307 break;
1308 default:
1309 DRM_ERROR("Unsupported IGP table: %d %d\n", frev, crev);
1310 break;
1311 }
1312 }
1313 return false;
1314}
1315
Dave Airlie445282d2009-09-09 17:40:54 +10001316bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder,
1317 struct radeon_encoder_int_tmds *tmds)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001318{
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;
1325 uint8_t frev, crev;
1326 uint16_t maxfreq;
1327 int i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001328
Alex Deuchera084e6e2010-03-18 01:04:01 -04001329 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1330 &frev, &crev, &data_offset)) {
1331 tmds_info =
1332 (struct _ATOM_TMDS_INFO *)(mode_info->atom_context->bios +
1333 data_offset);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001334
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001335 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;
1350
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001351 DRM_DEBUG_KMS("TMDS PLL From ATOMBIOS %u %x\n",
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001352 tmds->tmds_pll[i].freq,
1353 tmds->tmds_pll[i].value);
1354
1355 if (maxfreq == tmds->tmds_pll[i].freq) {
1356 tmds->tmds_pll[i].freq = 0xffffffff;
1357 break;
1358 }
1359 }
Dave Airlie445282d2009-09-09 17:40:54 +10001360 return true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001361 }
Dave Airlie445282d2009-09-09 17:40:54 +10001362 return false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001363}
1364
Alex Deucherba032a52010-10-04 17:13:01 -04001365bool radeon_atombios_get_ppll_ss_info(struct radeon_device *rdev,
1366 struct radeon_atom_ss *ss,
1367 int id)
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001368{
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001369 struct radeon_mode_info *mode_info = &rdev->mode_info;
1370 int index = GetIndexIntoMasterTable(DATA, PPLL_SS_Info);
Alex Deucherba032a52010-10-04 17:13:01 -04001371 uint16_t data_offset, size;
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001372 struct _ATOM_SPREAD_SPECTRUM_INFO *ss_info;
Alex Deuchera7ee8242013-09-16 17:46:00 -04001373 struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT *ss_assign;
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001374 uint8_t frev, crev;
Alex Deucherba032a52010-10-04 17:13:01 -04001375 int i, num_indices;
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001376
Alex Deucherba032a52010-10-04 17:13:01 -04001377 memset(ss, 0, sizeof(struct radeon_atom_ss));
1378 if (atom_parse_data_header(mode_info->atom_context, index, &size,
Alex Deuchera084e6e2010-03-18 01:04:01 -04001379 &frev, &crev, &data_offset)) {
1380 ss_info =
1381 (struct _ATOM_SPREAD_SPECTRUM_INFO *)(mode_info->atom_context->bios + data_offset);
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001382
Alex Deucherba032a52010-10-04 17:13:01 -04001383 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1384 sizeof(ATOM_SPREAD_SPECTRUM_ASSIGNMENT);
Alex Deuchera7ee8242013-09-16 17:46:00 -04001385 ss_assign = (struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT*)
1386 ((u8 *)&ss_info->asSS_Info[0]);
Alex Deucherba032a52010-10-04 17:13:01 -04001387 for (i = 0; i < num_indices; i++) {
Alex Deuchera7ee8242013-09-16 17:46:00 -04001388 if (ss_assign->ucSS_Id == id) {
Alex Deucher279b2152009-12-08 14:07:03 -05001389 ss->percentage =
Alex Deuchera7ee8242013-09-16 17:46:00 -04001390 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;
Alex Deucherba032a52010-10-04 17:13:01 -04001396 return true;
Alex Deucher279b2152009-12-08 14:07:03 -05001397 }
Alex Deuchera7ee8242013-09-16 17:46:00 -04001398 ss_assign = (struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT*)
1399 ((u8 *)ss_assign + sizeof(struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT));
Alex Deucher279b2152009-12-08 14:07:03 -05001400 }
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001401 }
Alex Deucherba032a52010-10-04 17:13:01 -04001402 return false;
1403}
1404
Alex Deucher4339c442010-11-22 17:56:25 -05001405static void radeon_atombios_get_igp_ss_overrides(struct radeon_device *rdev,
1406 struct radeon_atom_ss *ss,
1407 int id)
1408{
1409 struct radeon_mode_info *mode_info = &rdev->mode_info;
1410 int index = GetIndexIntoMasterTable(DATA, IntegratedSystemInfo);
1411 u16 data_offset, size;
Alex Deucher3838f462012-07-25 12:32:59 -04001412 union igp_info *igp_info;
Alex Deucher4339c442010-11-22 17:56:25 -05001413 u8 frev, crev;
1414 u16 percentage = 0, rate = 0;
1415
1416 /* get any igp specific overrides */
1417 if (atom_parse_data_header(mode_info->atom_context, index, &size,
1418 &frev, &crev, &data_offset)) {
Alex Deucher3838f462012-07-25 12:32:59 -04001419 igp_info = (union igp_info *)
Alex Deucher4339c442010-11-22 17:56:25 -05001420 (mode_info->atom_context->bios + data_offset);
Alex Deucher3838f462012-07-25 12:32:59 -04001421 switch (crev) {
1422 case 6:
1423 switch (id) {
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);
1427 break;
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);
1431 break;
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);
1435 break;
1436 }
Alex Deucher4339c442010-11-22 17:56:25 -05001437 break;
Alex Deucher3838f462012-07-25 12:32:59 -04001438 case 7:
1439 switch (id) {
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);
1443 break;
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);
1447 break;
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);
1451 break;
1452 }
Alex Deucher4339c442010-11-22 17:56:25 -05001453 break;
Alex Deucherc2037ad2012-07-25 12:45:16 -04001454 case 8:
1455 switch (id) {
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);
1459 break;
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);
1463 break;
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);
1467 break;
1468 }
1469 break;
Alex Deucher3838f462012-07-25 12:32:59 -04001470 default:
1471 DRM_ERROR("Unsupported IGP table: %d %d\n", frev, crev);
Alex Deucher4339c442010-11-22 17:56:25 -05001472 break;
1473 }
1474 if (percentage)
1475 ss->percentage = percentage;
1476 if (rate)
1477 ss->rate = rate;
1478 }
1479}
1480
Alex Deucherba032a52010-10-04 17:13:01 -04001481union 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;
1485};
1486
Alex Deuchera7ee8242013-09-16 17:46:00 -04001487union 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;
1491};
1492
Alex Deucherba032a52010-10-04 17:13:01 -04001493bool radeon_atombios_get_asic_ss_info(struct radeon_device *rdev,
1494 struct radeon_atom_ss *ss,
1495 int id, u32 clock)
1496{
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;
Alex Deuchera7ee8242013-09-16 17:46:00 -04001501 union asic_ss_assignment *ss_assign;
Alex Deucherba032a52010-10-04 17:13:01 -04001502 uint8_t frev, crev;
1503 int i, num_indices;
1504
Alex Deucher9cb84ab2013-08-19 19:06:19 -04001505 if (id == ASIC_INTERNAL_MEMORY_SS) {
1506 if (!(rdev->mode_info.firmware_flags & ATOM_BIOS_INFO_MEMORY_CLOCK_SS_SUPPORT))
1507 return false;
1508 }
1509 if (id == ASIC_INTERNAL_ENGINE_SS) {
1510 if (!(rdev->mode_info.firmware_flags & ATOM_BIOS_INFO_ENGINE_CLOCK_SS_SUPPORT))
1511 return false;
1512 }
1513
Alex Deucherba032a52010-10-04 17:13:01 -04001514 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)) {
1517
1518 ss_info =
1519 (union asic_ss_info *)(mode_info->atom_context->bios + data_offset);
1520
1521 switch (frev) {
1522 case 1:
1523 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1524 sizeof(ATOM_ASIC_SS_ASSIGNMENT);
1525
Alex Deuchera7ee8242013-09-16 17:46:00 -04001526 ss_assign = (union asic_ss_assignment *)((u8 *)&ss_info->info.asSpreadSpectrum[0]);
Alex Deucherba032a52010-10-04 17:13:01 -04001527 for (i = 0; i < num_indices; i++) {
Alex Deuchera7ee8242013-09-16 17:46:00 -04001528 if ((ss_assign->v1.ucClockIndication == id) &&
1529 (clock <= le32_to_cpu(ss_assign->v1.ulTargetClockRange))) {
Alex Deucherba032a52010-10-04 17:13:01 -04001530 ss->percentage =
Alex Deuchera7ee8242013-09-16 17:46:00 -04001531 le16_to_cpu(ss_assign->v1.usSpreadSpectrumPercentage);
1532 ss->type = ss_assign->v1.ucSpreadSpectrumMode;
1533 ss->rate = le16_to_cpu(ss_assign->v1.usSpreadRateInKhz);
Alex Deucher18f8f522014-01-15 13:41:31 -05001534 ss->percentage_divider = 100;
Alex Deucherba032a52010-10-04 17:13:01 -04001535 return true;
1536 }
Alex Deuchera7ee8242013-09-16 17:46:00 -04001537 ss_assign = (union asic_ss_assignment *)
1538 ((u8 *)ss_assign + sizeof(ATOM_ASIC_SS_ASSIGNMENT));
Alex Deucherba032a52010-10-04 17:13:01 -04001539 }
1540 break;
1541 case 2:
1542 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1543 sizeof(ATOM_ASIC_SS_ASSIGNMENT_V2);
Alex Deuchera7ee8242013-09-16 17:46:00 -04001544 ss_assign = (union asic_ss_assignment *)((u8 *)&ss_info->info_2.asSpreadSpectrum[0]);
Alex Deucherba032a52010-10-04 17:13:01 -04001545 for (i = 0; i < num_indices; i++) {
Alex Deuchera7ee8242013-09-16 17:46:00 -04001546 if ((ss_assign->v2.ucClockIndication == id) &&
1547 (clock <= le32_to_cpu(ss_assign->v2.ulTargetClockRange))) {
Alex Deucherba032a52010-10-04 17:13:01 -04001548 ss->percentage =
Alex Deuchera7ee8242013-09-16 17:46:00 -04001549 le16_to_cpu(ss_assign->v2.usSpreadSpectrumPercentage);
1550 ss->type = ss_assign->v2.ucSpreadSpectrumMode;
1551 ss->rate = le16_to_cpu(ss_assign->v2.usSpreadRateIn10Hz);
Alex Deucher18f8f522014-01-15 13:41:31 -05001552 ss->percentage_divider = 100;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04001553 if ((crev == 2) &&
1554 ((id == ASIC_INTERNAL_ENGINE_SS) ||
1555 (id == ASIC_INTERNAL_MEMORY_SS)))
1556 ss->rate /= 100;
Alex Deucherba032a52010-10-04 17:13:01 -04001557 return true;
1558 }
Alex Deuchera7ee8242013-09-16 17:46:00 -04001559 ss_assign = (union asic_ss_assignment *)
1560 ((u8 *)ss_assign + sizeof(ATOM_ASIC_SS_ASSIGNMENT_V2));
Alex Deucherba032a52010-10-04 17:13:01 -04001561 }
1562 break;
1563 case 3:
1564 num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
1565 sizeof(ATOM_ASIC_SS_ASSIGNMENT_V3);
Alex Deuchera7ee8242013-09-16 17:46:00 -04001566 ss_assign = (union asic_ss_assignment *)((u8 *)&ss_info->info_3.asSpreadSpectrum[0]);
Alex Deucherba032a52010-10-04 17:13:01 -04001567 for (i = 0; i < num_indices; i++) {
Alex Deuchera7ee8242013-09-16 17:46:00 -04001568 if ((ss_assign->v3.ucClockIndication == id) &&
1569 (clock <= le32_to_cpu(ss_assign->v3.ulTargetClockRange))) {
Alex Deucherba032a52010-10-04 17:13:01 -04001570 ss->percentage =
Alex Deuchera7ee8242013-09-16 17:46:00 -04001571 le16_to_cpu(ss_assign->v3.usSpreadSpectrumPercentage);
1572 ss->type = ss_assign->v3.ucSpreadSpectrumMode;
1573 ss->rate = le16_to_cpu(ss_assign->v3.usSpreadRateIn10Hz);
Alex Deucher18f8f522014-01-15 13:41:31 -05001574 if (ss_assign->v3.ucSpreadSpectrumMode &
1575 SS_MODE_V3_PERCENTAGE_DIV_BY_1000_MASK)
1576 ss->percentage_divider = 1000;
1577 else
1578 ss->percentage_divider = 100;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04001579 if ((id == ASIC_INTERNAL_ENGINE_SS) ||
1580 (id == ASIC_INTERNAL_MEMORY_SS))
1581 ss->rate /= 100;
Alex Deucher4339c442010-11-22 17:56:25 -05001582 if (rdev->flags & RADEON_IS_IGP)
1583 radeon_atombios_get_igp_ss_overrides(rdev, ss, id);
Alex Deucherba032a52010-10-04 17:13:01 -04001584 return true;
1585 }
Alex Deuchera7ee8242013-09-16 17:46:00 -04001586 ss_assign = (union asic_ss_assignment *)
1587 ((u8 *)ss_assign + sizeof(ATOM_ASIC_SS_ASSIGNMENT_V3));
Alex Deucherba032a52010-10-04 17:13:01 -04001588 }
1589 break;
1590 default:
1591 DRM_ERROR("Unsupported ASIC_InternalSS_Info table: %d %d\n", frev, crev);
1592 break;
1593 }
1594
1595 }
1596 return false;
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001597}
1598
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001599union lvds_info {
1600 struct _ATOM_LVDS_INFO info;
1601 struct _ATOM_LVDS_INFO_V12 info_12;
1602};
1603
1604struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct
1605 radeon_encoder
1606 *encoder)
1607{
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);
Alex Deucher7dde8a192009-11-30 01:40:24 -05001612 uint16_t data_offset, misc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001613 union lvds_info *lvds_info;
1614 uint8_t frev, crev;
1615 struct radeon_encoder_atom_dig *lvds = NULL;
Alex Deucher5137ee92010-08-12 18:58:47 -04001616 int encoder_enum = (encoder->encoder_enum & ENUM_ID_MASK) >> ENUM_ID_SHIFT;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001617
Alex Deuchera084e6e2010-03-18 01:04:01 -04001618 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1619 &frev, &crev, &data_offset)) {
1620 lvds_info =
1621 (union lvds_info *)(mode_info->atom_context->bios + data_offset);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001622 lvds =
1623 kzalloc(sizeof(struct radeon_encoder_atom_dig), GFP_KERNEL);
1624
1625 if (!lvds)
1626 return NULL;
1627
Alex Deucherde2103e2009-10-09 15:14:30 -04001628 lvds->native_mode.clock =
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001629 le16_to_cpu(lvds_info->info.sLCDTiming.usPixClk) * 10;
Alex Deucherde2103e2009-10-09 15:14:30 -04001630 lvds->native_mode.hdisplay =
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001631 le16_to_cpu(lvds_info->info.sLCDTiming.usHActive);
Alex Deucherde2103e2009-10-09 15:14:30 -04001632 lvds->native_mode.vdisplay =
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001633 le16_to_cpu(lvds_info->info.sLCDTiming.usVActive);
Alex Deucherde2103e2009-10-09 15:14:30 -04001634 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 +
Alex Deucher1ff26a32010-05-18 00:23:15 -04001643 le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncOffset);
Alex Deucherde2103e2009-10-09 15:14:30 -04001644 lvds->native_mode.vsync_end = lvds->native_mode.vsync_start +
1645 le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001646 lvds->panel_pwr_delay =
1647 le16_to_cpu(lvds_info->info.usOffDelayInMs);
Alex Deucherba032a52010-10-04 17:13:01 -04001648 lvds->lcd_misc = lvds_info->info.ucLVDS_Misc;
Alex Deucher7dde8a192009-11-30 01:40:24 -05001649
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;
1661
Cédric Cano45894332011-02-11 19:45:37 -05001662 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);
Alex Deucher7a868e12010-12-08 22:13:05 -05001664
Alex Deucherde2103e2009-10-09 15:14:30 -04001665 /* set crtc values */
1666 drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001667
Alex Deucherba032a52010-10-04 17:13:01 -04001668 lvds->lcd_ss_id = lvds_info->info.ucSS_Id;
Alex Deucherebbe1cb2009-10-16 11:15:25 -04001669
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001670 encoder->native_mode = lvds->native_mode;
Alex Deucher5137ee92010-08-12 18:58:47 -04001671
1672 if (encoder_enum == 2)
1673 lvds->linkb = true;
1674 else
1675 lvds->linkb = false;
1676
Alex Deucherc324acd2010-12-08 22:13:06 -05001677 /* parse the lcd record table */
Cédric Cano45894332011-02-11 19:45:37 -05001678 if (le16_to_cpu(lvds_info->info.usModePatchTableOffset)) {
Alex Deucherc324acd2010-12-08 22:13:06 -05001679 ATOM_FAKE_EDID_PATCH_RECORD *fake_edid_record;
1680 ATOM_PANEL_RESOLUTION_PATCH_RECORD *panel_res_record;
1681 bool bad_record = false;
Alex Deucher05fa7ea2011-05-11 14:02:07 -04001682 u8 *record;
1683
1684 if ((frev == 1) && (crev < 2))
1685 /* absolute */
1686 record = (u8 *)(mode_info->atom_context->bios +
1687 le16_to_cpu(lvds_info->info.usModePatchTableOffset));
1688 else
1689 /* relative */
1690 record = (u8 *)(mode_info->atom_context->bios +
1691 data_offset +
1692 le16_to_cpu(lvds_info->info.usModePatchTableOffset));
Alex Deucherc324acd2010-12-08 22:13:06 -05001693 while (*record != ATOM_RECORD_END_TYPE) {
1694 switch (*record) {
1695 case LCD_MODE_PATCH_RECORD_MODE_TYPE:
1696 record += sizeof(ATOM_PATCH_RECORD_MODE);
1697 break;
1698 case LCD_RTS_RECORD_TYPE:
1699 record += sizeof(ATOM_LCD_RTS_RECORD);
1700 break;
1701 case LCD_CAP_RECORD_TYPE:
1702 record += sizeof(ATOM_LCD_MODE_CONTROL_CAP);
1703 break;
1704 case LCD_FAKE_EDID_PATCH_RECORD_TYPE:
1705 fake_edid_record = (ATOM_FAKE_EDID_PATCH_RECORD *)record;
1706 if (fake_edid_record->ucFakeEDIDLength) {
1707 struct edid *edid;
1708 int edid_size =
1709 max((int)EDID_LENGTH, (int)fake_edid_record->ucFakeEDIDLength);
1710 edid = kmalloc(edid_size, GFP_KERNEL);
1711 if (edid) {
1712 memcpy((u8 *)edid, (u8 *)&fake_edid_record->ucFakeEDIDString[0],
1713 fake_edid_record->ucFakeEDIDLength);
1714
Dave Airlieeaa4f5e2011-05-01 20:16:30 +10001715 if (drm_edid_is_valid(edid)) {
Alex Deucherc324acd2010-12-08 22:13:06 -05001716 rdev->mode_info.bios_hardcoded_edid = edid;
Dave Airlieeaa4f5e2011-05-01 20:16:30 +10001717 rdev->mode_info.bios_hardcoded_edid_size = edid_size;
1718 } else
Alex Deucherc324acd2010-12-08 22:13:06 -05001719 kfree(edid);
1720 }
1721 }
Alex Deucher95663942013-08-20 14:59:01 -04001722 record += fake_edid_record->ucFakeEDIDLength ?
1723 fake_edid_record->ucFakeEDIDLength + 2 :
1724 sizeof(ATOM_FAKE_EDID_PATCH_RECORD);
Alex Deucherc324acd2010-12-08 22:13:06 -05001725 break;
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);
1731 break;
1732 default:
1733 DRM_ERROR("Bad LCD record %d\n", *record);
1734 bad_record = true;
1735 break;
1736 }
1737 if (bad_record)
1738 break;
1739 }
1740 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001741 }
1742 return lvds;
1743}
1744
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001745struct radeon_encoder_primary_dac *
1746radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder)
1747{
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;
1754 uint8_t frev, crev;
1755 uint8_t bg, dac;
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001756 struct radeon_encoder_primary_dac *p_dac = NULL;
1757
Alex Deuchera084e6e2010-03-18 01:04:01 -04001758 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);
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001762
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001763 p_dac = kzalloc(sizeof(struct radeon_encoder_primary_dac), GFP_KERNEL);
1764
1765 if (!p_dac)
1766 return NULL;
1767
1768 bg = dac_info->ucDAC1_BG_Adjustment;
1769 dac = dac_info->ucDAC1_DAC_Adjustment;
1770 p_dac->ps2_pdac_adj = (bg << 8) | (dac);
1771
1772 }
1773 return p_dac;
1774}
1775
Dave Airlie4ce001a2009-08-13 16:32:14 +10001776bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index,
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001777 struct drm_display_mode *mode)
Dave Airlie4ce001a2009-08-13 16:32:14 +10001778{
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);
1784 u8 frev, crev;
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001785 u16 data_offset, misc;
Dave Airlie4ce001a2009-08-13 16:32:14 +10001786
Alex Deuchera084e6e2010-03-18 01:04:01 -04001787 if (!atom_parse_data_header(mode_info->atom_context, data_index, NULL,
1788 &frev, &crev, &data_offset))
1789 return false;
Dave Airlie4ce001a2009-08-13 16:32:14 +10001790
1791 switch (crev) {
1792 case 1:
1793 tv_info = (ATOM_ANALOG_TV_INFO *)(mode_info->atom_context->bios + data_offset);
Dan Carpenter0031c412010-04-27 14:11:04 -07001794 if (index >= MAX_SUPPORTED_TV_TIMING)
Dave Airlie4ce001a2009-08-13 16:32:14 +10001795 return false;
1796
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001797 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);
Dave Airlie4ce001a2009-08-13 16:32:14 +10001802
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001803 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);
Dave Airlie4ce001a2009-08-13 16:32:14 +10001808
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001809 mode->flags = 0;
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;
Dave Airlie4ce001a2009-08-13 16:32:14 +10001821
Ville Syrjälä265d09a2013-10-27 21:20:10 +02001822 mode->crtc_clock = mode->clock =
1823 le16_to_cpu(tv_info->aModeTimings[index].usPixelClock) * 10;
Dave Airlie4ce001a2009-08-13 16:32:14 +10001824
1825 if (index == 1) {
1826 /* PAL timings appear to have wrong values for totals */
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001827 mode->crtc_htotal -= 1;
1828 mode->crtc_vtotal -= 1;
Dave Airlie4ce001a2009-08-13 16:32:14 +10001829 }
1830 break;
1831 case 2:
1832 tv_info_v1_2 = (ATOM_ANALOG_TV_INFO_V1_2 *)(mode_info->atom_context->bios + data_offset);
Dan Carpenter0031c412010-04-27 14:11:04 -07001833 if (index >= MAX_SUPPORTED_TV_TIMING_V1_2)
Dave Airlie4ce001a2009-08-13 16:32:14 +10001834 return false;
1835
1836 dtd_timings = &tv_info_v1_2->aModeTimings[index];
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001837 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);
Dave Airlie4ce001a2009-08-13 16:32:14 +10001844
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001845 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);
1852
1853 mode->flags = 0;
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;
1865
Ville Syrjälä265d09a2013-10-27 21:20:10 +02001866 mode->crtc_clock = mode->clock =
1867 le16_to_cpu(dtd_timings->usPixClk) * 10;
Dave Airlie4ce001a2009-08-13 16:32:14 +10001868 break;
1869 }
1870 return true;
1871}
1872
Alex Deucherd79766f2009-12-17 19:00:29 -05001873enum radeon_tv_std
1874radeon_atombios_get_tv_info(struct radeon_device *rdev)
1875{
1876 struct radeon_mode_info *mode_info = &rdev->mode_info;
1877 int index = GetIndexIntoMasterTable(DATA, AnalogTV_Info);
1878 uint16_t data_offset;
1879 uint8_t frev, crev;
1880 struct _ATOM_ANALOG_TV_INFO *tv_info;
1881 enum radeon_tv_std tv_std = TV_STD_NTSC;
1882
Alex Deuchera084e6e2010-03-18 01:04:01 -04001883 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1884 &frev, &crev, &data_offset)) {
Alex Deucherd79766f2009-12-17 19:00:29 -05001885
Alex Deuchera084e6e2010-03-18 01:04:01 -04001886 tv_info = (struct _ATOM_ANALOG_TV_INFO *)
1887 (mode_info->atom_context->bios + data_offset);
Alex Deucherd79766f2009-12-17 19:00:29 -05001888
Alex Deuchera084e6e2010-03-18 01:04:01 -04001889 switch (tv_info->ucTV_BootUpDefaultStandard) {
1890 case ATOM_TV_NTSC:
1891 tv_std = TV_STD_NTSC;
Alex Deucher40f76d82010-10-07 22:38:42 -04001892 DRM_DEBUG_KMS("Default TV standard: NTSC\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001893 break;
1894 case ATOM_TV_NTSCJ:
1895 tv_std = TV_STD_NTSC_J;
Alex Deucher40f76d82010-10-07 22:38:42 -04001896 DRM_DEBUG_KMS("Default TV standard: NTSC-J\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001897 break;
1898 case ATOM_TV_PAL:
1899 tv_std = TV_STD_PAL;
Alex Deucher40f76d82010-10-07 22:38:42 -04001900 DRM_DEBUG_KMS("Default TV standard: PAL\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001901 break;
1902 case ATOM_TV_PALM:
1903 tv_std = TV_STD_PAL_M;
Alex Deucher40f76d82010-10-07 22:38:42 -04001904 DRM_DEBUG_KMS("Default TV standard: PAL-M\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001905 break;
1906 case ATOM_TV_PALN:
1907 tv_std = TV_STD_PAL_N;
Alex Deucher40f76d82010-10-07 22:38:42 -04001908 DRM_DEBUG_KMS("Default TV standard: PAL-N\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001909 break;
1910 case ATOM_TV_PALCN:
1911 tv_std = TV_STD_PAL_CN;
Alex Deucher40f76d82010-10-07 22:38:42 -04001912 DRM_DEBUG_KMS("Default TV standard: PAL-CN\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001913 break;
1914 case ATOM_TV_PAL60:
1915 tv_std = TV_STD_PAL_60;
Alex Deucher40f76d82010-10-07 22:38:42 -04001916 DRM_DEBUG_KMS("Default TV standard: PAL-60\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001917 break;
1918 case ATOM_TV_SECAM:
1919 tv_std = TV_STD_SECAM;
Alex Deucher40f76d82010-10-07 22:38:42 -04001920 DRM_DEBUG_KMS("Default TV standard: SECAM\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001921 break;
1922 default:
1923 tv_std = TV_STD_NTSC;
Alex Deucher40f76d82010-10-07 22:38:42 -04001924 DRM_DEBUG_KMS("Unknown TV standard; defaulting to NTSC\n");
Alex Deuchera084e6e2010-03-18 01:04:01 -04001925 break;
1926 }
Alex Deucherd79766f2009-12-17 19:00:29 -05001927 }
1928 return tv_std;
1929}
1930
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001931struct radeon_encoder_tv_dac *
1932radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder)
1933{
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;
1940 uint8_t frev, crev;
1941 uint8_t bg, dac;
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001942 struct radeon_encoder_tv_dac *tv_dac = NULL;
1943
Alex Deuchera084e6e2010-03-18 01:04:01 -04001944 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
1945 &frev, &crev, &data_offset)) {
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001946
Alex Deuchera084e6e2010-03-18 01:04:01 -04001947 dac_info = (struct _COMPASSIONATE_DATA *)
1948 (mode_info->atom_context->bios + data_offset);
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001949
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001950 tv_dac = kzalloc(sizeof(struct radeon_encoder_tv_dac), GFP_KERNEL);
1951
1952 if (!tv_dac)
1953 return NULL;
1954
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);
1958
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);
1962
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);
1966
Alex Deucherd79766f2009-12-17 19:00:29 -05001967 tv_dac->tv_std = radeon_atombios_get_tv_info(rdev);
Alex Deucher6fe7ac32009-06-12 17:26:08 +00001968 }
1969 return tv_dac;
1970}
1971
Alex Deucher29fb52c2010-03-11 10:01:17 -05001972static const char *thermal_controller_names[] = {
1973 "NONE",
Alex Deucher678e7dfa2010-04-22 14:17:56 -04001974 "lm63",
1975 "adm1032",
1976 "adm1030",
1977 "max6649",
Alex Deucher5dc35532014-07-27 23:21:50 -04001978 "lm63", /* lm64 */
Alex Deucher678e7dfa2010-04-22 14:17:56 -04001979 "f75375",
1980 "asc7xxx",
Alex Deucher29fb52c2010-03-11 10:01:17 -05001981};
1982
1983static const char *pp_lib_thermal_controller_names[] = {
1984 "NONE",
Alex Deucher678e7dfa2010-04-22 14:17:56 -04001985 "lm63",
1986 "adm1032",
1987 "adm1030",
1988 "max6649",
Alex Deucher5dc35532014-07-27 23:21:50 -04001989 "lm63", /* lm64 */
Alex Deucher678e7dfa2010-04-22 14:17:56 -04001990 "f75375",
Alex Deucher29fb52c2010-03-11 10:01:17 -05001991 "RV6xx",
1992 "RV770",
Alex Deucher678e7dfa2010-04-22 14:17:56 -04001993 "adt7473",
Alex Deucher560154e2010-11-22 17:56:34 -05001994 "NONE",
Alex Deucher49f65982010-03-24 16:39:45 -04001995 "External GPIO",
1996 "Evergreen",
Alex Deucherb0e66412010-11-22 17:56:35 -05001997 "emc2103",
1998 "Sumo",
Alex Deucher4fddba12011-01-06 21:19:22 -05001999 "Northern Islands",
Alex Deucher14607d02012-03-20 17:18:09 -04002000 "Southern Islands",
2001 "lm96163",
Alex Deucher51150202012-12-18 22:07:14 -05002002 "Sea Islands",
Alex Deucher29fb52c2010-03-11 10:01:17 -05002003};
2004
Alex Deucher56278a82009-12-28 13:58:44 -05002005union power_info {
2006 struct _ATOM_POWERPLAY_INFO info;
2007 struct _ATOM_POWERPLAY_INFO_V2 info_2;
2008 struct _ATOM_POWERPLAY_INFO_V3 info_3;
Alex Deucher560154e2010-11-22 17:56:34 -05002009 struct _ATOM_PPLIB_POWERPLAYTABLE pplib;
Alex Deucherb0e66412010-11-22 17:56:35 -05002010 struct _ATOM_PPLIB_POWERPLAYTABLE2 pplib2;
2011 struct _ATOM_PPLIB_POWERPLAYTABLE3 pplib3;
Alex Deucher56278a82009-12-28 13:58:44 -05002012};
2013
Alex Deucher560154e2010-11-22 17:56:34 -05002014union 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;
Alex Deucherb0e66412010-11-22 17:56:35 -05002018 struct _ATOM_PPLIB_SUMO_CLOCK_INFO sumo;
Alex Deucher14607d02012-03-20 17:18:09 -04002019 struct _ATOM_PPLIB_SI_CLOCK_INFO si;
Alex Deucherbc19f592013-06-07 11:41:05 -04002020 struct _ATOM_PPLIB_CI_CLOCK_INFO ci;
Alex Deucher560154e2010-11-22 17:56:34 -05002021};
2022
2023union pplib_power_state {
2024 struct _ATOM_PPLIB_STATE v1;
2025 struct _ATOM_PPLIB_STATE_V2 v2;
2026};
2027
2028static void radeon_atombios_parse_misc_flags_1_3(struct radeon_device *rdev,
2029 int state_index,
2030 u32 misc, u32 misc2)
2031{
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;
2052 }
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;
2065 }
2066}
2067
2068static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev)
2069{
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);
2077 u16 data_offset;
2078 u8 frev, crev;
2079
2080 if (!atom_parse_data_header(mode_info->atom_context, index, NULL,
2081 &frev, &crev, &data_offset))
2082 return state_index;
2083 power_info = (union power_info *)(mode_info->atom_context->bios + data_offset);
2084
2085 /* add the i2c bus for thermal/fan chip */
Alex Deucher4755fab2012-08-30 13:30:49 -04002086 if ((power_info->info.ucOverdriveThermalController > 0) &&
2087 (power_info->info.ucOverdriveThermalController < ARRAY_SIZE(thermal_controller_names))) {
Alex Deucher560154e2010-11-22 17:56:34 -05002088 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);
2100 }
2101 }
2102 num_modes = power_info->info.ucNumOfPowerModeEntries;
2103 if (num_modes > ATOM_MAX_NUMBEROF_POWER_BLOCK)
2104 num_modes = ATOM_MAX_NUMBEROF_POWER_BLOCK;
Alex Deucherf8e6bfc2013-04-25 09:29:17 -04002105 if (num_modes == 0)
2106 return state_index;
Alex Deucher0975b162011-02-02 18:42:03 -05002107 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) * num_modes, GFP_KERNEL);
2108 if (!rdev->pm.power_state)
2109 return state_index;
Alex Deucher560154e2010-11-22 17:56:34 -05002110 /* last mode is usually default, array is low to high */
2111 for (i = 0; i < num_modes; i++) {
Alex Deucher6991b8f2011-11-14 17:52:51 -05002112 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)
2115 return state_index;
2116 rdev->pm.power_state[state_index].num_clock_modes = 1;
Alex Deucher560154e2010-11-22 17:56:34 -05002117 rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE;
2118 switch (frev) {
2119 case 1:
Alex Deucher560154e2010-11-22 17:56:34 -05002120 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))
2127 continue;
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 =
2134 VOLTAGE_GPIO;
2135 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio =
Alex Deucher09e619c2014-11-07 11:16:25 -05002136 radeon_atombios_lookup_gpio(rdev,
Alex Deucher560154e2010-11-22 17:56:34 -05002137 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 =
2140 true;
2141 else
2142 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2143 false;
2144 } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) {
2145 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2146 VOLTAGE_VDDC;
2147 rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id =
2148 power_info->info.asPowerPlayInfo[i].ucVoltageDropIndex;
2149 }
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);
2152 state_index++;
2153 break;
2154 case 2:
Alex Deucher560154e2010-11-22 17:56:34 -05002155 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))
2162 continue;
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 =
2170 VOLTAGE_GPIO;
2171 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio =
Alex Deucher09e619c2014-11-07 11:16:25 -05002172 radeon_atombios_lookup_gpio(rdev,
Alex Deucher560154e2010-11-22 17:56:34 -05002173 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 =
2176 true;
2177 else
2178 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2179 false;
2180 } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) {
2181 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2182 VOLTAGE_VDDC;
2183 rdev->pm.power_state[state_index].clock_info[0].voltage.vddc_id =
2184 power_info->info_2.asPowerPlayInfo[i].ucVoltageDropIndex;
2185 }
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);
2188 state_index++;
2189 break;
2190 case 3:
Alex Deucher560154e2010-11-22 17:56:34 -05002191 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))
2198 continue;
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 =
2206 VOLTAGE_GPIO;
2207 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio =
Alex Deucher09e619c2014-11-07 11:16:25 -05002208 radeon_atombios_lookup_gpio(rdev,
Alex Deucher560154e2010-11-22 17:56:34 -05002209 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 =
2212 true;
2213 else
2214 rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2215 false;
2216 } else if (misc & ATOM_PM_MISCINFO_PROGRAM_VOLTAGE) {
2217 rdev->pm.power_state[state_index].clock_info[0].voltage.type =
2218 VOLTAGE_VDDC;
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 =
2223 true;
2224 rdev->pm.power_state[state_index].clock_info[0].voltage.vddci_id =
2225 power_info->info_3.asPowerPlayInfo[i].ucVDDCI_VoltageDropIndex;
2226 }
2227 }
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);
2230 state_index++;
2231 break;
2232 }
2233 }
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;
2245 }
2246 return state_index;
2247}
2248
2249static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *rdev,
2250 ATOM_PPLIB_THERMALCONTROLLER *controller)
2251{
2252 struct radeon_i2c_bus_rec i2c_bus;
2253
2254 /* add the i2c bus for thermal/fan chip */
2255 if (controller->ucType > 0) {
Alex Deucher9b92d1e2014-09-08 02:51:49 -04002256 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;
2263 }
Alex Deucher560154e2010-11-22 17:56:34 -05002264 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;
Alex Deucherb0e66412010-11-22 17:56:35 -05002279 } 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;
Alex Deucher4fddba12011-01-06 21:19:22 -05002284 } 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;
Alex Deucher14607d02012-03-20 17:18:09 -04002289 } 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;
Alex Deucher51150202012-12-18 22:07:14 -05002294 } 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;
Alex Deucher16fbe002013-04-22 21:41:26 -04002299 } 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;
Alex Deucherff437792014-09-08 02:33:32 -04002304 } 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;
Alex Deucher4755fab2012-08-30 13:30:49 -04002322 } else if (controller->ucType < ARRAY_SIZE(pp_lib_thermal_controller_names)) {
Alex Deucher560154e2010-11-22 17:56:34 -05002323 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");
Alex Deucherff437792014-09-08 02:33:32 -04002328 rdev->pm.int_thermal_type = THERMAL_TYPE_EXTERNAL;
Alex Deucher560154e2010-11-22 17:56:34 -05002329 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);
2337 }
Alex Deucher4755fab2012-08-30 13:30:49 -04002338 } else {
2339 DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n",
2340 controller->ucType,
2341 controller->ucI2cAddress >> 1,
2342 (controller->ucFanParameters &
2343 ATOM_PP_FANPARAMETERS_NOFAN) ? "without" : "with");
Alex Deucher560154e2010-11-22 17:56:34 -05002344 }
2345 }
2346}
2347
Alex Deucher4a6369e2013-04-12 14:04:10 -04002348void radeon_atombios_get_default_voltages(struct radeon_device *rdev,
Alex Deucher2abba662013-03-25 12:47:23 -04002349 u16 *vddc, u16 *vddci, u16 *mvdd)
Alex Deucher560154e2010-11-22 17:56:34 -05002350{
2351 struct radeon_mode_info *mode_info = &rdev->mode_info;
2352 int index = GetIndexIntoMasterTable(DATA, FirmwareInfo);
2353 u8 frev, crev;
2354 u16 data_offset;
2355 union firmware_info *firmware_info;
Alex Deucher2feea492011-04-12 14:49:24 -04002356
2357 *vddc = 0;
2358 *vddci = 0;
Alex Deucher2abba662013-03-25 12:47:23 -04002359 *mvdd = 0;
Alex Deucher560154e2010-11-22 17:56:34 -05002360
2361 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
2362 &frev, &crev, &data_offset)) {
2363 firmware_info =
2364 (union firmware_info *)(mode_info->atom_context->bios +
2365 data_offset);
Alex Deucher2feea492011-04-12 14:49:24 -04002366 *vddc = le16_to_cpu(firmware_info->info_14.usBootUpVDDCVoltage);
Alex Deucher2abba662013-03-25 12:47:23 -04002367 if ((frev == 2) && (crev >= 2)) {
Alex Deucher2feea492011-04-12 14:49:24 -04002368 *vddci = le16_to_cpu(firmware_info->info_22.usBootUpVDDCIVoltage);
Alex Deucher2abba662013-03-25 12:47:23 -04002369 *mvdd = le16_to_cpu(firmware_info->info_22.usBootUpMVDDCVoltage);
2370 }
Alex Deucher560154e2010-11-22 17:56:34 -05002371 }
Alex Deucher560154e2010-11-22 17:56:34 -05002372}
2373
2374static 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)
2377{
2378 int j;
2379 u32 misc = le32_to_cpu(non_clock_info->ulCapsAndSettings);
2380 u32 misc2 = le16_to_cpu(non_clock_info->usClassification);
Alex Deucher2abba662013-03-25 12:47:23 -04002381 u16 vddc, vddci, mvdd;
Alex Deucher2feea492011-04-12 14:49:24 -04002382
Alex Deucher2abba662013-03-25 12:47:23 -04002383 radeon_atombios_get_default_voltages(rdev, &vddc, &vddci, &mvdd);
Alex Deucher560154e2010-11-22 17:56:34 -05002384
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;
2394 break;
2395 case ATOM_PPLIB_CLASSIFICATION_UI_BALANCED:
2396 rdev->pm.power_state[state_index].type =
2397 POWER_STATE_TYPE_BALANCED;
2398 break;
2399 case ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE:
2400 rdev->pm.power_state[state_index].type =
2401 POWER_STATE_TYPE_PERFORMANCE;
2402 break;
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;
2407 break;
2408 }
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];
Alex Deucher982cb322013-04-29 10:51:26 -04002419 if ((rdev->family >= CHIP_BARTS) && !(rdev->flags & RADEON_IS_IGP)) {
Alex Deucher9ace9f72011-01-06 21:19:26 -05002420 /* 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;
Alex Deucher2feea492011-04-12 14:49:24 -04002424 rdev->pm.default_vddci = rdev->pm.power_state[state_index].clock_info[0].voltage.vddci;
Alex Deucher9ace9f72011-01-06 21:19:26 -05002425 } else {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04002426 u16 max_vddci = 0;
2427
2428 if (ASIC_IS_DCE4(rdev))
2429 radeon_atom_get_max_voltage(rdev,
2430 SET_VOLTAGE_TYPE_ASIC_VDDCI,
2431 &max_vddci);
2432 /* patch the table values with the default sclk/mclk from firmware info */
Alex Deucher9ace9f72011-01-06 21:19:26 -05002433 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;
2438 if (vddc)
2439 rdev->pm.power_state[state_index].clock_info[j].voltage.voltage =
2440 vddc;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04002441 if (max_vddci)
2442 rdev->pm.power_state[state_index].clock_info[j].voltage.vddci =
2443 max_vddci;
Alex Deucher9ace9f72011-01-06 21:19:26 -05002444 }
Alex Deucher560154e2010-11-22 17:56:34 -05002445 }
2446 }
2447}
2448
2449static 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)
2452{
2453 u32 sclk, mclk;
Alex Deuchere83753b2012-03-20 17:18:08 -04002454 u16 vddc;
Alex Deucher560154e2010-11-22 17:56:34 -05002455
2456 if (rdev->flags & RADEON_IS_IGP) {
Alex Deucherb0e66412010-11-22 17:56:35 -05002457 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;
2461 } else {
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;
2465 }
Alex Deucherbc19f592013-06-07 11:41:05 -04002466 } 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 =
2474 VOLTAGE_NONE;
Alex Deucher982cb322013-04-29 10:51:26 -04002475 } else if (rdev->family >= CHIP_TAHITI) {
Alex Deucher14607d02012-03-20 17:18:09 -04002476 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 =
2483 VOLTAGE_SW;
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);
Alex Deucher982cb322013-04-29 10:51:26 -04002488 } else if (rdev->family >= CHIP_CEDAR) {
Alex Deucher560154e2010-11-22 17:56:34 -05002489 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 =
2496 VOLTAGE_SW;
2497 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage =
Cédric Cano45894332011-02-11 19:45:37 -05002498 le16_to_cpu(clock_info->evergreen.usVDDC);
Alex Deucher2feea492011-04-12 14:49:24 -04002499 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.vddci =
2500 le16_to_cpu(clock_info->evergreen.usVDDCI);
Alex Deucher560154e2010-11-22 17:56:34 -05002501 } else {
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 =
2509 VOLTAGE_SW;
2510 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage =
Cédric Cano45894332011-02-11 19:45:37 -05002511 le16_to_cpu(clock_info->r600.usVDDC);
Alex Deucher560154e2010-11-22 17:56:34 -05002512 }
2513
Alex Deucheree4017f2011-06-23 12:19:32 -04002514 /* patch up vddc if necessary */
Alex Deuchere83753b2012-03-20 17:18:08 -04002515 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:
Alex Deucherc6cf7772013-07-05 13:14:30 -04002520 case ATOM_VIRTUAL_VOLTAGE_ID4:
2521 case ATOM_VIRTUAL_VOLTAGE_ID5:
2522 case ATOM_VIRTUAL_VOLTAGE_ID6:
2523 case ATOM_VIRTUAL_VOLTAGE_ID7:
Alex Deuchere83753b2012-03-20 17:18:08 -04002524 if (radeon_atom_get_max_vddc(rdev, VOLTAGE_TYPE_VDDC,
2525 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage,
2526 &vddc) == 0)
Alex Deucheree4017f2011-06-23 12:19:32 -04002527 rdev->pm.power_state[state_index].clock_info[mode_index].voltage.voltage = vddc;
Alex Deuchere83753b2012-03-20 17:18:08 -04002528 break;
2529 default:
2530 break;
Alex Deucheree4017f2011-06-23 12:19:32 -04002531 }
2532
Alex Deucher560154e2010-11-22 17:56:34 -05002533 if (rdev->flags & RADEON_IS_IGP) {
2534 /* skip invalid modes */
2535 if (rdev->pm.power_state[state_index].clock_info[mode_index].sclk == 0)
2536 return false;
2537 } else {
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))
2541 return false;
2542 }
2543 return true;
2544}
2545
2546static int radeon_atombios_parse_power_table_4_5(struct radeon_device *rdev)
2547{
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;
2551 int i, j;
2552 int state_index = 0, mode_index = 0;
2553 union pplib_clock_info *clock_info;
2554 bool valid;
2555 union power_info *power_info;
2556 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2557 u16 data_offset;
2558 u8 frev, crev;
2559
2560 if (!atom_parse_data_header(mode_info->atom_context, index, NULL,
2561 &frev, &crev, &data_offset))
2562 return state_index;
2563 power_info = (union power_info *)(mode_info->atom_context->bios + data_offset);
2564
2565 radeon_atombios_add_pplib_thermal_controller(rdev, &power_info->pplib.sThermalController);
Alex Deucherf8e6bfc2013-04-25 09:29:17 -04002566 if (power_info->pplib.ucNumStates == 0)
2567 return state_index;
Alex Deucher0975b162011-02-02 18:42:03 -05002568 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) *
2569 power_info->pplib.ucNumStates, GFP_KERNEL);
2570 if (!rdev->pm.power_state)
2571 return state_index;
Alex Deucher560154e2010-11-22 17:56:34 -05002572 /* first mode is usually default, followed by low to high */
2573 for (i = 0; i < power_info->pplib.ucNumStates; i++) {
2574 mode_index = 0;
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));
Alex Deucher8f3f1c92011-11-04 10:09:43 -04002584 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),
2587 GFP_KERNEL);
2588 if (!rdev->pm.power_state[i].clock_info)
2589 return state_index;
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,
2599 clock_info);
2600 if (valid)
2601 mode_index++;
2602 }
2603 } else {
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;
2608 mode_index++;
Alex Deucher560154e2010-11-22 17:56:34 -05002609 }
2610 rdev->pm.power_state[state_index].num_clock_modes = mode_index;
2611 if (mode_index) {
2612 radeon_atombios_parse_pplib_non_clock_info(rdev, state_index, mode_index,
2613 non_clock_info);
2614 state_index++;
2615 }
2616 }
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;
2622 }
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];
2630 }
2631 return state_index;
2632}
2633
Alex Deucherb0e66412010-11-22 17:56:35 -05002634static int radeon_atombios_parse_power_table_6(struct radeon_device *rdev)
2635{
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;
Alex Deucherf7346882012-03-20 17:17:58 -04002642 struct _StateArray *state_array;
2643 struct _ClockInfoArray *clock_info_array;
2644 struct _NonClockInfoArray *non_clock_info_array;
Alex Deucherb0e66412010-11-22 17:56:35 -05002645 bool valid;
2646 union power_info *power_info;
2647 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2648 u16 data_offset;
2649 u8 frev, crev;
Alex Deucher441e76c2013-05-01 14:34:54 -04002650 u8 *power_state_offset;
Alex Deucherb0e66412010-11-22 17:56:35 -05002651
2652 if (!atom_parse_data_header(mode_info->atom_context, index, NULL,
2653 &frev, &crev, &data_offset))
2654 return state_index;
2655 power_info = (union power_info *)(mode_info->atom_context->bios + data_offset);
2656
2657 radeon_atombios_add_pplib_thermal_controller(rdev, &power_info->pplib.sThermalController);
Alex Deucherf7346882012-03-20 17:17:58 -04002658 state_array = (struct _StateArray *)
Alex Deucherb0e66412010-11-22 17:56:35 -05002659 (mode_info->atom_context->bios + data_offset +
Cédric Cano45894332011-02-11 19:45:37 -05002660 le16_to_cpu(power_info->pplib.usStateArrayOffset));
Alex Deucherf7346882012-03-20 17:17:58 -04002661 clock_info_array = (struct _ClockInfoArray *)
Alex Deucherb0e66412010-11-22 17:56:35 -05002662 (mode_info->atom_context->bios + data_offset +
Cédric Cano45894332011-02-11 19:45:37 -05002663 le16_to_cpu(power_info->pplib.usClockInfoArrayOffset));
Alex Deucherf7346882012-03-20 17:17:58 -04002664 non_clock_info_array = (struct _NonClockInfoArray *)
Alex Deucherb0e66412010-11-22 17:56:35 -05002665 (mode_info->atom_context->bios + data_offset +
Cédric Cano45894332011-02-11 19:45:37 -05002666 le16_to_cpu(power_info->pplib.usNonClockInfoArrayOffset));
Alex Deucherf8e6bfc2013-04-25 09:29:17 -04002667 if (state_array->ucNumEntries == 0)
2668 return state_index;
Alex Deucher0975b162011-02-02 18:42:03 -05002669 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) *
2670 state_array->ucNumEntries, GFP_KERNEL);
2671 if (!rdev->pm.power_state)
2672 return state_index;
Alex Deucher441e76c2013-05-01 14:34:54 -04002673 power_state_offset = (u8 *)state_array->states;
Alex Deucherb0e66412010-11-22 17:56:35 -05002674 for (i = 0; i < state_array->ucNumEntries; i++) {
2675 mode_index = 0;
Alex Deucher441e76c2013-05-01 14:34:54 -04002676 power_state = (union pplib_power_state *)power_state_offset;
2677 non_clock_array_index = power_state->v2.nonClockInfoIndex;
Alex Deucherb0e66412010-11-22 17:56:35 -05002678 non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *)
2679 &non_clock_info_array->nonClockInfo[non_clock_array_index];
Alex Deucher8f3f1c92011-11-04 10:09:43 -04002680 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),
2683 GFP_KERNEL);
2684 if (!rdev->pm.power_state[i].clock_info)
2685 return state_index;
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];
Alex Deucher8f3f1c92011-11-04 10:09:43 -04002689 clock_info = (union pplib_clock_info *)
Alex Deucherf7346882012-03-20 17:17:58 -04002690 &clock_info_array->clockInfo[clock_array_index * clock_info_array->ucEntrySize];
Alex Deucher8f3f1c92011-11-04 10:09:43 -04002691 valid = radeon_atombios_parse_pplib_clock_info(rdev,
2692 state_index, mode_index,
2693 clock_info);
2694 if (valid)
2695 mode_index++;
2696 }
2697 } else {
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;
2702 mode_index++;
Alex Deucherb0e66412010-11-22 17:56:35 -05002703 }
2704 rdev->pm.power_state[state_index].num_clock_modes = mode_index;
2705 if (mode_index) {
2706 radeon_atombios_parse_pplib_non_clock_info(rdev, state_index, mode_index,
2707 non_clock_info);
2708 state_index++;
2709 }
Alex Deucher441e76c2013-05-01 14:34:54 -04002710 power_state_offset += 2 + power_state->v2.ucNumDPMLevels;
Alex Deucherb0e66412010-11-22 17:56:35 -05002711 }
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;
2717 }
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];
2725 }
2726 return state_index;
2727}
2728
Alex Deucher56278a82009-12-28 13:58:44 -05002729void radeon_atombios_get_power_modes(struct radeon_device *rdev)
2730{
2731 struct radeon_mode_info *mode_info = &rdev->mode_info;
2732 int index = GetIndexIntoMasterTable(DATA, PowerPlayInfo);
2733 u16 data_offset;
2734 u8 frev, crev;
Alex Deucher560154e2010-11-22 17:56:34 -05002735 int state_index = 0;
Alex Deucher56278a82009-12-28 13:58:44 -05002736
Alex Deuchera48b9b42010-04-22 14:03:55 -04002737 rdev->pm.default_power_state_index = -1;
Alex Deucher56278a82009-12-28 13:58:44 -05002738
Alex Deuchera084e6e2010-03-18 01:04:01 -04002739 if (atom_parse_data_header(mode_info->atom_context, index, NULL,
2740 &frev, &crev, &data_offset)) {
Alex Deucher560154e2010-11-22 17:56:34 -05002741 switch (frev) {
2742 case 1:
2743 case 2:
2744 case 3:
2745 state_index = radeon_atombios_parse_power_table_1_3(rdev);
2746 break;
2747 case 4:
2748 case 5:
2749 state_index = radeon_atombios_parse_power_table_4_5(rdev);
2750 break;
Alex Deucherb0e66412010-11-22 17:56:35 -05002751 case 6:
2752 state_index = radeon_atombios_parse_power_table_6(rdev);
2753 break;
Alex Deucher560154e2010-11-22 17:56:34 -05002754 default:
2755 break;
Alex Deucher56278a82009-12-28 13:58:44 -05002756 }
Alex Deucherf8e6bfc2013-04-25 09:29:17 -04002757 }
2758
2759 if (state_index == 0) {
Alex Deucher0975b162011-02-02 18:42:03 -05002760 rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state), GFP_KERNEL);
2761 if (rdev->pm.power_state) {
Alex Deucher8f3f1c92011-11-04 10:09:43 -04002762 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;
2777 state_index++;
2778 }
Alex Deucher0975b162011-02-02 18:42:03 -05002779 }
Alex Deucher56278a82009-12-28 13:58:44 -05002780 }
Alex Deucher02b17cc2010-04-22 13:25:06 -04002781
Alex Deucher56278a82009-12-28 13:58:44 -05002782 rdev->pm.num_power_states = state_index;
Rafał Miłecki9038dfd2010-02-20 23:15:04 +00002783
Alex Deuchera48b9b42010-04-22 14:03:55 -04002784 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
2785 rdev->pm.current_clock_mode_index = 0;
Alexander Müller4376eee2011-12-30 12:55:48 -05002786 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;
2789 else
2790 rdev->pm.current_vddc = 0;
Alex Deucher56278a82009-12-28 13:58:44 -05002791}
2792
Christian König7062ab62013-04-08 12:41:31 +02002793union 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;
Alex Deucher9219ed62013-02-19 14:35:34 -05002799 struct _COMPUTE_GPU_CLOCK_INPUT_PARAMETERS_V1_6 v6_in;
2800 struct _COMPUTE_GPU_CLOCK_OUTPUT_PARAMETERS_V1_6 v6_out;
Christian König7062ab62013-04-08 12:41:31 +02002801};
2802
2803int radeon_atom_get_clock_dividers(struct radeon_device *rdev,
2804 u8 clock_type,
2805 u32 clock,
2806 bool strobe_mode,
2807 struct atom_clock_dividers *dividers)
2808{
2809 union get_clock_dividers args;
2810 int index = GetIndexIntoMasterTable(COMMAND, ComputeMemoryEnginePLL);
2811 u8 frev, crev;
2812
2813 memset(&args, 0, sizeof(args));
2814 memset(dividers, 0, sizeof(struct atom_clock_dividers));
2815
2816 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
2817 return -EINVAL;
2818
2819 switch (crev) {
2820 case 1:
2821 /* r4xx, r5xx */
2822 args.v1.ucAction = clock_type;
2823 args.v1.ulClock = cpu_to_le32(clock); /* 10 khz */
2824
2825 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2826
2827 dividers->post_div = args.v1.ucPostDiv;
2828 dividers->fb_div = args.v1.ucFbDiv;
2829 dividers->enable_post_div = true;
2830 break;
2831 case 2:
2832 case 3:
Alex Deucher360b1f52013-06-07 11:50:12 -04002833 case 5:
2834 /* r6xx, r7xx, evergreen, ni, si */
Christian König7062ab62013-04-08 12:41:31 +02002835 if (rdev->family <= CHIP_RV770) {
2836 args.v2.ucAction = clock_type;
2837 args.v2.ulClock = cpu_to_le32(clock); /* 10 khz */
2838
2839 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2840
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)) ?
2846 true : false;
2847 dividers->vco_mode = (le32_to_cpu(args.v2.ulClock) & (1 << 25)) ? 1 : 0;
2848 } else
2849 dividers->enable_post_div = (dividers->fb_div & 1) ? true : false;
2850 } else {
2851 if (clock_type == COMPUTE_ENGINE_PLL_PARAM) {
Alex Deucherf4a25962013-04-22 09:59:01 -04002852 args.v3.ulClockParams = cpu_to_le32((clock_type << 24) | clock);
Christian König7062ab62013-04-08 12:41:31 +02002853
2854 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2855
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;
Alex Deucher20fab642013-07-28 12:33:56 -04002861 dividers->whole_fb_div = le16_to_cpu(args.v3.ulFbDiv.usFbDiv);
Christian König7062ab62013-04-08 12:41:31 +02002862 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;
2866 } else {
Alex Deucher360b1f52013-06-07 11:50:12 -04002867 /* for SI we use ComputeMemoryClockParam for memory plls */
2868 if (rdev->family >= CHIP_TAHITI)
2869 return -EINVAL;
Alex Deucherf4a25962013-04-22 09:59:01 -04002870 args.v5.ulClockParams = cpu_to_le32((clock_type << 24) | clock);
Christian König7062ab62013-04-08 12:41:31 +02002871 if (strobe_mode)
2872 args.v5.ucInputFlag = ATOM_PLL_INPUT_FLAG_PLL_STROBE_MODE_EN;
2873
2874 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2875
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;
2886 }
2887 }
2888 break;
2889 case 4:
2890 /* fusion */
2891 args.v4.ulClock = cpu_to_le32(clock); /* 10 khz */
2892
2893 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2894
Alex Deucher9219ed62013-02-19 14:35:34 -05002895 dividers->post_divider = dividers->post_div = args.v4.ucPostDiv;
Christian König7062ab62013-04-08 12:41:31 +02002896 dividers->real_clock = le32_to_cpu(args.v4.ulClock);
2897 break;
Alex Deucher9219ed62013-02-19 14:35:34 -05002898 case 6:
2899 /* CI */
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 */
2903
2904 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2905
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;
2913 break;
Christian König7062ab62013-04-08 12:41:31 +02002914 default:
2915 return -EINVAL;
2916 }
2917 return 0;
2918}
2919
Alex Deuchereaa778a2013-02-13 16:38:25 -05002920int radeon_atom_get_memory_pll_dividers(struct radeon_device *rdev,
2921 u32 clock,
2922 bool strobe_mode,
2923 struct atom_mpll_param *mpll_param)
2924{
2925 COMPUTE_MEMORY_CLOCK_PARAM_PARAMETERS_V2_1 args;
2926 int index = GetIndexIntoMasterTable(COMMAND, ComputeMemoryClockParam);
2927 u8 frev, crev;
2928
2929 memset(&args, 0, sizeof(args));
2930 memset(mpll_param, 0, sizeof(struct atom_mpll_param));
2931
2932 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
2933 return -EINVAL;
2934
2935 switch (frev) {
2936 case 2:
2937 switch (crev) {
2938 case 1:
2939 /* SI */
2940 args.ulClock = cpu_to_le32(clock); /* 10 khz */
2941 args.ucInputFlag = 0;
2942 if (strobe_mode)
2943 args.ucInputFlag |= MPLL_INPUT_FLAG_STROBE_MODE_EN;
2944
2945 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2946
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 =
Alex Deucher180f8052013-11-21 09:52:01 -05002953 (args.ucPllCntlFlag & MPLL_CNTL_FLAG_VCO_MODE_MASK);
Alex Deuchereaa778a2013-02-13 16:38:25 -05002954 mpll_param->yclk_sel =
2955 (args.ucPllCntlFlag & MPLL_CNTL_FLAG_BYPASS_DQ_PLL) ? 1 : 0;
2956 mpll_param->qdr =
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;
2960 break;
2961 default:
2962 return -EINVAL;
2963 }
2964 break;
2965 default:
2966 return -EINVAL;
2967 }
2968 return 0;
2969}
2970
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002971void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable)
2972{
2973 DYNAMIC_CLOCK_GATING_PS_ALLOCATION args;
2974 int index = GetIndexIntoMasterTable(COMMAND, DynamicClockGating);
2975
2976 args.ucEnable = enable;
2977
2978 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
2979}
2980
Rafał Miłecki74338742009-11-03 00:53:02 +01002981uint32_t radeon_atom_get_engine_clock(struct radeon_device *rdev)
2982{
2983 GET_ENGINE_CLOCK_PS_ALLOCATION args;
2984 int index = GetIndexIntoMasterTable(COMMAND, GetEngineClock);
2985
2986 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Cédric Cano45894332011-02-11 19:45:37 -05002987 return le32_to_cpu(args.ulReturnEngineClock);
Rafał Miłecki74338742009-11-03 00:53:02 +01002988}
2989
2990uint32_t radeon_atom_get_memory_clock(struct radeon_device *rdev)
2991{
2992 GET_MEMORY_CLOCK_PS_ALLOCATION args;
2993 int index = GetIndexIntoMasterTable(COMMAND, GetMemoryClock);
2994
2995 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Cédric Cano45894332011-02-11 19:45:37 -05002996 return le32_to_cpu(args.ulReturnMemoryClock);
Rafał Miłecki74338742009-11-03 00:53:02 +01002997}
2998
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002999void radeon_atom_set_engine_clock(struct radeon_device *rdev,
3000 uint32_t eng_clock)
3001{
3002 SET_ENGINE_CLOCK_PS_ALLOCATION args;
3003 int index = GetIndexIntoMasterTable(COMMAND, SetEngineClock);
3004
Cédric Cano45894332011-02-11 19:45:37 -05003005 args.ulTargetEngineClock = cpu_to_le32(eng_clock); /* 10 khz */
Jerome Glisse771fe6b2009-06-05 14:42:42 +02003006
3007 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3008}
3009
3010void radeon_atom_set_memory_clock(struct radeon_device *rdev,
3011 uint32_t mem_clock)
3012{
3013 SET_MEMORY_CLOCK_PS_ALLOCATION args;
3014 int index = GetIndexIntoMasterTable(COMMAND, SetMemoryClock);
3015
3016 if (rdev->flags & RADEON_IS_IGP)
3017 return;
3018
Cédric Cano45894332011-02-11 19:45:37 -05003019 args.ulTargetMemoryClock = cpu_to_le32(mem_clock); /* 10 khz */
Jerome Glisse771fe6b2009-06-05 14:42:42 +02003020
3021 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3022}
3023
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003024void radeon_atom_set_engine_dram_timings(struct radeon_device *rdev,
3025 u32 eng_clock, u32 mem_clock)
3026{
3027 SET_ENGINE_CLOCK_PS_ALLOCATION args;
3028 int index = GetIndexIntoMasterTable(COMMAND, DynamicMemorySettings);
3029 u32 tmp;
3030
3031 memset(&args, 0, sizeof(args));
3032
3033 tmp = eng_clock & SET_CLOCK_FREQ_MASK;
3034 tmp |= (COMPUTE_ENGINE_PLL_PARAM << 24);
3035
3036 args.ulTargetEngineClock = cpu_to_le32(tmp);
3037 if (mem_clock)
3038 args.sReserved.ulClock = cpu_to_le32(mem_clock & SET_CLOCK_FREQ_MASK);
3039
3040 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3041}
3042
3043void radeon_atom_update_memory_dll(struct radeon_device *rdev,
3044 u32 mem_clock)
3045{
3046 u32 args;
3047 int index = GetIndexIntoMasterTable(COMMAND, DynamicMemorySettings);
3048
3049 args = cpu_to_le32(mem_clock); /* 10 khz */
3050
3051 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3052}
3053
3054void radeon_atom_set_ac_timing(struct radeon_device *rdev,
3055 u32 mem_clock)
3056{
3057 SET_MEMORY_CLOCK_PS_ALLOCATION args;
3058 int index = GetIndexIntoMasterTable(COMMAND, DynamicMemorySettings);
3059 u32 tmp = mem_clock | (COMPUTE_MEMORY_PLL_PARAM << 24);
3060
3061 args.ulTargetMemoryClock = cpu_to_le32(tmp); /* 10 khz */
3062
3063 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3064}
3065
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003066union set_voltage {
3067 struct _SET_VOLTAGE_PS_ALLOCATION alloc;
3068 struct _SET_VOLTAGE_PARAMETERS v1;
3069 struct _SET_VOLTAGE_PARAMETERS_V2 v2;
Alex Deuchere83753b2012-03-20 17:18:08 -04003070 struct _SET_VOLTAGE_PARAMETERS_V1_3 v3;
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003071};
3072
Alex Deucher8a83ec52011-04-12 14:49:23 -04003073void radeon_atom_set_voltage(struct radeon_device *rdev, u16 voltage_level, u8 voltage_type)
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003074{
3075 union set_voltage args;
3076 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
Alex Deucher8a83ec52011-04-12 14:49:23 -04003077 u8 frev, crev, volt_index = voltage_level;
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003078
3079 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3080 return;
3081
Alex Deuchera377e182011-06-20 13:00:31 -04003082 /* 0xff01 is a flag rather then an actual voltage */
3083 if (voltage_level == 0xff01)
3084 return;
3085
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003086 switch (crev) {
3087 case 1:
Alex Deucher8a83ec52011-04-12 14:49:23 -04003088 args.v1.ucVoltageType = voltage_type;
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003089 args.v1.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_ALL_SOURCE;
3090 args.v1.ucVoltageIndex = volt_index;
3091 break;
3092 case 2:
Alex Deucher8a83ec52011-04-12 14:49:23 -04003093 args.v2.ucVoltageType = voltage_type;
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003094 args.v2.ucVoltageMode = SET_ASIC_VOLTAGE_MODE_SET_VOLTAGE;
Alex Deucher8a83ec52011-04-12 14:49:23 -04003095 args.v2.usVoltageLevel = cpu_to_le16(voltage_level);
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003096 break;
Alex Deuchere83753b2012-03-20 17:18:08 -04003097 case 3:
3098 args.v3.ucVoltageType = voltage_type;
3099 args.v3.ucVoltageMode = ATOM_SET_VOLTAGE;
3100 args.v3.usVoltageLevel = cpu_to_le16(voltage_level);
3101 break;
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003102 default:
3103 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3104 return;
3105 }
3106
3107 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3108}
3109
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003110int radeon_atom_get_max_vddc(struct radeon_device *rdev, u8 voltage_type,
3111 u16 voltage_id, u16 *voltage)
Alex Deucheree4017f2011-06-23 12:19:32 -04003112{
3113 union set_voltage args;
3114 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3115 u8 frev, crev;
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003116
Alex Deucheree4017f2011-06-23 12:19:32 -04003117 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3118 return -EINVAL;
3119
3120 switch (crev) {
3121 case 1:
3122 return -EINVAL;
3123 case 2:
3124 args.v2.ucVoltageType = SET_VOLTAGE_GET_MAX_VOLTAGE;
3125 args.v2.ucVoltageMode = 0;
3126 args.v2.usVoltageLevel = 0;
3127
3128 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3129
3130 *voltage = le16_to_cpu(args.v2.usVoltageLevel);
3131 break;
Alex Deuchere83753b2012-03-20 17:18:08 -04003132 case 3:
3133 args.v3.ucVoltageType = voltage_type;
3134 args.v3.ucVoltageMode = ATOM_GET_VOLTAGE_LEVEL;
3135 args.v3.usVoltageLevel = cpu_to_le16(voltage_id);
3136
3137 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3138
3139 *voltage = le16_to_cpu(args.v3.usVoltageLevel);
3140 break;
Alex Deucheree4017f2011-06-23 12:19:32 -04003141 default:
3142 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3143 return -EINVAL;
3144 }
3145
3146 return 0;
3147}
Alex Deucher7ac9aa52010-05-27 19:25:54 -04003148
Alex Deucherbeb79f42013-02-19 17:14:43 -05003149int radeon_atom_get_leakage_vddc_based_on_leakage_idx(struct radeon_device *rdev,
3150 u16 *voltage,
3151 u16 leakage_idx)
3152{
3153 return radeon_atom_get_max_vddc(rdev, VOLTAGE_TYPE_VDDC, leakage_idx, voltage);
3154}
3155
Alex Deucher62c35fd72013-02-19 18:15:06 -05003156int radeon_atom_get_leakage_id_from_vbios(struct radeon_device *rdev,
3157 u16 *leakage_id)
3158{
3159 union set_voltage args;
3160 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3161 u8 frev, crev;
3162
3163 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3164 return -EINVAL;
3165
3166 switch (crev) {
3167 case 3:
3168 case 4:
3169 args.v3.ucVoltageType = 0;
3170 args.v3.ucVoltageMode = ATOM_GET_LEAKAGE_ID;
3171 args.v3.usVoltageLevel = 0;
3172
3173 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3174
3175 *leakage_id = le16_to_cpu(args.v3.usVoltageLevel);
3176 break;
3177 default:
3178 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3179 return -EINVAL;
3180 }
3181
3182 return 0;
3183}
3184
3185int 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)
3189{
3190 int index = GetIndexIntoMasterTable(DATA, ASIC_ProfilingInfo);
3191 u8 frev, crev;
3192 u16 data_offset, size;
3193 int i, j;
3194 ATOM_ASIC_PROFILING_INFO_V2_1 *profile;
3195 u16 *leakage_bin, *vddc_id_buf, *vddc_buf, *vddci_id_buf, *vddci_buf;
3196
3197 *vddc = 0;
3198 *vddci = 0;
3199
3200 if (!atom_parse_data_header(rdev->mode_info.atom_context, index, &size,
3201 &frev, &crev, &data_offset))
3202 return -EINVAL;
3203
3204 profile = (ATOM_ASIC_PROFILING_INFO_V2_1 *)
3205 (rdev->mode_info.atom_context->bios + data_offset);
3206
3207 switch (frev) {
3208 case 1:
3209 return -EINVAL;
3210 case 2:
3211 switch (crev) {
3212 case 1:
3213 if (size < sizeof(ATOM_ASIC_PROFILING_INFO_V2_1))
3214 return -EINVAL;
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));
3221 vddc_buf = (u16 *)
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));
3227 vddci_buf = (u16 *)
3228 (rdev->mode_info.atom_context->bios + data_offset +
3229 le16_to_cpu(profile->usElbVDDCI_LevelArrayOffset));
3230
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];
3237 break;
3238 }
3239 }
3240 break;
3241 }
3242 }
3243 }
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];
3250 break;
3251 }
3252 }
3253 break;
3254 }
3255 }
3256 }
3257 break;
3258 default:
3259 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3260 return -EINVAL;
3261 }
3262 break;
3263 default:
3264 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3265 return -EINVAL;
3266 }
3267
3268 return 0;
3269}
3270
Alex Deuchere9f274b2014-07-31 17:57:42 -04003271union 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;
3274};
3275
3276int radeon_atom_get_voltage_evv(struct radeon_device *rdev,
3277 u16 virtual_voltage_id,
3278 u16 *voltage)
3279{
3280 int index = GetIndexIntoMasterTable(COMMAND, GetVoltageInfo);
3281 u32 entry_id;
3282 u32 count = rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.count;
3283 union get_voltage_info args;
3284
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 ==
3287 virtual_voltage_id)
3288 break;
3289 }
3290
3291 if (entry_id >= count)
3292 return -EINVAL;
3293
3294 args.in.ucVoltageType = VOLTAGE_TYPE_VDDC;
3295 args.in.ucVoltageMode = ATOM_GET_VOLTAGE_EVV_VOLTAGE;
Alex Deucher09b6e852015-02-12 00:40:58 -05003296 args.in.usVoltageLevel = cpu_to_le16(virtual_voltage_id);
Alex Deuchere9f274b2014-07-31 17:57:42 -04003297 args.in.ulSCLKFreq =
3298 cpu_to_le32(rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries[entry_id].clk);
3299
3300 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3301
3302 *voltage = le16_to_cpu(args.evv_out.usVoltageLevel);
3303
3304 return 0;
3305}
3306
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003307int radeon_atom_get_voltage_gpio_settings(struct radeon_device *rdev,
3308 u16 voltage_level, u8 voltage_type,
3309 u32 *gpio_value, u32 *gpio_mask)
3310{
3311 union set_voltage args;
3312 int index = GetIndexIntoMasterTable(COMMAND, SetVoltage);
3313 u8 frev, crev;
3314
3315 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev))
3316 return -EINVAL;
3317
3318 switch (crev) {
3319 case 1:
3320 return -EINVAL;
3321 case 2:
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);
3325
3326 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3327
3328 *gpio_mask = le32_to_cpu(*(u32 *)&args.v2);
3329
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);
3333
3334 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
3335
3336 *gpio_value = le32_to_cpu(*(u32 *)&args.v2);
3337 break;
3338 default:
3339 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3340 return -EINVAL;
3341 }
3342
3343 return 0;
3344}
3345
3346union voltage_object_info {
Alex Deucher58653ab2013-02-13 17:04:59 -05003347 struct _ATOM_VOLTAGE_OBJECT_INFO v1;
3348 struct _ATOM_VOLTAGE_OBJECT_INFO_V2 v2;
3349 struct _ATOM_VOLTAGE_OBJECT_INFO_V3_1 v3;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003350};
3351
Alex Deucher779187f2013-03-28 14:47:34 -04003352union voltage_object {
3353 struct _ATOM_VOLTAGE_OBJECT v1;
3354 struct _ATOM_VOLTAGE_OBJECT_V2 v2;
3355 union _ATOM_VOLTAGE_OBJECT_V3 v3;
3356};
3357
3358static ATOM_VOLTAGE_OBJECT *atom_lookup_voltage_object_v1(ATOM_VOLTAGE_OBJECT_INFO *v1,
3359 u8 voltage_type)
3360{
Alex Deucher6e764762013-06-24 10:54:16 -04003361 u32 size = le16_to_cpu(v1->sHeader.usStructureSize);
Alex Deucher779187f2013-03-28 14:47:34 -04003362 u32 offset = offsetof(ATOM_VOLTAGE_OBJECT_INFO, asVoltageObj[0]);
3363 u8 *start = (u8 *)v1;
3364
3365 while (offset < size) {
3366 ATOM_VOLTAGE_OBJECT *vo = (ATOM_VOLTAGE_OBJECT *)(start + offset);
3367 if (vo->ucVoltageType == voltage_type)
3368 return vo;
3369 offset += offsetof(ATOM_VOLTAGE_OBJECT, asFormula.ucVIDAdjustEntries) +
3370 vo->asFormula.ucNumOfVoltageEntries;
3371 }
3372 return NULL;
3373}
3374
3375static ATOM_VOLTAGE_OBJECT_V2 *atom_lookup_voltage_object_v2(ATOM_VOLTAGE_OBJECT_INFO_V2 *v2,
3376 u8 voltage_type)
3377{
Alex Deucher6e764762013-06-24 10:54:16 -04003378 u32 size = le16_to_cpu(v2->sHeader.usStructureSize);
Alex Deucher779187f2013-03-28 14:47:34 -04003379 u32 offset = offsetof(ATOM_VOLTAGE_OBJECT_INFO_V2, asVoltageObj[0]);
3380 u8 *start = (u8*)v2;
3381
3382 while (offset < size) {
3383 ATOM_VOLTAGE_OBJECT_V2 *vo = (ATOM_VOLTAGE_OBJECT_V2 *)(start + offset);
3384 if (vo->ucVoltageType == voltage_type)
3385 return vo;
3386 offset += offsetof(ATOM_VOLTAGE_OBJECT_V2, asFormula.asVIDAdjustEntries) +
3387 (vo->asFormula.ucNumOfVoltageEntries * sizeof(VOLTAGE_LUT_ENTRY));
3388 }
3389 return NULL;
3390}
3391
3392static ATOM_VOLTAGE_OBJECT_V3 *atom_lookup_voltage_object_v3(ATOM_VOLTAGE_OBJECT_INFO_V3_1 *v3,
3393 u8 voltage_type, u8 voltage_mode)
3394{
Alex Deucher6e764762013-06-24 10:54:16 -04003395 u32 size = le16_to_cpu(v3->sHeader.usStructureSize);
Alex Deucher779187f2013-03-28 14:47:34 -04003396 u32 offset = offsetof(ATOM_VOLTAGE_OBJECT_INFO_V3_1, asVoltageObj[0]);
3397 u8 *start = (u8*)v3;
3398
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))
3403 return vo;
Alex Deucher6e764762013-06-24 10:54:16 -04003404 offset += le16_to_cpu(vo->asGpioVoltageObj.sHeader.usSize);
Alex Deucher779187f2013-03-28 14:47:34 -04003405 }
3406 return NULL;
3407}
3408
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003409bool
Alex Deucher58653ab2013-02-13 17:04:59 -05003410radeon_atom_is_voltage_gpio(struct radeon_device *rdev,
3411 u8 voltage_type, u8 voltage_mode)
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003412{
3413 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3414 u8 frev, crev;
3415 u16 data_offset, size;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003416 union voltage_object_info *voltage_info;
Alex Deucher779187f2013-03-28 14:47:34 -04003417 union voltage_object *voltage_object = NULL;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003418
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);
3423
Alex Deucher58653ab2013-02-13 17:04:59 -05003424 switch (frev) {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003425 case 1:
Alex Deucher58653ab2013-02-13 17:04:59 -05003426 case 2:
3427 switch (crev) {
3428 case 1:
Alex Deucher779187f2013-03-28 14:47:34 -04003429 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))
3433 return true;
Alex Deucher58653ab2013-02-13 17:04:59 -05003434 break;
3435 case 2:
Alex Deucher779187f2013-03-28 14:47:34 -04003436 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))
3440 return true;
Alex Deucher58653ab2013-02-13 17:04:59 -05003441 break;
3442 default:
3443 DRM_ERROR("unknown voltage object table\n");
3444 return false;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003445 }
3446 break;
Alex Deucher58653ab2013-02-13 17:04:59 -05003447 case 3:
3448 switch (crev) {
3449 case 1:
Alex Deucher779187f2013-03-28 14:47:34 -04003450 if (atom_lookup_voltage_object_v3(&voltage_info->v3,
3451 voltage_type, voltage_mode))
3452 return true;
Alex Deucher58653ab2013-02-13 17:04:59 -05003453 break;
3454 default:
3455 DRM_ERROR("unknown voltage object table\n");
3456 return false;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003457 }
3458 break;
3459 default:
3460 DRM_ERROR("unknown voltage object table\n");
3461 return false;
3462 }
3463
3464 }
3465 return false;
3466}
3467
Alex Deucher636e2582014-06-06 18:43:45 -04003468int radeon_atom_get_svi2_info(struct radeon_device *rdev,
3469 u8 voltage_type,
3470 u8 *svd_gpio_id, u8 *svc_gpio_id)
3471{
3472 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3473 u8 frev, crev;
3474 u16 data_offset, size;
3475 union voltage_object_info *voltage_info;
3476 union voltage_object *voltage_object = NULL;
3477
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);
3482
3483 switch (frev) {
3484 case 3:
3485 switch (crev) {
3486 case 1:
3487 voltage_object = (union voltage_object *)
3488 atom_lookup_voltage_object_v3(&voltage_info->v3,
3489 voltage_type,
3490 VOLTAGE_OBJ_SVID2);
3491 if (voltage_object) {
3492 *svd_gpio_id = voltage_object->v3.asSVID2Obj.ucSVDGpioId;
3493 *svc_gpio_id = voltage_object->v3.asSVID2Obj.ucSVCGpioId;
3494 } else {
3495 return -EINVAL;
3496 }
3497 break;
3498 default:
3499 DRM_ERROR("unknown voltage object table\n");
3500 return -EINVAL;
3501 }
3502 break;
3503 default:
3504 DRM_ERROR("unknown voltage object table\n");
3505 return -EINVAL;
3506 }
3507
3508 }
3509 return 0;
3510}
3511
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003512int radeon_atom_get_max_voltage(struct radeon_device *rdev,
3513 u8 voltage_type, u16 *max_voltage)
3514{
3515 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3516 u8 frev, crev;
3517 u16 data_offset, size;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003518 union voltage_object_info *voltage_info;
Alex Deucher779187f2013-03-28 14:47:34 -04003519 union voltage_object *voltage_object = NULL;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003520
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);
3525
3526 switch (crev) {
3527 case 1:
Alex Deucher779187f2013-03-28 14:47:34 -04003528 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)
3534 *max_voltage =
3535 le16_to_cpu(formula->usVoltageBaseLevel) +
3536 formula->ucNumOfVoltageEntries / 2 *
3537 le16_to_cpu(formula->usVoltageStep);
3538 else
3539 *max_voltage =
3540 le16_to_cpu(formula->usVoltageBaseLevel) +
3541 (formula->ucNumOfVoltageEntries - 1) *
3542 le16_to_cpu(formula->usVoltageStep);
3543 return 0;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003544 }
3545 break;
3546 case 2:
Alex Deucher779187f2013-03-28 14:47:34 -04003547 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) {
Alex Deucher607f2c22013-08-20 18:40:46 -04003553 VOLTAGE_LUT_ENTRY *lut = (VOLTAGE_LUT_ENTRY *)
3554 ((u8 *)&formula->asVIDAdjustEntries[0] +
3555 (sizeof(VOLTAGE_LUT_ENTRY) * (formula->ucNumOfVoltageEntries - 1)));
Alex Deucher779187f2013-03-28 14:47:34 -04003556 *max_voltage =
Alex Deucher607f2c22013-08-20 18:40:46 -04003557 le16_to_cpu(lut->usVoltageValue);
Alex Deucher779187f2013-03-28 14:47:34 -04003558 return 0;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003559 }
3560 }
3561 break;
3562 default:
3563 DRM_ERROR("unknown voltage object table\n");
3564 return -EINVAL;
3565 }
3566
3567 }
3568 return -EINVAL;
3569}
3570
3571int radeon_atom_get_min_voltage(struct radeon_device *rdev,
3572 u8 voltage_type, u16 *min_voltage)
3573{
3574 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3575 u8 frev, crev;
3576 u16 data_offset, size;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003577 union voltage_object_info *voltage_info;
Alex Deucher779187f2013-03-28 14:47:34 -04003578 union voltage_object *voltage_object = NULL;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003579
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);
3584
3585 switch (crev) {
3586 case 1:
Alex Deucher779187f2013-03-28 14:47:34 -04003587 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;
3592 *min_voltage =
3593 le16_to_cpu(formula->usVoltageBaseLevel);
3594 return 0;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003595 }
3596 break;
3597 case 2:
Alex Deucher779187f2013-03-28 14:47:34 -04003598 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) {
3604 *min_voltage =
3605 le16_to_cpu(formula->asVIDAdjustEntries[
3606 0
3607 ].usVoltageValue);
3608 return 0;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003609 }
3610 }
3611 break;
3612 default:
3613 DRM_ERROR("unknown voltage object table\n");
3614 return -EINVAL;
3615 }
3616
3617 }
3618 return -EINVAL;
3619}
3620
3621int radeon_atom_get_voltage_step(struct radeon_device *rdev,
3622 u8 voltage_type, u16 *voltage_step)
3623{
3624 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3625 u8 frev, crev;
3626 u16 data_offset, size;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003627 union voltage_object_info *voltage_info;
Alex Deucher779187f2013-03-28 14:47:34 -04003628 union voltage_object *voltage_object = NULL;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003629
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);
3634
3635 switch (crev) {
3636 case 1:
Alex Deucher779187f2013-03-28 14:47:34 -04003637 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)
3643 *voltage_step =
3644 (le16_to_cpu(formula->usVoltageStep) + 1) / 2;
3645 else
3646 *voltage_step =
3647 le16_to_cpu(formula->usVoltageStep);
3648 return 0;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003649 }
3650 break;
3651 case 2:
3652 return -EINVAL;
3653 default:
3654 DRM_ERROR("unknown voltage object table\n");
3655 return -EINVAL;
3656 }
3657
3658 }
3659 return -EINVAL;
3660}
3661
3662int radeon_atom_round_to_true_voltage(struct radeon_device *rdev,
3663 u8 voltage_type,
3664 u16 nominal_voltage,
3665 u16 *true_voltage)
3666{
3667 u16 min_voltage, max_voltage, voltage_step;
3668
3669 if (radeon_atom_get_max_voltage(rdev, voltage_type, &max_voltage))
3670 return -EINVAL;
3671 if (radeon_atom_get_min_voltage(rdev, voltage_type, &min_voltage))
3672 return -EINVAL;
3673 if (radeon_atom_get_voltage_step(rdev, voltage_type, &voltage_step))
3674 return -EINVAL;
3675
3676 if (nominal_voltage <= min_voltage)
3677 *true_voltage = min_voltage;
3678 else if (nominal_voltage >= max_voltage)
3679 *true_voltage = max_voltage;
3680 else
3681 *true_voltage = min_voltage +
3682 ((nominal_voltage - min_voltage) / voltage_step) *
3683 voltage_step;
3684
3685 return 0;
3686}
3687
3688int radeon_atom_get_voltage_table(struct radeon_device *rdev,
Alex Deucher65171942013-02-13 17:29:54 -05003689 u8 voltage_type, u8 voltage_mode,
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003690 struct atom_voltage_table *voltage_table)
3691{
3692 int index = GetIndexIntoMasterTable(DATA, VoltageObjectInfo);
3693 u8 frev, crev;
3694 u16 data_offset, size;
Alex Deucher779187f2013-03-28 14:47:34 -04003695 int i, ret;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003696 union voltage_object_info *voltage_info;
Alex Deucher779187f2013-03-28 14:47:34 -04003697 union voltage_object *voltage_object = NULL;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003698
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);
3703
Alex Deucher65171942013-02-13 17:29:54 -05003704 switch (frev) {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003705 case 1:
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003706 case 2:
Alex Deucher65171942013-02-13 17:29:54 -05003707 switch (crev) {
3708 case 1:
3709 DRM_ERROR("old table version %d, %d\n", frev, crev);
3710 return -EINVAL;
3711 case 2:
Alex Deucher779187f2013-03-28 14:47:34 -04003712 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;
Alex Deucher607f2c22013-08-20 18:40:46 -04003717 VOLTAGE_LUT_ENTRY *lut;
Alex Deucher779187f2013-03-28 14:47:34 -04003718 if (formula->ucNumOfVoltageEntries > MAX_VOLTAGE_ENTRIES)
3719 return -EINVAL;
Alex Deucher607f2c22013-08-20 18:40:46 -04003720 lut = &formula->asVIDAdjustEntries[0];
Alex Deucher779187f2013-03-28 14:47:34 -04003721 for (i = 0; i < formula->ucNumOfVoltageEntries; i++) {
3722 voltage_table->entries[i].value =
Alex Deucher607f2c22013-08-20 18:40:46 -04003723 le16_to_cpu(lut->usVoltageValue);
Alex Deucher779187f2013-03-28 14:47:34 -04003724 ret = radeon_atom_get_voltage_gpio_settings(rdev,
3725 voltage_table->entries[i].value,
3726 voltage_type,
3727 &voltage_table->entries[i].smio_low,
3728 &voltage_table->mask_low);
3729 if (ret)
3730 return ret;
Alex Deucher607f2c22013-08-20 18:40:46 -04003731 lut = (VOLTAGE_LUT_ENTRY *)
3732 ((u8 *)lut + sizeof(VOLTAGE_LUT_ENTRY));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003733 }
Alex Deucher779187f2013-03-28 14:47:34 -04003734 voltage_table->count = formula->ucNumOfVoltageEntries;
3735 return 0;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003736 }
Alex Deucher65171942013-02-13 17:29:54 -05003737 break;
3738 default:
3739 DRM_ERROR("unknown voltage object table\n");
3740 return -EINVAL;
3741 }
3742 break;
3743 case 3:
3744 switch (crev) {
3745 case 1:
Alex Deucher779187f2013-03-28 14:47:34 -04003746 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;
Alex Deucher607f2c22013-08-20 18:40:46 -04003752 VOLTAGE_LUT_ENTRY_V2 *lut;
Alex Deucher779187f2013-03-28 14:47:34 -04003753 if (gpio->ucGpioEntryNum > MAX_VOLTAGE_ENTRIES)
3754 return -EINVAL;
Alex Deucher607f2c22013-08-20 18:40:46 -04003755 lut = &gpio->asVolGpioLut[0];
Alex Deucher779187f2013-03-28 14:47:34 -04003756 for (i = 0; i < gpio->ucGpioEntryNum; i++) {
3757 voltage_table->entries[i].value =
Alex Deucher607f2c22013-08-20 18:40:46 -04003758 le16_to_cpu(lut->usVoltageValue);
Alex Deucher779187f2013-03-28 14:47:34 -04003759 voltage_table->entries[i].smio_low =
Alex Deucher607f2c22013-08-20 18:40:46 -04003760 le32_to_cpu(lut->ulVoltageId);
3761 lut = (VOLTAGE_LUT_ENTRY_V2 *)
3762 ((u8 *)lut + sizeof(VOLTAGE_LUT_ENTRY_V2));
Alex Deucher65171942013-02-13 17:29:54 -05003763 }
Alex Deucher779187f2013-03-28 14:47:34 -04003764 voltage_table->mask_low = le32_to_cpu(gpio->ulGpioMaskVal);
3765 voltage_table->count = gpio->ucGpioEntryNum;
3766 voltage_table->phase_delay = gpio->ucPhaseDelay;
3767 return 0;
Alex Deucher65171942013-02-13 17:29:54 -05003768 }
3769 break;
3770 default:
3771 DRM_ERROR("unknown voltage object table\n");
3772 return -EINVAL;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003773 }
3774 break;
3775 default:
3776 DRM_ERROR("unknown voltage object table\n");
3777 return -EINVAL;
3778 }
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003779 }
3780 return -EINVAL;
3781}
3782
3783union vram_info {
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;
3787};
3788
3789int radeon_atom_get_memory_info(struct radeon_device *rdev,
3790 u8 module_index, struct atom_memory_info *mem_info)
3791{
3792 int index = GetIndexIntoMasterTable(DATA, VRAM_Info);
3793 u8 frev, crev, i;
3794 u16 data_offset, size;
3795 union vram_info *vram_info;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003796
3797 memset(mem_info, 0, sizeof(struct atom_memory_info));
3798
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);
3803 switch (frev) {
3804 case 1:
3805 switch (crev) {
3806 case 3:
3807 /* r6xx */
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;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003811
3812 for (i = 0; i < module_index; i++) {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003813 if (le16_to_cpu(vram_module->usSize) == 0)
3814 return -EINVAL;
Alex Deucher77c7d502013-07-17 10:52:43 -04003815 vram_module = (ATOM_VRAM_MODULE_V3 *)
3816 ((u8 *)vram_module + le16_to_cpu(vram_module->usSize));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003817 }
3818 mem_info->mem_vendor = vram_module->asMemory.ucMemoryVenderID & 0xf;
3819 mem_info->mem_type = vram_module->asMemory.ucMemoryType & 0xf0;
3820 } else
3821 return -EINVAL;
3822 break;
3823 case 4:
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;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003828
3829 for (i = 0; i < module_index; i++) {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003830 if (le16_to_cpu(vram_module->usModuleSize) == 0)
3831 return -EINVAL;
Alex Deucher77c7d502013-07-17 10:52:43 -04003832 vram_module = (ATOM_VRAM_MODULE_V4 *)
3833 ((u8 *)vram_module + le16_to_cpu(vram_module->usModuleSize));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003834 }
3835 mem_info->mem_vendor = vram_module->ucMemoryVenderID & 0xf;
3836 mem_info->mem_type = vram_module->ucMemoryType & 0xf0;
3837 } else
3838 return -EINVAL;
3839 break;
3840 default:
3841 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3842 return -EINVAL;
3843 }
3844 break;
3845 case 2:
3846 switch (crev) {
3847 case 1:
3848 /* ni */
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;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003852
3853 for (i = 0; i < module_index; i++) {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003854 if (le16_to_cpu(vram_module->usModuleSize) == 0)
3855 return -EINVAL;
Alex Deucher77c7d502013-07-17 10:52:43 -04003856 vram_module = (ATOM_VRAM_MODULE_V7 *)
3857 ((u8 *)vram_module + le16_to_cpu(vram_module->usModuleSize));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003858 }
3859 mem_info->mem_vendor = vram_module->ucMemoryVenderID & 0xf;
3860 mem_info->mem_type = vram_module->ucMemoryType & 0xf0;
3861 } else
3862 return -EINVAL;
3863 break;
3864 default:
3865 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3866 return -EINVAL;
3867 }
3868 break;
3869 default:
3870 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3871 return -EINVAL;
3872 }
3873 return 0;
3874 }
3875 return -EINVAL;
3876}
3877
3878int 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)
3881{
3882 int index = GetIndexIntoMasterTable(DATA, VRAM_Info);
3883 u8 frev, crev, i;
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);
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003888
3889 memset(mclk_range_table, 0, sizeof(struct atom_memory_clock_range_table));
3890
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);
3895 switch (frev) {
3896 case 1:
3897 switch (crev) {
3898 case 3:
3899 DRM_ERROR("old table version %d, %d\n", frev, crev);
3900 return -EINVAL;
3901 case 4:
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;
Alex Deucher607f2c22013-08-20 18:40:46 -04003906 ATOM_MEMORY_TIMING_FORMAT *format;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003907
3908 for (i = 0; i < module_index; i++) {
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003909 if (le16_to_cpu(vram_module->usModuleSize) == 0)
3910 return -EINVAL;
Alex Deucher77c7d502013-07-17 10:52:43 -04003911 vram_module = (ATOM_VRAM_MODULE_V4 *)
3912 ((u8 *)vram_module + le16_to_cpu(vram_module->usModuleSize));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003913 }
3914 mclk_range_table->num_entries = (u8)
Alex Deucher1fa42522013-07-17 10:18:52 -04003915 ((le16_to_cpu(vram_module->usModuleSize) - offsetof(ATOM_VRAM_MODULE_V4, asMemTiming)) /
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003916 mem_timing_size);
Alex Deucher607f2c22013-08-20 18:40:46 -04003917 format = &vram_module->asMemTiming[0];
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003918 for (i = 0; i < mclk_range_table->num_entries; i++) {
Alex Deuchere6312272013-07-03 11:18:08 -04003919 mclk_range_table->mclk[i] = le32_to_cpu(format->ulClkRange);
Alex Deucher607f2c22013-08-20 18:40:46 -04003920 format = (ATOM_MEMORY_TIMING_FORMAT *)
3921 ((u8 *)format + mem_timing_size);
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003922 }
3923 } else
3924 return -EINVAL;
3925 break;
3926 default:
3927 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3928 return -EINVAL;
3929 }
3930 break;
3931 case 2:
3932 DRM_ERROR("new table version %d, %d\n", frev, crev);
3933 return -EINVAL;
3934 default:
3935 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
3936 return -EINVAL;
3937 }
3938 return 0;
3939 }
3940 return -EINVAL;
3941}
3942
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
3950
3951int radeon_atom_init_mc_reg_table(struct radeon_device *rdev,
3952 u8 module_index,
3953 struct atom_mc_reg_table *reg_table)
3954{
3955 int index = GetIndexIntoMasterTable(DATA, VRAM_Info);
3956 u8 frev, crev, num_entries, t_mem_id, num_ranges = 0;
3957 u32 i = 0, j;
3958 u16 data_offset, size;
3959 union vram_info *vram_info;
3960
3961 memset(reg_table, 0, sizeof(struct atom_mc_reg_table));
3962
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);
3967 switch (frev) {
3968 case 1:
3969 DRM_ERROR("old table version %d, %d\n", frev, crev);
3970 return -EINVAL;
3971 case 2:
3972 switch (crev) {
3973 case 1:
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));
Alex Deucherf90555c2013-07-17 16:34:12 -04003982 ATOM_INIT_REG_INDEX_FORMAT *format = &reg_block->asRegIndexBuf[0];
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003983 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)
3986 return -EINVAL;
Andre Heider48fa04c2013-07-17 14:02:23 -04003987 while (i < num_entries) {
Alex Deucherf90555c2013-07-17 16:34:12 -04003988 if (format->ucPreRegDataLength & ACCESS_PLACEHOLDER)
Andre Heider48fa04c2013-07-17 14:02:23 -04003989 break;
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003990 reg_table->mc_reg_address[i].s1 =
Alex Deucherf90555c2013-07-17 16:34:12 -04003991 (u16)(le16_to_cpu(format->usRegIndex));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003992 reg_table->mc_reg_address[i].pre_reg_data =
Alex Deucherf90555c2013-07-17 16:34:12 -04003993 (u8)(format->ucPreRegDataLength);
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003994 i++;
Alex Deucherf90555c2013-07-17 16:34:12 -04003995 format = (ATOM_INIT_REG_INDEX_FORMAT *)
3996 ((u8 *)format + sizeof(ATOM_INIT_REG_INDEX_FORMAT));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04003997 }
3998 reg_table->last = i;
Alex Deucherd526fbd2014-01-16 10:53:50 -05003999 while ((le32_to_cpu(*(u32 *)reg_data) != END_OF_REG_DATA_BLOCK) &&
Alex Deucherae5b0ab2013-06-24 10:50:34 -04004000 (num_ranges < VBIOS_MAX_AC_TIMING_ENTRIES)) {
Alex Deucherd526fbd2014-01-16 10:53:50 -05004001 t_mem_id = (u8)((le32_to_cpu(*(u32 *)reg_data) & MEM_ID_MASK)
4002 >> MEM_ID_SHIFT);
Alex Deucherae5b0ab2013-06-24 10:50:34 -04004003 if (module_index == t_mem_id) {
4004 reg_table->mc_reg_table_entry[num_ranges].mclk_max =
Alex Deucherd526fbd2014-01-16 10:53:50 -05004005 (u32)((le32_to_cpu(*(u32 *)reg_data) & CLOCK_RANGE_MASK)
4006 >> CLOCK_RANGE_SHIFT);
Alex Deucherae5b0ab2013-06-24 10:50:34 -04004007 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] =
Alex Deucherd526fbd2014-01-16 10:53:50 -05004010 (u32)le32_to_cpu(*((u32 *)reg_data + j));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04004011 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];
4015 }
4016 }
4017 num_ranges++;
4018 }
Alex Deucher4da18e22013-07-01 13:33:53 -04004019 reg_data = (ATOM_MEMORY_SETTING_DATA_BLOCK *)
4020 ((u8 *)reg_data + le16_to_cpu(reg_block->usRegDataBlkSize));
Alex Deucherae5b0ab2013-06-24 10:50:34 -04004021 }
Alex Deucherd526fbd2014-01-16 10:53:50 -05004022 if (le32_to_cpu(*(u32 *)reg_data) != END_OF_REG_DATA_BLOCK)
Alex Deucherae5b0ab2013-06-24 10:50:34 -04004023 return -EINVAL;
4024 reg_table->num_entries = num_ranges;
4025 } else
4026 return -EINVAL;
4027 break;
4028 default:
4029 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
4030 return -EINVAL;
4031 }
4032 break;
4033 default:
4034 DRM_ERROR("Unknown table version %d, %d\n", frev, crev);
4035 return -EINVAL;
4036 }
4037 return 0;
4038 }
4039 return -EINVAL;
4040}
4041
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004042void radeon_atom_initialize_bios_scratch_regs(struct drm_device *dev)
4043{
4044 struct radeon_device *rdev = dev->dev_private;
4045 uint32_t bios_2_scratch, bios_6_scratch;
4046
4047 if (rdev->family >= CHIP_R600) {
Dave Airlie4ce001a2009-08-13 16:32:14 +10004048 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004049 bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH);
4050 } else {
Dave Airlie4ce001a2009-08-13 16:32:14 +10004051 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004052 bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
4053 }
4054
4055 /* let the bios control the backlight */
4056 bios_2_scratch &= ~ATOM_S2_VRI_BRIGHT_ENABLE;
4057
4058 /* tell the bios not to handle mode switching */
Alex Deucher87364762011-02-02 19:46:06 -05004059 bios_6_scratch |= ATOM_S6_ACC_BLOCK_DISPLAY_SWITCH;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004060
Alex Deucher6802d4b2014-01-27 18:29:35 -05004061 /* clear the vbios dpms state */
4062 if (ASIC_IS_DCE4(rdev))
4063 bios_2_scratch &= ~ATOM_S2_DEVICE_DPMS_STATE;
4064
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004065 if (rdev->family >= CHIP_R600) {
4066 WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch);
4067 WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch);
4068 } else {
4069 WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch);
4070 WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
4071 }
4072
4073}
4074
Yang Zhaof657c2a2009-09-15 12:21:01 +10004075void radeon_save_bios_scratch_regs(struct radeon_device *rdev)
4076{
4077 uint32_t scratch_reg;
4078 int i;
4079
4080 if (rdev->family >= CHIP_R600)
4081 scratch_reg = R600_BIOS_0_SCRATCH;
4082 else
4083 scratch_reg = RADEON_BIOS_0_SCRATCH;
4084
4085 for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++)
4086 rdev->bios_scratch[i] = RREG32(scratch_reg + (i * 4));
4087}
4088
4089void radeon_restore_bios_scratch_regs(struct radeon_device *rdev)
4090{
4091 uint32_t scratch_reg;
4092 int i;
4093
4094 if (rdev->family >= CHIP_R600)
4095 scratch_reg = R600_BIOS_0_SCRATCH;
4096 else
4097 scratch_reg = RADEON_BIOS_0_SCRATCH;
4098
4099 for (i = 0; i < RADEON_BIOS_NUM_SCRATCH; i++)
4100 WREG32(scratch_reg + (i * 4), rdev->bios_scratch[i]);
4101}
4102
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004103void radeon_atom_output_lock(struct drm_encoder *encoder, bool lock)
4104{
4105 struct drm_device *dev = encoder->dev;
4106 struct radeon_device *rdev = dev->dev_private;
4107 uint32_t bios_6_scratch;
4108
4109 if (rdev->family >= CHIP_R600)
4110 bios_6_scratch = RREG32(R600_BIOS_6_SCRATCH);
4111 else
4112 bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
4113
Alex Deucher87364762011-02-02 19:46:06 -05004114 if (lock) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004115 bios_6_scratch |= ATOM_S6_CRITICAL_STATE;
Alex Deucher87364762011-02-02 19:46:06 -05004116 bios_6_scratch &= ~ATOM_S6_ACC_MODE;
4117 } else {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004118 bios_6_scratch &= ~ATOM_S6_CRITICAL_STATE;
Alex Deucher87364762011-02-02 19:46:06 -05004119 bios_6_scratch |= ATOM_S6_ACC_MODE;
4120 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004121
4122 if (rdev->family >= CHIP_R600)
4123 WREG32(R600_BIOS_6_SCRATCH, bios_6_scratch);
4124 else
4125 WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
4126}
4127
4128/* at some point we may want to break this out into individual functions */
4129void
4130radeon_atombios_connected_scratch_regs(struct drm_connector *connector,
4131 struct drm_encoder *encoder,
4132 bool connected)
4133{
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;
4140
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);
4145 } else {
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);
4149 }
4150
4151 if ((radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) &&
4152 (radeon_connector->devices & ATOM_DEVICE_TV1_SUPPORT)) {
4153 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004154 DRM_DEBUG_KMS("TV1 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004155 bios_3_scratch |= ATOM_S3_TV1_ACTIVE;
4156 bios_6_scratch |= ATOM_S6_ACC_REQ_TV1;
4157 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004158 DRM_DEBUG_KMS("TV1 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004159 bios_0_scratch &= ~ATOM_S0_TV1_MASK;
4160 bios_3_scratch &= ~ATOM_S3_TV1_ACTIVE;
4161 bios_6_scratch &= ~ATOM_S6_ACC_REQ_TV1;
4162 }
4163 }
4164 if ((radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) &&
4165 (radeon_connector->devices & ATOM_DEVICE_CV_SUPPORT)) {
4166 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004167 DRM_DEBUG_KMS("CV connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004168 bios_3_scratch |= ATOM_S3_CV_ACTIVE;
4169 bios_6_scratch |= ATOM_S6_ACC_REQ_CV;
4170 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004171 DRM_DEBUG_KMS("CV disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004172 bios_0_scratch &= ~ATOM_S0_CV_MASK;
4173 bios_3_scratch &= ~ATOM_S3_CV_ACTIVE;
4174 bios_6_scratch &= ~ATOM_S6_ACC_REQ_CV;
4175 }
4176 }
4177 if ((radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) &&
4178 (radeon_connector->devices & ATOM_DEVICE_LCD1_SUPPORT)) {
4179 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004180 DRM_DEBUG_KMS("LCD1 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004181 bios_0_scratch |= ATOM_S0_LCD1;
4182 bios_3_scratch |= ATOM_S3_LCD1_ACTIVE;
4183 bios_6_scratch |= ATOM_S6_ACC_REQ_LCD1;
4184 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004185 DRM_DEBUG_KMS("LCD1 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004186 bios_0_scratch &= ~ATOM_S0_LCD1;
4187 bios_3_scratch &= ~ATOM_S3_LCD1_ACTIVE;
4188 bios_6_scratch &= ~ATOM_S6_ACC_REQ_LCD1;
4189 }
4190 }
4191 if ((radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) &&
4192 (radeon_connector->devices & ATOM_DEVICE_CRT1_SUPPORT)) {
4193 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004194 DRM_DEBUG_KMS("CRT1 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004195 bios_0_scratch |= ATOM_S0_CRT1_COLOR;
4196 bios_3_scratch |= ATOM_S3_CRT1_ACTIVE;
4197 bios_6_scratch |= ATOM_S6_ACC_REQ_CRT1;
4198 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004199 DRM_DEBUG_KMS("CRT1 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004200 bios_0_scratch &= ~ATOM_S0_CRT1_MASK;
4201 bios_3_scratch &= ~ATOM_S3_CRT1_ACTIVE;
4202 bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT1;
4203 }
4204 }
4205 if ((radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) &&
4206 (radeon_connector->devices & ATOM_DEVICE_CRT2_SUPPORT)) {
4207 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004208 DRM_DEBUG_KMS("CRT2 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004209 bios_0_scratch |= ATOM_S0_CRT2_COLOR;
4210 bios_3_scratch |= ATOM_S3_CRT2_ACTIVE;
4211 bios_6_scratch |= ATOM_S6_ACC_REQ_CRT2;
4212 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004213 DRM_DEBUG_KMS("CRT2 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004214 bios_0_scratch &= ~ATOM_S0_CRT2_MASK;
4215 bios_3_scratch &= ~ATOM_S3_CRT2_ACTIVE;
4216 bios_6_scratch &= ~ATOM_S6_ACC_REQ_CRT2;
4217 }
4218 }
4219 if ((radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) &&
4220 (radeon_connector->devices & ATOM_DEVICE_DFP1_SUPPORT)) {
4221 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004222 DRM_DEBUG_KMS("DFP1 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004223 bios_0_scratch |= ATOM_S0_DFP1;
4224 bios_3_scratch |= ATOM_S3_DFP1_ACTIVE;
4225 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP1;
4226 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004227 DRM_DEBUG_KMS("DFP1 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004228 bios_0_scratch &= ~ATOM_S0_DFP1;
4229 bios_3_scratch &= ~ATOM_S3_DFP1_ACTIVE;
4230 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP1;
4231 }
4232 }
4233 if ((radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) &&
4234 (radeon_connector->devices & ATOM_DEVICE_DFP2_SUPPORT)) {
4235 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004236 DRM_DEBUG_KMS("DFP2 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004237 bios_0_scratch |= ATOM_S0_DFP2;
4238 bios_3_scratch |= ATOM_S3_DFP2_ACTIVE;
4239 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP2;
4240 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004241 DRM_DEBUG_KMS("DFP2 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004242 bios_0_scratch &= ~ATOM_S0_DFP2;
4243 bios_3_scratch &= ~ATOM_S3_DFP2_ACTIVE;
4244 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP2;
4245 }
4246 }
4247 if ((radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) &&
4248 (radeon_connector->devices & ATOM_DEVICE_DFP3_SUPPORT)) {
4249 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004250 DRM_DEBUG_KMS("DFP3 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004251 bios_0_scratch |= ATOM_S0_DFP3;
4252 bios_3_scratch |= ATOM_S3_DFP3_ACTIVE;
4253 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP3;
4254 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004255 DRM_DEBUG_KMS("DFP3 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004256 bios_0_scratch &= ~ATOM_S0_DFP3;
4257 bios_3_scratch &= ~ATOM_S3_DFP3_ACTIVE;
4258 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP3;
4259 }
4260 }
4261 if ((radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) &&
4262 (radeon_connector->devices & ATOM_DEVICE_DFP4_SUPPORT)) {
4263 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004264 DRM_DEBUG_KMS("DFP4 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004265 bios_0_scratch |= ATOM_S0_DFP4;
4266 bios_3_scratch |= ATOM_S3_DFP4_ACTIVE;
4267 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP4;
4268 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004269 DRM_DEBUG_KMS("DFP4 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004270 bios_0_scratch &= ~ATOM_S0_DFP4;
4271 bios_3_scratch &= ~ATOM_S3_DFP4_ACTIVE;
4272 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP4;
4273 }
4274 }
4275 if ((radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) &&
4276 (radeon_connector->devices & ATOM_DEVICE_DFP5_SUPPORT)) {
4277 if (connected) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004278 DRM_DEBUG_KMS("DFP5 connected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004279 bios_0_scratch |= ATOM_S0_DFP5;
4280 bios_3_scratch |= ATOM_S3_DFP5_ACTIVE;
4281 bios_6_scratch |= ATOM_S6_ACC_REQ_DFP5;
4282 } else {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10004283 DRM_DEBUG_KMS("DFP5 disconnected\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004284 bios_0_scratch &= ~ATOM_S0_DFP5;
4285 bios_3_scratch &= ~ATOM_S3_DFP5_ACTIVE;
4286 bios_6_scratch &= ~ATOM_S6_ACC_REQ_DFP5;
4287 }
4288 }
Alex Deucher6f9f8a62012-02-13 08:59:41 -05004289 if ((radeon_encoder->devices & ATOM_DEVICE_DFP6_SUPPORT) &&
4290 (radeon_connector->devices & ATOM_DEVICE_DFP6_SUPPORT)) {
4291 if (connected) {
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;
4296 } else {
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;
4301 }
4302 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004303
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);
4308 } else {
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);
4312 }
4313}
4314
4315void
4316radeon_atombios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc)
4317{
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;
4322
Alex Deucher6f9f8a62012-02-13 08:59:41 -05004323 if (ASIC_IS_DCE4(rdev))
4324 return;
4325
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004326 if (rdev->family >= CHIP_R600)
4327 bios_3_scratch = RREG32(R600_BIOS_3_SCRATCH);
4328 else
4329 bios_3_scratch = RREG32(RADEON_BIOS_3_SCRATCH);
4330
4331 if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) {
4332 bios_3_scratch &= ~ATOM_S3_TV1_CRTC_ACTIVE;
4333 bios_3_scratch |= (crtc << 18);
4334 }
4335 if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) {
4336 bios_3_scratch &= ~ATOM_S3_CV_CRTC_ACTIVE;
4337 bios_3_scratch |= (crtc << 24);
4338 }
4339 if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) {
4340 bios_3_scratch &= ~ATOM_S3_CRT1_CRTC_ACTIVE;
4341 bios_3_scratch |= (crtc << 16);
4342 }
4343 if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) {
4344 bios_3_scratch &= ~ATOM_S3_CRT2_CRTC_ACTIVE;
4345 bios_3_scratch |= (crtc << 20);
4346 }
4347 if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) {
4348 bios_3_scratch &= ~ATOM_S3_LCD1_CRTC_ACTIVE;
4349 bios_3_scratch |= (crtc << 17);
4350 }
4351 if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) {
4352 bios_3_scratch &= ~ATOM_S3_DFP1_CRTC_ACTIVE;
4353 bios_3_scratch |= (crtc << 19);
4354 }
4355 if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) {
4356 bios_3_scratch &= ~ATOM_S3_DFP2_CRTC_ACTIVE;
4357 bios_3_scratch |= (crtc << 23);
4358 }
4359 if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) {
4360 bios_3_scratch &= ~ATOM_S3_DFP3_CRTC_ACTIVE;
4361 bios_3_scratch |= (crtc << 25);
4362 }
4363
4364 if (rdev->family >= CHIP_R600)
4365 WREG32(R600_BIOS_3_SCRATCH, bios_3_scratch);
4366 else
4367 WREG32(RADEON_BIOS_3_SCRATCH, bios_3_scratch);
4368}
4369
4370void
4371radeon_atombios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on)
4372{
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;
4377
Alex Deucher3ac0eb62012-02-19 21:42:03 -05004378 if (ASIC_IS_DCE4(rdev))
4379 return;
4380
Jerome Glisse771fe6b2009-06-05 14:42:42 +02004381 if (rdev->family >= CHIP_R600)
4382 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
4383 else
4384 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
4385
4386 if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) {
4387 if (on)
4388 bios_2_scratch &= ~ATOM_S2_TV1_DPMS_STATE;
4389 else
4390 bios_2_scratch |= ATOM_S2_TV1_DPMS_STATE;
4391 }
4392 if (radeon_encoder->devices & ATOM_DEVICE_CV_SUPPORT) {
4393 if (on)
4394 bios_2_scratch &= ~ATOM_S2_CV_DPMS_STATE;
4395 else
4396 bios_2_scratch |= ATOM_S2_CV_DPMS_STATE;
4397 }
4398 if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) {
4399 if (on)
4400 bios_2_scratch &= ~ATOM_S2_CRT1_DPMS_STATE;
4401 else
4402 bios_2_scratch |= ATOM_S2_CRT1_DPMS_STATE;
4403 }
4404 if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) {
4405 if (on)
4406 bios_2_scratch &= ~ATOM_S2_CRT2_DPMS_STATE;
4407 else
4408 bios_2_scratch |= ATOM_S2_CRT2_DPMS_STATE;
4409 }
4410 if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) {
4411 if (on)
4412 bios_2_scratch &= ~ATOM_S2_LCD1_DPMS_STATE;
4413 else
4414 bios_2_scratch |= ATOM_S2_LCD1_DPMS_STATE;
4415 }
4416 if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) {
4417 if (on)
4418 bios_2_scratch &= ~ATOM_S2_DFP1_DPMS_STATE;
4419 else
4420 bios_2_scratch |= ATOM_S2_DFP1_DPMS_STATE;
4421 }
4422 if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) {
4423 if (on)
4424 bios_2_scratch &= ~ATOM_S2_DFP2_DPMS_STATE;
4425 else
4426 bios_2_scratch |= ATOM_S2_DFP2_DPMS_STATE;
4427 }
4428 if (radeon_encoder->devices & ATOM_DEVICE_DFP3_SUPPORT) {
4429 if (on)
4430 bios_2_scratch &= ~ATOM_S2_DFP3_DPMS_STATE;
4431 else
4432 bios_2_scratch |= ATOM_S2_DFP3_DPMS_STATE;
4433 }
4434 if (radeon_encoder->devices & ATOM_DEVICE_DFP4_SUPPORT) {
4435 if (on)
4436 bios_2_scratch &= ~ATOM_S2_DFP4_DPMS_STATE;
4437 else
4438 bios_2_scratch |= ATOM_S2_DFP4_DPMS_STATE;
4439 }
4440 if (radeon_encoder->devices & ATOM_DEVICE_DFP5_SUPPORT) {
4441 if (on)
4442 bios_2_scratch &= ~ATOM_S2_DFP5_DPMS_STATE;
4443 else
4444 bios_2_scratch |= ATOM_S2_DFP5_DPMS_STATE;
4445 }
4446
4447 if (rdev->family >= CHIP_R600)
4448 WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch);
4449 else
4450 WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch);
4451}