radeon_pm.c 26.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Rafał Miłecki <zajec5@gmail.com>
21
 *          Alex Deucher <alexdeucher@gmail.com>
22 23 24
 */
#include "drmP.h"
#include "radeon.h"
25
#include "avivod.h"
26
#include "atom.h"
27 28 29 30
#ifdef CONFIG_ACPI
#include <linux/acpi.h>
#endif
#include <linux/power_supply.h>
31 32
#include <linux/hwmon.h>
#include <linux/hwmon-sysfs.h>
33

34 35
#define RADEON_IDLE_LOOP_MS 100
#define RADEON_RECLOCK_DELAY_MS 200
36
#define RADEON_WAIT_VBLANK_TIMEOUT 200
37
#define RADEON_WAIT_IDLE_TIMEOUT 200
38

39 40 41 42 43 44 45 46
static const char *radeon_pm_state_type_name[5] = {
	"Default",
	"Powersave",
	"Battery",
	"Balanced",
	"Performance",
};

47
static void radeon_dynpm_idle_work_handler(struct work_struct *work);
48
static int radeon_debugfs_pm_init(struct radeon_device *rdev);
49 50 51 52 53 54 55
static bool radeon_pm_in_vbl(struct radeon_device *rdev);
static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish);
static void radeon_pm_update_profile(struct radeon_device *rdev);
static void radeon_pm_set_clocks(struct radeon_device *rdev);

#define ACPI_AC_CLASS           "ac_adapter"

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
int radeon_pm_get_type_index(struct radeon_device *rdev,
			     enum radeon_pm_state_type ps_type,
			     int instance)
{
	int i;
	int found_instance = -1;

	for (i = 0; i < rdev->pm.num_power_states; i++) {
		if (rdev->pm.power_state[i].type == ps_type) {
			found_instance++;
			if (found_instance == instance)
				return i;
		}
	}
	/* return default if no match */
	return rdev->pm.default_power_state_index;
}

74 75 76 77 78 79 80 81 82 83
#ifdef CONFIG_ACPI
static int radeon_acpi_event(struct notifier_block *nb,
			     unsigned long val,
			     void *data)
{
	struct radeon_device *rdev = container_of(nb, struct radeon_device, acpi_nb);
	struct acpi_bus_event *entry = (struct acpi_bus_event *)data;

	if (strcmp(entry->device_class, ACPI_AC_CLASS) == 0) {
		if (power_supply_is_system_supplied() > 0)
84
			DRM_DEBUG_DRIVER("pm: AC\n");
85
		else
86
			DRM_DEBUG_DRIVER("pm: DC\n");
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

		if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
			if (rdev->pm.profile == PM_PROFILE_AUTO) {
				mutex_lock(&rdev->pm.mutex);
				radeon_pm_update_profile(rdev);
				radeon_pm_set_clocks(rdev);
				mutex_unlock(&rdev->pm.mutex);
			}
		}
	}

	return NOTIFY_OK;
}
#endif

static void radeon_pm_update_profile(struct radeon_device *rdev)
{
	switch (rdev->pm.profile) {
	case PM_PROFILE_DEFAULT:
		rdev->pm.profile_index = PM_PROFILE_DEFAULT_IDX;
		break;
	case PM_PROFILE_AUTO:
		if (power_supply_is_system_supplied() > 0) {
			if (rdev->pm.active_crtc_count > 1)
				rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
			else
				rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
		} else {
			if (rdev->pm.active_crtc_count > 1)
116
				rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
117
			else
118
				rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
119 120 121 122 123 124 125 126
		}
		break;
	case PM_PROFILE_LOW:
		if (rdev->pm.active_crtc_count > 1)
			rdev->pm.profile_index = PM_PROFILE_LOW_MH_IDX;
		else
			rdev->pm.profile_index = PM_PROFILE_LOW_SH_IDX;
		break;
127 128 129 130 131 132
	case PM_PROFILE_MID:
		if (rdev->pm.active_crtc_count > 1)
			rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
		else
			rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
		break;
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
	case PM_PROFILE_HIGH:
		if (rdev->pm.active_crtc_count > 1)
			rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
		else
			rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
		break;
	}

	if (rdev->pm.active_crtc_count == 0) {
		rdev->pm.requested_power_state_index =
			rdev->pm.profiles[rdev->pm.profile_index].dpms_off_ps_idx;
		rdev->pm.requested_clock_mode_index =
			rdev->pm.profiles[rdev->pm.profile_index].dpms_off_cm_idx;
	} else {
		rdev->pm.requested_power_state_index =
			rdev->pm.profiles[rdev->pm.profile_index].dpms_on_ps_idx;
		rdev->pm.requested_clock_mode_index =
			rdev->pm.profiles[rdev->pm.profile_index].dpms_on_cm_idx;
	}
}
153

154 155 156 157 158 159 160 161 162 163 164 165 166
static void radeon_unmap_vram_bos(struct radeon_device *rdev)
{
	struct radeon_bo *bo, *n;

	if (list_empty(&rdev->gem.objects))
		return;

	list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
		if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
			ttm_bo_unmap_virtual(&bo->tbo);
	}
}

167
static void radeon_sync_with_vblank(struct radeon_device *rdev)
168
{
169 170 171 172 173 174 175 176 177 178 179
	if (rdev->pm.active_crtcs) {
		rdev->pm.vblank_sync = false;
		wait_event_timeout(
			rdev->irq.vblank_queue, rdev->pm.vblank_sync,
			msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT));
	}
}

static void radeon_set_power_state(struct radeon_device *rdev)
{
	u32 sclk, mclk;
180
	bool misc_after = false;
181 182 183 184 185 186 187 188

	if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
	    (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
		return;

	if (radeon_gui_idle(rdev)) {
		sclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
			clock_info[rdev->pm.requested_clock_mode_index].sclk;
189 190
		if (sclk > rdev->pm.default_sclk)
			sclk = rdev->pm.default_sclk;
191 192 193

		mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
			clock_info[rdev->pm.requested_clock_mode_index].mclk;
194 195
		if (mclk > rdev->pm.default_mclk)
			mclk = rdev->pm.default_mclk;
196

197 198 199
		/* upvolt before raising clocks, downvolt after lowering clocks */
		if (sclk < rdev->pm.current_sclk)
			misc_after = true;
200

201
		radeon_sync_with_vblank(rdev);
202

203
		if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
204 205
			if (!radeon_pm_in_vbl(rdev))
				return;
206
		}
207

208
		radeon_pm_prepare(rdev);
209

210 211 212 213 214 215 216 217 218 219
		if (!misc_after)
			/* voltage, pcie lanes, etc.*/
			radeon_pm_misc(rdev);

		/* set engine clock */
		if (sclk != rdev->pm.current_sclk) {
			radeon_pm_debug_check_in_vbl(rdev, false);
			radeon_set_engine_clock(rdev, sclk);
			radeon_pm_debug_check_in_vbl(rdev, true);
			rdev->pm.current_sclk = sclk;
220
			DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk);
221 222 223 224 225 226 227 228
		}

		/* set memory clock */
		if (rdev->asic->set_memory_clock && (mclk != rdev->pm.current_mclk)) {
			radeon_pm_debug_check_in_vbl(rdev, false);
			radeon_set_memory_clock(rdev, mclk);
			radeon_pm_debug_check_in_vbl(rdev, true);
			rdev->pm.current_mclk = mclk;
229
			DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk);
230
		}
M
Matthew Garrett 已提交
231

232 233 234 235 236 237
		if (misc_after)
			/* voltage, pcie lanes, etc.*/
			radeon_pm_misc(rdev);

		radeon_pm_finish(rdev);

238 239 240
		rdev->pm.current_power_state_index = rdev->pm.requested_power_state_index;
		rdev->pm.current_clock_mode_index = rdev->pm.requested_clock_mode_index;
	} else
241
		DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
242 243 244 245 246
}

static void radeon_pm_set_clocks(struct radeon_device *rdev)
{
	int i;
247

248 249 250 251 252
	/* no need to take locks, etc. if nothing's going to change */
	if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
	    (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
		return;

253 254
	mutex_lock(&rdev->ddev->struct_mutex);
	mutex_lock(&rdev->vram_mutex);
255
	for (i = 0; i < RADEON_NUM_RINGS; ++i) {
256 257
		if (rdev->ring[i].ring_obj)
			mutex_lock(&rdev->ring[i].mutex);
258
	}
259 260 261

	/* gui idle int has issues on older chips it seems */
	if (rdev->family >= CHIP_R600) {
262 263 264 265 266 267 268 269 270 271 272
		if (rdev->irq.installed) {
			/* wait for GPU idle */
			rdev->pm.gui_idle = false;
			rdev->irq.gui_idle = true;
			radeon_irq_set(rdev);
			wait_event_interruptible_timeout(
				rdev->irq.idle_queue, rdev->pm.gui_idle,
				msecs_to_jiffies(RADEON_WAIT_IDLE_TIMEOUT));
			rdev->irq.gui_idle = false;
			radeon_irq_set(rdev);
		}
273
	} else {
274 275
		struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
		if (ring->ready) {
276
			struct radeon_fence *fence;
277 278
			radeon_ring_alloc(rdev, ring, 64);
			radeon_fence_create(rdev, &fence, radeon_ring_index(rdev, ring));
279
			radeon_fence_emit(rdev, fence);
280
			radeon_ring_commit(rdev, ring);
281 282 283
			radeon_fence_wait(fence, false);
			radeon_fence_unref(&fence);
		}
284
	}
285 286
	radeon_unmap_vram_bos(rdev);

287
	if (rdev->irq.installed) {
M
Matthew Garrett 已提交
288 289 290 291 292 293 294
		for (i = 0; i < rdev->num_crtc; i++) {
			if (rdev->pm.active_crtcs & (1 << i)) {
				rdev->pm.req_vblank |= (1 << i);
				drm_vblank_get(rdev->ddev, i);
			}
		}
	}
A
Alex Deucher 已提交
295

296
	radeon_set_power_state(rdev);
M
Matthew Garrett 已提交
297

298
	if (rdev->irq.installed) {
M
Matthew Garrett 已提交
299 300 301 302 303 304 305
		for (i = 0; i < rdev->num_crtc; i++) {
			if (rdev->pm.req_vblank & (1 << i)) {
				rdev->pm.req_vblank &= ~(1 << i);
				drm_vblank_put(rdev->ddev, i);
			}
		}
	}
306

307 308 309 310 311
	/* update display watermarks based on new power state */
	radeon_update_bandwidth_info(rdev);
	if (rdev->pm.active_crtc_count)
		radeon_bandwidth_update(rdev);

312
	rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
M
Matthew Garrett 已提交
313

314
	for (i = 0; i < RADEON_NUM_RINGS; ++i) {
315 316
		if (rdev->ring[i].ring_obj)
			mutex_unlock(&rdev->ring[i].mutex);
317
	}
318 319
	mutex_unlock(&rdev->vram_mutex);
	mutex_unlock(&rdev->ddev->struct_mutex);
320 321
}

322 323 324 325 326 327
static void radeon_pm_print_states(struct radeon_device *rdev)
{
	int i, j;
	struct radeon_power_state *power_state;
	struct radeon_pm_clock_info *clock_info;

328
	DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states);
329 330
	for (i = 0; i < rdev->pm.num_power_states; i++) {
		power_state = &rdev->pm.power_state[i];
331
		DRM_DEBUG_DRIVER("State %d: %s\n", i,
332 333
			radeon_pm_state_type_name[power_state->type]);
		if (i == rdev->pm.default_power_state_index)
334
			DRM_DEBUG_DRIVER("\tDefault");
335
		if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
336
			DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes);
337
		if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY)
338 339
			DRM_DEBUG_DRIVER("\tSingle display only\n");
		DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes);
340 341 342
		for (j = 0; j < power_state->num_clock_modes; j++) {
			clock_info = &(power_state->clock_info[j]);
			if (rdev->flags & RADEON_IS_IGP)
343
				DRM_DEBUG_DRIVER("\t\t%d e: %d%s\n",
344 345 346 347
					j,
					clock_info->sclk * 10,
					clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
			else
348
				DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d%s\n",
349 350 351 352 353 354 355 356 357
					j,
					clock_info->sclk * 10,
					clock_info->mclk * 10,
					clock_info->voltage.voltage,
					clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
		}
	}
}

358 359 360
static ssize_t radeon_get_pm_profile(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
361 362 363
{
	struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
	struct radeon_device *rdev = ddev->dev_private;
364
	int cp = rdev->pm.profile;
365

366 367 368
	return snprintf(buf, PAGE_SIZE, "%s\n",
			(cp == PM_PROFILE_AUTO) ? "auto" :
			(cp == PM_PROFILE_LOW) ? "low" :
369
			(cp == PM_PROFILE_MID) ? "mid" :
370
			(cp == PM_PROFILE_HIGH) ? "high" : "default");
371 372
}

373 374 375 376
static ssize_t radeon_set_pm_profile(struct device *dev,
				     struct device_attribute *attr,
				     const char *buf,
				     size_t count)
377 378 379 380 381
{
	struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
	struct radeon_device *rdev = ddev->dev_private;

	mutex_lock(&rdev->pm.mutex);
382 383 384 385 386 387 388
	if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
		if (strncmp("default", buf, strlen("default")) == 0)
			rdev->pm.profile = PM_PROFILE_DEFAULT;
		else if (strncmp("auto", buf, strlen("auto")) == 0)
			rdev->pm.profile = PM_PROFILE_AUTO;
		else if (strncmp("low", buf, strlen("low")) == 0)
			rdev->pm.profile = PM_PROFILE_LOW;
389 390
		else if (strncmp("mid", buf, strlen("mid")) == 0)
			rdev->pm.profile = PM_PROFILE_MID;
391 392 393
		else if (strncmp("high", buf, strlen("high")) == 0)
			rdev->pm.profile = PM_PROFILE_HIGH;
		else {
394
			count = -EINVAL;
395
			goto fail;
396
		}
397 398
		radeon_pm_update_profile(rdev);
		radeon_pm_set_clocks(rdev);
399 400 401
	} else
		count = -EINVAL;

402
fail:
403 404 405 406 407
	mutex_unlock(&rdev->pm.mutex);

	return count;
}

408 409 410
static ssize_t radeon_get_pm_method(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
411 412 413
{
	struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
	struct radeon_device *rdev = ddev->dev_private;
414
	int pm = rdev->pm.pm_method;
415 416

	return snprintf(buf, PAGE_SIZE, "%s\n",
417
			(pm == PM_METHOD_DYNPM) ? "dynpm" : "profile");
418 419
}

420 421 422 423
static ssize_t radeon_set_pm_method(struct device *dev,
				    struct device_attribute *attr,
				    const char *buf,
				    size_t count)
424 425 426 427
{
	struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
	struct radeon_device *rdev = ddev->dev_private;

428 429

	if (strncmp("dynpm", buf, strlen("dynpm")) == 0) {
430
		mutex_lock(&rdev->pm.mutex);
431 432 433
		rdev->pm.pm_method = PM_METHOD_DYNPM;
		rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
		rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
434
		mutex_unlock(&rdev->pm.mutex);
435 436 437 438 439
	} else if (strncmp("profile", buf, strlen("profile")) == 0) {
		mutex_lock(&rdev->pm.mutex);
		/* disable dynpm */
		rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
		rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
440
		rdev->pm.pm_method = PM_METHOD_PROFILE;
441
		mutex_unlock(&rdev->pm.mutex);
442
		cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
443
	} else {
444
		count = -EINVAL;
445 446 447 448
		goto fail;
	}
	radeon_pm_compute_clocks(rdev);
fail:
449 450 451
	return count;
}

452 453
static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile);
static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method);
454

455 456 457 458 459 460
static ssize_t radeon_hwmon_show_temp(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
{
	struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
	struct radeon_device *rdev = ddev->dev_private;
461
	int temp;
462 463 464 465 466 467 468 469 470

	switch (rdev->pm.int_thermal_type) {
	case THERMAL_TYPE_RV6XX:
		temp = rv6xx_get_temp(rdev);
		break;
	case THERMAL_TYPE_RV770:
		temp = rv770_get_temp(rdev);
		break;
	case THERMAL_TYPE_EVERGREEN:
471
	case THERMAL_TYPE_NI:
472 473
		temp = evergreen_get_temp(rdev);
		break;
474 475 476
	case THERMAL_TYPE_SUMO:
		temp = sumo_get_temp(rdev);
		break;
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
	default:
		temp = 0;
		break;
	}

	return snprintf(buf, PAGE_SIZE, "%d\n", temp);
}

static ssize_t radeon_hwmon_show_name(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
{
	return sprintf(buf, "radeon\n");
}

static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0);

static struct attribute *hwmon_attributes[] = {
	&sensor_dev_attr_temp1_input.dev_attr.attr,
	&sensor_dev_attr_name.dev_attr.attr,
	NULL
};

static const struct attribute_group hwmon_attrgroup = {
	.attrs = hwmon_attributes,
};

505
static int radeon_hwmon_init(struct radeon_device *rdev)
506
{
507
	int err = 0;
508 509 510 511 512 513 514

	rdev->pm.int_hwmon_dev = NULL;

	switch (rdev->pm.int_thermal_type) {
	case THERMAL_TYPE_RV6XX:
	case THERMAL_TYPE_RV770:
	case THERMAL_TYPE_EVERGREEN:
515
	case THERMAL_TYPE_NI:
516
	case THERMAL_TYPE_SUMO:
517
		rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev);
518 519 520 521 522 523
		if (IS_ERR(rdev->pm.int_hwmon_dev)) {
			err = PTR_ERR(rdev->pm.int_hwmon_dev);
			dev_err(rdev->dev,
				"Unable to register hwmon device: %d\n", err);
			break;
		}
524 525 526
		dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev);
		err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj,
					 &hwmon_attrgroup);
527 528 529 530 531
		if (err) {
			dev_err(rdev->dev,
				"Unable to create hwmon sysfs file: %d\n", err);
			hwmon_device_unregister(rdev->dev);
		}
532 533 534 535
		break;
	default:
		break;
	}
536 537

	return err;
538 539 540 541 542 543 544 545 546 547
}

static void radeon_hwmon_fini(struct radeon_device *rdev)
{
	if (rdev->pm.int_hwmon_dev) {
		sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup);
		hwmon_device_unregister(rdev->pm.int_hwmon_dev);
	}
}

548
void radeon_pm_suspend(struct radeon_device *rdev)
549
{
550
	mutex_lock(&rdev->pm.mutex);
551 552 553 554
	if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
		if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
			rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
	}
555
	mutex_unlock(&rdev->pm.mutex);
556 557

	cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
558 559
}

560
void radeon_pm_resume(struct radeon_device *rdev)
561
{
562 563 564
	/* set up the default clocks if the MC ucode is loaded */
	if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) {
		if (rdev->pm.default_vddc)
565 566
			radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
						SET_VOLTAGE_TYPE_ASIC_VDDC);
567 568 569
		if (rdev->pm.default_vddci)
			radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
						SET_VOLTAGE_TYPE_ASIC_VDDCI);
570 571 572 573 574
		if (rdev->pm.default_sclk)
			radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
		if (rdev->pm.default_mclk)
			radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
	}
A
Alex Deucher 已提交
575 576 577 578
	/* asic init will reset the default power state */
	mutex_lock(&rdev->pm.mutex);
	rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
	rdev->pm.current_clock_mode_index = 0;
579 580
	rdev->pm.current_sclk = rdev->pm.default_sclk;
	rdev->pm.current_mclk = rdev->pm.default_mclk;
581
	rdev->pm.current_vddc = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage;
582
	rdev->pm.current_vddci = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.vddci;
583 584 585
	if (rdev->pm.pm_method == PM_METHOD_DYNPM
	    && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
		rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
586 587
		schedule_delayed_work(&rdev->pm.dynpm_idle_work,
				      msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
588
	}
A
Alex Deucher 已提交
589
	mutex_unlock(&rdev->pm.mutex);
590
	radeon_pm_compute_clocks(rdev);
591 592
}

593 594
int radeon_pm_init(struct radeon_device *rdev)
{
595
	int ret;
596

597 598
	/* default to profile method */
	rdev->pm.pm_method = PM_METHOD_PROFILE;
A
Alex Deucher 已提交
599
	rdev->pm.profile = PM_PROFILE_DEFAULT;
600 601 602 603
	rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
	rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
	rdev->pm.dynpm_can_upclock = true;
	rdev->pm.dynpm_can_downclock = true;
604 605
	rdev->pm.default_sclk = rdev->clock.default_sclk;
	rdev->pm.default_mclk = rdev->clock.default_mclk;
A
Alex Deucher 已提交
606 607
	rdev->pm.current_sclk = rdev->clock.default_sclk;
	rdev->pm.current_mclk = rdev->clock.default_mclk;
608
	rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
609

610 611 612 613 614
	if (rdev->bios) {
		if (rdev->is_atom_bios)
			radeon_atombios_get_power_modes(rdev);
		else
			radeon_combios_get_power_modes(rdev);
615
		radeon_pm_print_states(rdev);
616
		radeon_pm_init_profile(rdev);
617 618 619
		/* set up the default clocks if the MC ucode is loaded */
		if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) {
			if (rdev->pm.default_vddc)
620 621
				radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
							SET_VOLTAGE_TYPE_ASIC_VDDC);
622 623 624
			if (rdev->pm.default_vddci)
				radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
							SET_VOLTAGE_TYPE_ASIC_VDDCI);
625 626 627 628 629
			if (rdev->pm.default_sclk)
				radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
			if (rdev->pm.default_mclk)
				radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
		}
630 631
	}

632
	/* set up the internal thermal sensor if applicable */
633 634 635
	ret = radeon_hwmon_init(rdev);
	if (ret)
		return ret;
636 637 638

	INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);

639 640
	if (rdev->pm.num_power_states > 1) {
		/* where's the best place to put these? */
641 642 643 644 645 646
		ret = device_create_file(rdev->dev, &dev_attr_power_profile);
		if (ret)
			DRM_ERROR("failed to create device file for power profile\n");
		ret = device_create_file(rdev->dev, &dev_attr_power_method);
		if (ret)
			DRM_ERROR("failed to create device file for power method\n");
647

648 649 650 651 652 653 654
#ifdef CONFIG_ACPI
		rdev->acpi_nb.notifier_call = radeon_acpi_event;
		register_acpi_notifier(&rdev->acpi_nb);
#endif
		if (radeon_debugfs_pm_init(rdev)) {
			DRM_ERROR("Failed to register debugfs file for PM!\n");
		}
655

656 657
		DRM_INFO("radeon: power management initialized\n");
	}
658

659 660 661
	return 0;
}

662 663
void radeon_pm_fini(struct radeon_device *rdev)
{
664
	if (rdev->pm.num_power_states > 1) {
665
		mutex_lock(&rdev->pm.mutex);
666 667 668 669 670 671 672 673 674 675
		if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
			rdev->pm.profile = PM_PROFILE_DEFAULT;
			radeon_pm_update_profile(rdev);
			radeon_pm_set_clocks(rdev);
		} else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
			/* reset default clocks */
			rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
			rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
			radeon_pm_set_clocks(rdev);
		}
676
		mutex_unlock(&rdev->pm.mutex);
677 678

		cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
679

680 681 682 683 684 685
		device_remove_file(rdev->dev, &dev_attr_power_profile);
		device_remove_file(rdev->dev, &dev_attr_power_method);
#ifdef CONFIG_ACPI
		unregister_acpi_notifier(&rdev->acpi_nb);
#endif
	}
686

687 688 689
	if (rdev->pm.power_state)
		kfree(rdev->pm.power_state);

690
	radeon_hwmon_fini(rdev);
691 692
}

693 694 695
void radeon_pm_compute_clocks(struct radeon_device *rdev)
{
	struct drm_device *ddev = rdev->ddev;
696
	struct drm_crtc *crtc;
697 698
	struct radeon_crtc *radeon_crtc;

699 700 701
	if (rdev->pm.num_power_states < 2)
		return;

702 703 704
	mutex_lock(&rdev->pm.mutex);

	rdev->pm.active_crtcs = 0;
705 706 707 708 709
	rdev->pm.active_crtc_count = 0;
	list_for_each_entry(crtc,
		&ddev->mode_config.crtc_list, head) {
		radeon_crtc = to_radeon_crtc(crtc);
		if (radeon_crtc->enabled) {
710
			rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
711
			rdev->pm.active_crtc_count++;
712 713 714
		}
	}

715 716 717 718 719 720 721 722 723 724 725 726 727 728
	if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
		radeon_pm_update_profile(rdev);
		radeon_pm_set_clocks(rdev);
	} else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
		if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
			if (rdev->pm.active_crtc_count > 1) {
				if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
					cancel_delayed_work(&rdev->pm.dynpm_idle_work);

					rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
					rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
					radeon_pm_get_dynpm_state(rdev);
					radeon_pm_set_clocks(rdev);

729
					DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
730 731 732 733 734 735 736 737 738 739
				}
			} else if (rdev->pm.active_crtc_count == 1) {
				/* TODO: Increase clocks if needed for current mode */

				if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
					rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
					rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
					radeon_pm_get_dynpm_state(rdev);
					radeon_pm_set_clocks(rdev);

740 741
					schedule_delayed_work(&rdev->pm.dynpm_idle_work,
							      msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
742 743
				} else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
					rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
744 745
					schedule_delayed_work(&rdev->pm.dynpm_idle_work,
							      msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
746
					DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
747 748 749 750 751 752 753 754 755 756 757
				}
			} else { /* count == 0 */
				if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
					cancel_delayed_work(&rdev->pm.dynpm_idle_work);

					rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
					rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
					radeon_pm_get_dynpm_state(rdev);
					radeon_pm_set_clocks(rdev);
				}
			}
758 759
		}
	}
760 761

	mutex_unlock(&rdev->pm.mutex);
762 763
}

764
static bool radeon_pm_in_vbl(struct radeon_device *rdev)
765
{
766
	int  crtc, vpos, hpos, vbl_status;
767 768
	bool in_vbl = true;

769 770 771 772 773
	/* Iterate over all active crtc's. All crtc's must be in vblank,
	 * otherwise return in_vbl == false.
	 */
	for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
		if (rdev->pm.active_crtcs & (1 << crtc)) {
774 775 776
			vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos);
			if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
			    !(vbl_status & DRM_SCANOUTPOS_INVBL))
777 778 779
				in_vbl = false;
		}
	}
780 781 782 783

	return in_vbl;
}

784
static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
785 786 787 788
{
	u32 stat_crtc = 0;
	bool in_vbl = radeon_pm_in_vbl(rdev);

789
	if (in_vbl == false)
790
		DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
791
			 finish ? "exit" : "entry");
792 793
	return in_vbl;
}
794

795
static void radeon_dynpm_idle_work_handler(struct work_struct *work)
796 797
{
	struct radeon_device *rdev;
798
	int resched;
799
	rdev = container_of(work, struct radeon_device,
800
				pm.dynpm_idle_work.work);
801

802
	resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
803
	mutex_lock(&rdev->pm.mutex);
804
	if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
805
		int not_processed = 0;
806 807 808
		int i;

		for (i = 0; i < RADEON_NUM_RINGS; ++i) {
809
			not_processed += radeon_fence_count_emitted(rdev, i);
810 811
			if (not_processed >= 3)
				break;
812 813 814
		}

		if (not_processed >= 3) { /* should upclock */
815 816 817 818 819 820 821
			if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
				rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
			} else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
				   rdev->pm.dynpm_can_upclock) {
				rdev->pm.dynpm_planned_action =
					DYNPM_ACTION_UPCLOCK;
				rdev->pm.dynpm_action_timeout = jiffies +
822 823 824
				msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
			}
		} else if (not_processed == 0) { /* should downclock */
825 826 827 828 829 830 831
			if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
				rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
			} else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
				   rdev->pm.dynpm_can_downclock) {
				rdev->pm.dynpm_planned_action =
					DYNPM_ACTION_DOWNCLOCK;
				rdev->pm.dynpm_action_timeout = jiffies +
832 833 834 835
				msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
			}
		}

836 837 838
		/* Note, radeon_pm_set_clocks is called with static_switch set
		 * to false since we want to wait for vbl to avoid flicker.
		 */
839 840 841 842
		if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
		    jiffies > rdev->pm.dynpm_action_timeout) {
			radeon_pm_get_dynpm_state(rdev);
			radeon_pm_set_clocks(rdev);
843
		}
844

845 846
		schedule_delayed_work(&rdev->pm.dynpm_idle_work,
				      msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
847 848
	}
	mutex_unlock(&rdev->pm.mutex);
849
	ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
850 851
}

852 853 854 855 856 857 858 859 860 861 862
/*
 * Debugfs info
 */
#if defined(CONFIG_DEBUG_FS)

static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct radeon_device *rdev = dev->dev_private;

863
	seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk);
864
	seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
865
	seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk);
866 867
	if (rdev->asic->get_memory_clock)
		seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
868 869
	if (rdev->pm.current_vddc)
		seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
870 871
	if (rdev->asic->get_pcie_lanes)
		seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
872 873 874 875 876 877 878 879 880

	return 0;
}

static struct drm_info_list radeon_pm_info_list[] = {
	{"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
};
#endif

881
static int radeon_debugfs_pm_init(struct radeon_device *rdev)
882 883 884 885 886 887 888
{
#if defined(CONFIG_DEBUG_FS)
	return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
#else
	return 0;
#endif
}