main.c 26.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * drivers/base/power/main.c - Where the driver meets power management.
 *
 * Copyright (c) 2003 Patrick Mochel
 * Copyright (c) 2003 Open Source Development Lab
 *
 * This file is released under the GPLv2
 *
 *
 * The driver model core calls device_pm_add() when a device is registered.
 * This will intialize the embedded device_pm_info object in the device
 * and add it to the list of power-controlled devices. sysfs entries for
 * controlling device power management will also be added.
 *
15 16 17
 * A separate list is used for keeping track of power info, because the power
 * domain dependencies may differ from the ancestral dependencies that the
 * subsystem list maintains.
L
Linus Torvalds 已提交
18 19 20
 */

#include <linux/device.h>
21
#include <linux/kallsyms.h>
22
#include <linux/mutex.h>
23
#include <linux/pm.h>
24
#include <linux/pm_runtime.h>
25
#include <linux/resume-trace.h>
26
#include <linux/interrupt.h>
27
#include <linux/sched.h>
28
#include <linux/async.h>
29
#include <linux/suspend.h>
30

31
#include "../base.h"
L
Linus Torvalds 已提交
32 33
#include "power.h"

34
/*
35
 * The entries in the dpm_list list are in a depth first order, simply
36 37 38
 * because children are guaranteed to be discovered after parents, and
 * are inserted at the back of the list on discovery.
 *
39 40
 * Since device_pm_add() may be called with a device lock held,
 * we must never try to acquire a device lock while holding
41 42 43
 * dpm_list_mutex.
 */

44
LIST_HEAD(dpm_list);
45 46 47
LIST_HEAD(dpm_prepared_list);
LIST_HEAD(dpm_suspended_list);
LIST_HEAD(dpm_noirq_list);
L
Linus Torvalds 已提交
48

49
static DEFINE_MUTEX(dpm_list_mtx);
50
static pm_message_t pm_transition;
L
Linus Torvalds 已提交
51

52 53 54 55 56 57
/*
 * Set once the preparation of devices for a PM transition has started, reset
 * before starting to resume devices.  Protected by dpm_list_mtx.
 */
static bool transition_started;

58 59
static int async_error;

60
/**
61
 * device_pm_init - Initialize the PM-related part of a device object.
62 63 64 65 66
 * @dev: Device object being initialized.
 */
void device_pm_init(struct device *dev)
{
	dev->power.status = DPM_ON;
67
	init_completion(&dev->power.completion);
68
	complete_all(&dev->power.completion);
69 70
	dev->power.wakeup = NULL;
	spin_lock_init(&dev->power.lock);
71 72 73
	pm_runtime_init(dev);
}

74
/**
75
 * device_pm_lock - Lock the list of active devices used by the PM core.
76 77 78 79 80 81 82
 */
void device_pm_lock(void)
{
	mutex_lock(&dpm_list_mtx);
}

/**
83
 * device_pm_unlock - Unlock the list of active devices used by the PM core.
84 85 86 87 88
 */
void device_pm_unlock(void)
{
	mutex_unlock(&dpm_list_mtx);
}
89

90
/**
91 92
 * device_pm_add - Add a device to the PM core's list of active devices.
 * @dev: Device to add to the list.
93
 */
94
void device_pm_add(struct device *dev)
L
Linus Torvalds 已提交
95 96
{
	pr_debug("PM: Adding info for %s:%s\n",
97 98
		 dev->bus ? dev->bus->name : "No Bus",
		 kobject_name(&dev->kobj));
99
	mutex_lock(&dpm_list_mtx);
100
	if (dev->parent) {
101 102
		if (dev->parent->power.status >= DPM_SUSPENDING)
			dev_warn(dev, "parent %s should not be sleeping\n",
103
				 dev_name(dev->parent));
104 105 106 107 108 109
	} else if (transition_started) {
		/*
		 * We refuse to register parentless devices while a PM
		 * transition is in progress in order to avoid leaving them
		 * unhandled down the road
		 */
110
		dev_WARN(dev, "Parentless device registered during a PM transaction\n");
111
	}
112 113

	list_add_tail(&dev->power.entry, &dpm_list);
114
	mutex_unlock(&dpm_list_mtx);
L
Linus Torvalds 已提交
115 116
}

117
/**
118 119
 * device_pm_remove - Remove a device from the PM core's list of active devices.
 * @dev: Device to be removed from the list.
120
 */
121
void device_pm_remove(struct device *dev)
L
Linus Torvalds 已提交
122 123
{
	pr_debug("PM: Removing info for %s:%s\n",
124 125
		 dev->bus ? dev->bus->name : "No Bus",
		 kobject_name(&dev->kobj));
126
	complete_all(&dev->power.completion);
127
	mutex_lock(&dpm_list_mtx);
L
Linus Torvalds 已提交
128
	list_del_init(&dev->power.entry);
129
	mutex_unlock(&dpm_list_mtx);
130
	device_wakeup_disable(dev);
131
	pm_runtime_remove(dev);
132 133
}

134
/**
135 136 137
 * device_pm_move_before - Move device in the PM core's list of active devices.
 * @deva: Device to move in dpm_list.
 * @devb: Device @deva should come before.
138 139 140 141 142 143 144 145 146 147 148 149 150
 */
void device_pm_move_before(struct device *deva, struct device *devb)
{
	pr_debug("PM: Moving %s:%s before %s:%s\n",
		 deva->bus ? deva->bus->name : "No Bus",
		 kobject_name(&deva->kobj),
		 devb->bus ? devb->bus->name : "No Bus",
		 kobject_name(&devb->kobj));
	/* Delete deva from dpm_list and reinsert before devb. */
	list_move_tail(&deva->power.entry, &devb->power.entry);
}

/**
151 152 153
 * device_pm_move_after - Move device in the PM core's list of active devices.
 * @deva: Device to move in dpm_list.
 * @devb: Device @deva should come after.
154 155 156 157 158 159 160 161 162 163 164 165 166
 */
void device_pm_move_after(struct device *deva, struct device *devb)
{
	pr_debug("PM: Moving %s:%s after %s:%s\n",
		 deva->bus ? deva->bus->name : "No Bus",
		 kobject_name(&deva->kobj),
		 devb->bus ? devb->bus->name : "No Bus",
		 kobject_name(&devb->kobj));
	/* Delete deva from dpm_list and reinsert after devb. */
	list_move(&deva->power.entry, &devb->power.entry);
}

/**
167 168
 * device_pm_move_last - Move device to end of the PM core's list of devices.
 * @dev: Device to move in dpm_list.
169 170 171 172 173 174 175 176 177
 */
void device_pm_move_last(struct device *dev)
{
	pr_debug("PM: Moving %s:%s to end of list\n",
		 dev->bus ? dev->bus->name : "No Bus",
		 kobject_name(&dev->kobj));
	list_move_tail(&dev->power.entry, &dpm_list);
}

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
static ktime_t initcall_debug_start(struct device *dev)
{
	ktime_t calltime = ktime_set(0, 0);

	if (initcall_debug) {
		pr_info("calling  %s+ @ %i\n",
				dev_name(dev), task_pid_nr(current));
		calltime = ktime_get();
	}

	return calltime;
}

static void initcall_debug_report(struct device *dev, ktime_t calltime,
				  int error)
{
	ktime_t delta, rettime;

	if (initcall_debug) {
		rettime = ktime_get();
		delta = ktime_sub(rettime, calltime);
		pr_info("call %s+ returned %d after %Ld usecs\n", dev_name(dev),
			error, (unsigned long long)ktime_to_ns(delta) >> 10);
	}
}

204 205 206 207 208 209 210 211 212 213
/**
 * dpm_wait - Wait for a PM operation to complete.
 * @dev: Device to wait for.
 * @async: If unset, wait only if the device's power.async_suspend flag is set.
 */
static void dpm_wait(struct device *dev, bool async)
{
	if (!dev)
		return;

214
	if (async || (pm_async_enabled && dev->power.async_suspend))
215 216 217 218 219 220 221 222 223 224 225 226 227 228
		wait_for_completion(&dev->power.completion);
}

static int dpm_wait_fn(struct device *dev, void *async_ptr)
{
	dpm_wait(dev, *((bool *)async_ptr));
	return 0;
}

static void dpm_wait_for_children(struct device *dev, bool async)
{
       device_for_each_child(dev, &async, dpm_wait_fn);
}

229
/**
230 231 232 233
 * pm_op - Execute the PM operation appropriate for given PM event.
 * @dev: Device to handle.
 * @ops: PM operations to choose from.
 * @state: PM transition of the system being carried out.
234
 */
235 236 237
static int pm_op(struct device *dev,
		 const struct dev_pm_ops *ops,
		 pm_message_t state)
238 239
{
	int error = 0;
240
	ktime_t calltime;
241

242
	calltime = initcall_debug_start(dev);
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289

	switch (state.event) {
#ifdef CONFIG_SUSPEND
	case PM_EVENT_SUSPEND:
		if (ops->suspend) {
			error = ops->suspend(dev);
			suspend_report_result(ops->suspend, error);
		}
		break;
	case PM_EVENT_RESUME:
		if (ops->resume) {
			error = ops->resume(dev);
			suspend_report_result(ops->resume, error);
		}
		break;
#endif /* CONFIG_SUSPEND */
#ifdef CONFIG_HIBERNATION
	case PM_EVENT_FREEZE:
	case PM_EVENT_QUIESCE:
		if (ops->freeze) {
			error = ops->freeze(dev);
			suspend_report_result(ops->freeze, error);
		}
		break;
	case PM_EVENT_HIBERNATE:
		if (ops->poweroff) {
			error = ops->poweroff(dev);
			suspend_report_result(ops->poweroff, error);
		}
		break;
	case PM_EVENT_THAW:
	case PM_EVENT_RECOVER:
		if (ops->thaw) {
			error = ops->thaw(dev);
			suspend_report_result(ops->thaw, error);
		}
		break;
	case PM_EVENT_RESTORE:
		if (ops->restore) {
			error = ops->restore(dev);
			suspend_report_result(ops->restore, error);
		}
		break;
#endif /* CONFIG_HIBERNATION */
	default:
		error = -EINVAL;
	}
290

291
	initcall_debug_report(dev, calltime, error);
292

293 294 295 296
	return error;
}

/**
297 298 299 300
 * pm_noirq_op - Execute the PM operation appropriate for given PM event.
 * @dev: Device to handle.
 * @ops: PM operations to choose from.
 * @state: PM transition of the system being carried out.
301
 *
302 303
 * The driver of @dev will not receive interrupts while this function is being
 * executed.
304
 */
305 306
static int pm_noirq_op(struct device *dev,
			const struct dev_pm_ops *ops,
307 308 309
			pm_message_t state)
{
	int error = 0;
310
	ktime_t calltime = ktime_set(0, 0), delta, rettime;
311 312

	if (initcall_debug) {
313 314 315
		pr_info("calling  %s+ @ %i, parent: %s\n",
				dev_name(dev), task_pid_nr(current),
				dev->parent ? dev_name(dev->parent) : "none");
316 317
		calltime = ktime_get();
	}
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364

	switch (state.event) {
#ifdef CONFIG_SUSPEND
	case PM_EVENT_SUSPEND:
		if (ops->suspend_noirq) {
			error = ops->suspend_noirq(dev);
			suspend_report_result(ops->suspend_noirq, error);
		}
		break;
	case PM_EVENT_RESUME:
		if (ops->resume_noirq) {
			error = ops->resume_noirq(dev);
			suspend_report_result(ops->resume_noirq, error);
		}
		break;
#endif /* CONFIG_SUSPEND */
#ifdef CONFIG_HIBERNATION
	case PM_EVENT_FREEZE:
	case PM_EVENT_QUIESCE:
		if (ops->freeze_noirq) {
			error = ops->freeze_noirq(dev);
			suspend_report_result(ops->freeze_noirq, error);
		}
		break;
	case PM_EVENT_HIBERNATE:
		if (ops->poweroff_noirq) {
			error = ops->poweroff_noirq(dev);
			suspend_report_result(ops->poweroff_noirq, error);
		}
		break;
	case PM_EVENT_THAW:
	case PM_EVENT_RECOVER:
		if (ops->thaw_noirq) {
			error = ops->thaw_noirq(dev);
			suspend_report_result(ops->thaw_noirq, error);
		}
		break;
	case PM_EVENT_RESTORE:
		if (ops->restore_noirq) {
			error = ops->restore_noirq(dev);
			suspend_report_result(ops->restore_noirq, error);
		}
		break;
#endif /* CONFIG_HIBERNATION */
	default:
		error = -EINVAL;
	}
365 366 367 368

	if (initcall_debug) {
		rettime = ktime_get();
		delta = ktime_sub(rettime, calltime);
369 370 371
		printk("initcall %s_i+ returned %d after %Ld usecs\n",
			dev_name(dev), error,
			(unsigned long long)ktime_to_ns(delta) >> 10);
372 373
	}

374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
	return error;
}

static char *pm_verb(int event)
{
	switch (event) {
	case PM_EVENT_SUSPEND:
		return "suspend";
	case PM_EVENT_RESUME:
		return "resume";
	case PM_EVENT_FREEZE:
		return "freeze";
	case PM_EVENT_QUIESCE:
		return "quiesce";
	case PM_EVENT_HIBERNATE:
		return "hibernate";
	case PM_EVENT_THAW:
		return "thaw";
	case PM_EVENT_RESTORE:
		return "restore";
	case PM_EVENT_RECOVER:
		return "recover";
	default:
		return "(unknown PM event)";
	}
}

static void pm_dev_dbg(struct device *dev, pm_message_t state, char *info)
{
	dev_dbg(dev, "%s%s%s\n", info, pm_verb(state.event),
		((state.event & PM_EVENT_SLEEP) && device_may_wakeup(dev)) ?
		", may wakeup" : "");
}

static void pm_dev_err(struct device *dev, pm_message_t state, char *info,
			int error)
{
	printk(KERN_ERR "PM: Device %s failed to %s%s: error %d\n",
		kobject_name(&dev->kobj), pm_verb(state.event), info, error);
}

415 416 417
static void dpm_show_time(ktime_t starttime, pm_message_t state, char *info)
{
	ktime_t calltime;
418
	u64 usecs64;
419 420 421 422 423 424 425 426 427 428 429 430 431
	int usecs;

	calltime = ktime_get();
	usecs64 = ktime_to_ns(ktime_sub(calltime, starttime));
	do_div(usecs64, NSEC_PER_USEC);
	usecs = usecs64;
	if (usecs == 0)
		usecs = 1;
	pr_info("PM: %s%s%s of devices complete after %ld.%03ld msecs\n",
		info ?: "", info ? " " : "", pm_verb(state.event),
		usecs / USEC_PER_MSEC, usecs % USEC_PER_MSEC);
}

432 433 434
/*------------------------- Resume routines -------------------------*/

/**
435 436 437
 * device_resume_noirq - Execute an "early resume" callback for given device.
 * @dev: Device to handle.
 * @state: PM transition of the system being carried out.
438
 *
439 440
 * The driver of @dev will not receive interrupts while this function is being
 * executed.
441
 */
442
static int device_resume_noirq(struct device *dev, pm_message_t state)
443 444 445 446 447 448
{
	int error = 0;

	TRACE_DEVICE(dev);
	TRACE_RESUME(0);

449
	if (dev->bus && dev->bus->pm) {
450 451
		pm_dev_dbg(dev, state, "EARLY ");
		error = pm_noirq_op(dev, dev->bus->pm, state);
452 453
		if (error)
			goto End;
454
	}
455

456 457 458 459 460 461 462 463 464 465 466 467 468
	if (dev->type && dev->type->pm) {
		pm_dev_dbg(dev, state, "EARLY type ");
		error = pm_noirq_op(dev, dev->type->pm, state);
		if (error)
			goto End;
	}

	if (dev->class && dev->class->pm) {
		pm_dev_dbg(dev, state, "EARLY class ");
		error = pm_noirq_op(dev, dev->class->pm, state);
	}

End:
469 470 471 472 473
	TRACE_RESUME(error);
	return error;
}

/**
474 475
 * dpm_resume_noirq - Execute "early resume" callbacks for non-sysdev devices.
 * @state: PM transition of the system being carried out.
476
 *
477 478
 * Call the "noirq" resume handlers for all devices marked as DPM_OFF_IRQ and
 * enable device drivers to receive interrupts.
479
 */
480
void dpm_resume_noirq(pm_message_t state)
481
{
482
	ktime_t starttime = ktime_get();
483

484
	mutex_lock(&dpm_list_mtx);
485
	transition_started = false;
486 487
	while (!list_empty(&dpm_noirq_list)) {
		struct device *dev = to_device(dpm_noirq_list.next);
488
		int error;
489 490

		get_device(dev);
491 492 493
		dev->power.status = DPM_OFF;
		list_move_tail(&dev->power.entry, &dpm_suspended_list);
		mutex_unlock(&dpm_list_mtx);
494

495 496 497
		error = device_resume_noirq(dev, state);
		if (error)
			pm_dev_err(dev, state, " early", error);
498

499
		mutex_lock(&dpm_list_mtx);
500 501
		put_device(dev);
	}
502
	mutex_unlock(&dpm_list_mtx);
503
	dpm_show_time(starttime, state, "early");
504
	resume_device_irqs();
505
}
506
EXPORT_SYMBOL_GPL(dpm_resume_noirq);
507

508 509
/**
 * legacy_resume - Execute a legacy (bus or class) resume callback for device.
R
Randy Dunlap 已提交
510 511
 * @dev: Device to resume.
 * @cb: Resume callback to execute.
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
 */
static int legacy_resume(struct device *dev, int (*cb)(struct device *dev))
{
	int error;
	ktime_t calltime;

	calltime = initcall_debug_start(dev);

	error = cb(dev);
	suspend_report_result(cb, error);

	initcall_debug_report(dev, calltime, error);

	return error;
}

528
/**
529
 * device_resume - Execute "resume" callbacks for given device.
530 531
 * @dev: Device to handle.
 * @state: PM transition of the system being carried out.
532
 * @async: If true, the device is being resumed asynchronously.
533
 */
534
static int device_resume(struct device *dev, pm_message_t state, bool async)
535 536 537 538 539
{
	int error = 0;

	TRACE_DEVICE(dev);
	TRACE_RESUME(0);
540

541
	dpm_wait(dev->parent, async);
542
	device_lock(dev);
543

544 545
	dev->power.status = DPM_RESUMING;

546 547 548
	if (dev->bus) {
		if (dev->bus->pm) {
			pm_dev_dbg(dev, state, "");
549
			error = pm_op(dev, dev->bus->pm, state);
550 551
		} else if (dev->bus->resume) {
			pm_dev_dbg(dev, state, "legacy ");
552
			error = legacy_resume(dev, dev->bus->resume);
553 554 555
		}
		if (error)
			goto End;
556 557
	}

558 559 560 561 562 563 564
	if (dev->type) {
		if (dev->type->pm) {
			pm_dev_dbg(dev, state, "type ");
			error = pm_op(dev, dev->type->pm, state);
		}
		if (error)
			goto End;
565 566
	}

567 568 569 570 571 572
	if (dev->class) {
		if (dev->class->pm) {
			pm_dev_dbg(dev, state, "class ");
			error = pm_op(dev, dev->class->pm, state);
		} else if (dev->class->resume) {
			pm_dev_dbg(dev, state, "legacy class ");
573
			error = legacy_resume(dev, dev->class->resume);
574
		}
575
	}
576
 End:
577
	device_unlock(dev);
578
	complete_all(&dev->power.completion);
579

580 581 582 583
	TRACE_RESUME(error);
	return error;
}

584 585 586 587 588
static void async_resume(void *data, async_cookie_t cookie)
{
	struct device *dev = (struct device *)data;
	int error;

589
	error = device_resume(dev, pm_transition, true);
590 591 592 593 594
	if (error)
		pm_dev_err(dev, pm_transition, " async", error);
	put_device(dev);
}

595
static bool is_async(struct device *dev)
596
{
597 598
	return dev->power.async_suspend && pm_async_enabled
		&& !pm_trace_is_enabled();
599 600
}

601
/**
602 603
 * dpm_resume - Execute "resume" callbacks for non-sysdev devices.
 * @state: PM transition of the system being carried out.
604
 *
605 606
 * Execute the appropriate "resume" callback for all devices whose status
 * indicates that they are suspended.
607 608 609
 */
static void dpm_resume(pm_message_t state)
{
610
	struct device *dev;
611
	ktime_t starttime = ktime_get();
612 613

	mutex_lock(&dpm_list_mtx);
614
	pm_transition = state;
615
	async_error = 0;
616

617
	list_for_each_entry(dev, &dpm_suspended_list, power.entry) {
618 619 620 621 622 623 624
		INIT_COMPLETION(dev->power.completion);
		if (is_async(dev)) {
			get_device(dev);
			async_schedule(async_resume, dev);
		}
	}

625 626
	while (!list_empty(&dpm_suspended_list)) {
		dev = to_device(dpm_suspended_list.next);
627
		get_device(dev);
628
		if (!is_async(dev)) {
629 630 631 632
			int error;

			mutex_unlock(&dpm_list_mtx);

633
			error = device_resume(dev, state, false);
634 635
			if (error)
				pm_dev_err(dev, state, "", error);
636 637

			mutex_lock(&dpm_list_mtx);
638 639
		}
		if (!list_empty(&dev->power.entry))
640
			list_move_tail(&dev->power.entry, &dpm_prepared_list);
641 642 643
		put_device(dev);
	}
	mutex_unlock(&dpm_list_mtx);
644
	async_synchronize_full();
645
	dpm_show_time(starttime, state, NULL);
646 647 648
}

/**
649 650 651
 * device_complete - Complete a PM transition for given device.
 * @dev: Device to handle.
 * @state: PM transition of the system being carried out.
652
 */
653
static void device_complete(struct device *dev, pm_message_t state)
654
{
655
	device_lock(dev);
656 657 658 659 660 661 662 663 664 665 666

	if (dev->class && dev->class->pm && dev->class->pm->complete) {
		pm_dev_dbg(dev, state, "completing class ");
		dev->class->pm->complete(dev);
	}

	if (dev->type && dev->type->pm && dev->type->pm->complete) {
		pm_dev_dbg(dev, state, "completing type ");
		dev->type->pm->complete(dev);
	}

667
	if (dev->bus && dev->bus->pm && dev->bus->pm->complete) {
668
		pm_dev_dbg(dev, state, "completing ");
669
		dev->bus->pm->complete(dev);
670 671
	}

672
	device_unlock(dev);
673 674 675
}

/**
676 677
 * dpm_complete - Complete a PM transition for all non-sysdev devices.
 * @state: PM transition of the system being carried out.
678
 *
679 680
 * Execute the ->complete() callbacks for all devices whose PM status is not
 * DPM_ON (this allows new devices to be registered).
681
 */
682
static void dpm_complete(pm_message_t state)
683
{
684 685 686
	struct list_head list;

	INIT_LIST_HEAD(&list);
687
	mutex_lock(&dpm_list_mtx);
R
Romit Dasgupta 已提交
688
	transition_started = false;
689 690
	while (!list_empty(&dpm_prepared_list)) {
		struct device *dev = to_device(dpm_prepared_list.prev);
691

692
		get_device(dev);
693 694 695
		dev->power.status = DPM_ON;
		list_move(&dev->power.entry, &list);
		mutex_unlock(&dpm_list_mtx);
696

697 698
		device_complete(dev, state);
		pm_runtime_put_sync(dev);
699

700
		mutex_lock(&dpm_list_mtx);
701
		put_device(dev);
702
	}
703
	list_splice(&list, &dpm_list);
704 705 706 707
	mutex_unlock(&dpm_list_mtx);
}

/**
708 709
 * dpm_resume_end - Execute "resume" callbacks and complete system transition.
 * @state: PM transition of the system being carried out.
710
 *
711 712
 * Execute "resume" callbacks for all devices and complete the PM transition of
 * the system.
713
 */
714
void dpm_resume_end(pm_message_t state)
715
{
716
	might_sleep();
717 718
	dpm_resume(state);
	dpm_complete(state);
719
}
720
EXPORT_SYMBOL_GPL(dpm_resume_end);
721 722 723 724


/*------------------------- Suspend routines -------------------------*/

725
/**
726 727 728 729 730
 * resume_event - Return a "resume" message for given "suspend" sleep state.
 * @sleep_state: PM message representing a sleep state.
 *
 * Return a PM message representing the resume event corresponding to given
 * sleep state.
731 732
 */
static pm_message_t resume_event(pm_message_t sleep_state)
733
{
734 735 736 737 738 739 740 741
	switch (sleep_state.event) {
	case PM_EVENT_SUSPEND:
		return PMSG_RESUME;
	case PM_EVENT_FREEZE:
	case PM_EVENT_QUIESCE:
		return PMSG_RECOVER;
	case PM_EVENT_HIBERNATE:
		return PMSG_RESTORE;
742
	}
743
	return PMSG_ON;
744 745 746
}

/**
747 748 749
 * device_suspend_noirq - Execute a "late suspend" callback for given device.
 * @dev: Device to handle.
 * @state: PM transition of the system being carried out.
750
 *
751 752
 * The driver of @dev will not receive interrupts while this function is being
 * executed.
753
 */
754
static int device_suspend_noirq(struct device *dev, pm_message_t state)
755 756
{
	int error = 0;
757

758 759 760 761 762 763 764 765 766 767 768 769 770 771
	if (dev->class && dev->class->pm) {
		pm_dev_dbg(dev, state, "LATE class ");
		error = pm_noirq_op(dev, dev->class->pm, state);
		if (error)
			goto End;
	}

	if (dev->type && dev->type->pm) {
		pm_dev_dbg(dev, state, "LATE type ");
		error = pm_noirq_op(dev, dev->type->pm, state);
		if (error)
			goto End;
	}

772
	if (dev->bus && dev->bus->pm) {
773 774
		pm_dev_dbg(dev, state, "LATE ");
		error = pm_noirq_op(dev, dev->bus->pm, state);
775
	}
776 777

End:
778 779 780 781
	return error;
}

/**
782 783
 * dpm_suspend_noirq - Execute "late suspend" callbacks for non-sysdev devices.
 * @state: PM transition of the system being carried out.
784
 *
785 786
 * Prevent device drivers from receiving interrupts and call the "noirq" suspend
 * handlers for all non-sysdev devices.
787
 */
788
int dpm_suspend_noirq(pm_message_t state)
789
{
790
	ktime_t starttime = ktime_get();
791 792
	int error = 0;

793
	suspend_device_irqs();
794
	mutex_lock(&dpm_list_mtx);
795 796
	while (!list_empty(&dpm_suspended_list)) {
		struct device *dev = to_device(dpm_suspended_list.prev);
797 798 799 800

		get_device(dev);
		mutex_unlock(&dpm_list_mtx);

801
		error = device_suspend_noirq(dev, state);
802 803

		mutex_lock(&dpm_list_mtx);
804
		if (error) {
805
			pm_dev_err(dev, state, " late", error);
806
			put_device(dev);
807 808
			break;
		}
809
		dev->power.status = DPM_OFF_IRQ;
810
		if (!list_empty(&dev->power.entry))
811
			list_move(&dev->power.entry, &dpm_noirq_list);
812
		put_device(dev);
813
	}
814
	mutex_unlock(&dpm_list_mtx);
815
	if (error)
816
		dpm_resume_noirq(resume_event(state));
817 818
	else
		dpm_show_time(starttime, state, "late");
819 820
	return error;
}
821
EXPORT_SYMBOL_GPL(dpm_suspend_noirq);
822

823 824
/**
 * legacy_suspend - Execute a legacy (bus or class) suspend callback for device.
R
Randy Dunlap 已提交
825 826 827
 * @dev: Device to suspend.
 * @state: PM transition of the system being carried out.
 * @cb: Suspend callback to execute.
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
 */
static int legacy_suspend(struct device *dev, pm_message_t state,
			  int (*cb)(struct device *dev, pm_message_t state))
{
	int error;
	ktime_t calltime;

	calltime = initcall_debug_start(dev);

	error = cb(dev, state);
	suspend_report_result(cb, error);

	initcall_debug_report(dev, calltime, error);

	return error;
}

845
/**
846 847 848
 * device_suspend - Execute "suspend" callbacks for given device.
 * @dev: Device to handle.
 * @state: PM transition of the system being carried out.
849
 * @async: If true, the device is being suspended asynchronously.
850
 */
851
static int __device_suspend(struct device *dev, pm_message_t state, bool async)
852 853 854
{
	int error = 0;

855
	dpm_wait_for_children(dev, async);
856
	device_lock(dev);
857

858 859 860
	if (async_error)
		goto End;

861 862 863 864 865
	if (pm_wakeup_pending()) {
		async_error = -EBUSY;
		goto End;
	}

866 867 868 869 870 871
	if (dev->class) {
		if (dev->class->pm) {
			pm_dev_dbg(dev, state, "class ");
			error = pm_op(dev, dev->class->pm, state);
		} else if (dev->class->suspend) {
			pm_dev_dbg(dev, state, "legacy class ");
872
			error = legacy_suspend(dev, state, dev->class->suspend);
873 874 875
		}
		if (error)
			goto End;
876 877
	}

878 879 880 881 882 883 884
	if (dev->type) {
		if (dev->type->pm) {
			pm_dev_dbg(dev, state, "type ");
			error = pm_op(dev, dev->type->pm, state);
		}
		if (error)
			goto End;
885 886
	}

887 888 889
	if (dev->bus) {
		if (dev->bus->pm) {
			pm_dev_dbg(dev, state, "");
890
			error = pm_op(dev, dev->bus->pm, state);
891 892
		} else if (dev->bus->suspend) {
			pm_dev_dbg(dev, state, "legacy ");
893
			error = legacy_suspend(dev, state, dev->bus->suspend);
894
		}
895
	}
896 897 898 899

	if (!error)
		dev->power.status = DPM_OFF;

900
 End:
901
	device_unlock(dev);
902
	complete_all(&dev->power.completion);
903

904 905 906
	if (error)
		async_error = error;

907 908 909
	return error;
}

910 911 912 913 914 915
static void async_suspend(void *data, async_cookie_t cookie)
{
	struct device *dev = (struct device *)data;
	int error;

	error = __device_suspend(dev, pm_transition, true);
916
	if (error)
917 918 919 920 921 922 923 924 925
		pm_dev_err(dev, pm_transition, " async", error);

	put_device(dev);
}

static int device_suspend(struct device *dev)
{
	INIT_COMPLETION(dev->power.completion);

926
	if (pm_async_enabled && dev->power.async_suspend) {
927 928 929 930 931 932 933 934
		get_device(dev);
		async_schedule(async_suspend, dev);
		return 0;
	}

	return __device_suspend(dev, pm_transition, false);
}

935
/**
936 937
 * dpm_suspend - Execute "suspend" callbacks for all non-sysdev devices.
 * @state: PM transition of the system being carried out.
938
 */
939
static int dpm_suspend(pm_message_t state)
940
{
941
	ktime_t starttime = ktime_get();
942 943 944
	int error = 0;

	mutex_lock(&dpm_list_mtx);
945 946
	pm_transition = state;
	async_error = 0;
947 948
	while (!list_empty(&dpm_prepared_list)) {
		struct device *dev = to_device(dpm_prepared_list.prev);
949

950
		get_device(dev);
951
		mutex_unlock(&dpm_list_mtx);
952

953
		error = device_suspend(dev);
954

955
		mutex_lock(&dpm_list_mtx);
956
		if (error) {
957 958
			pm_dev_err(dev, state, "", error);
			put_device(dev);
959 960
			break;
		}
961
		if (!list_empty(&dev->power.entry))
962
			list_move(&dev->power.entry, &dpm_suspended_list);
963
		put_device(dev);
964 965
		if (async_error)
			break;
966 967
	}
	mutex_unlock(&dpm_list_mtx);
968 969 970
	async_synchronize_full();
	if (!error)
		error = async_error;
971 972
	if (!error)
		dpm_show_time(starttime, state, NULL);
973 974 975 976
	return error;
}

/**
977 978 979 980 981 982
 * device_prepare - Prepare a device for system power transition.
 * @dev: Device to handle.
 * @state: PM transition of the system being carried out.
 *
 * Execute the ->prepare() callback(s) for given device.  No new children of the
 * device may be registered after this function has returned.
983
 */
984
static int device_prepare(struct device *dev, pm_message_t state)
985 986 987
{
	int error = 0;

988
	device_lock(dev);
989

990
	if (dev->bus && dev->bus->pm && dev->bus->pm->prepare) {
991
		pm_dev_dbg(dev, state, "preparing ");
992 993
		error = dev->bus->pm->prepare(dev);
		suspend_report_result(dev->bus->pm->prepare, error);
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
		if (error)
			goto End;
	}

	if (dev->type && dev->type->pm && dev->type->pm->prepare) {
		pm_dev_dbg(dev, state, "preparing type ");
		error = dev->type->pm->prepare(dev);
		suspend_report_result(dev->type->pm->prepare, error);
		if (error)
			goto End;
	}

	if (dev->class && dev->class->pm && dev->class->pm->prepare) {
		pm_dev_dbg(dev, state, "preparing class ");
		error = dev->class->pm->prepare(dev);
		suspend_report_result(dev->class->pm->prepare, error);
	}
 End:
1012
	device_unlock(dev);
1013 1014 1015

	return error;
}
1016

1017
/**
1018 1019
 * dpm_prepare - Prepare all non-sysdev devices for a system PM transition.
 * @state: PM transition of the system being carried out.
1020
 *
1021
 * Execute the ->prepare() callback(s) for all devices.
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
 */
static int dpm_prepare(pm_message_t state)
{
	int error = 0;

	mutex_lock(&dpm_list_mtx);
	transition_started = true;
	while (!list_empty(&dpm_list)) {
		struct device *dev = to_device(dpm_list.next);

		get_device(dev);
		dev->power.status = DPM_PREPARING;
		mutex_unlock(&dpm_list_mtx);

1036
		pm_runtime_get_noresume(dev);
1037 1038 1039
		if (pm_runtime_barrier(dev) && device_may_wakeup(dev))
			pm_wakeup_event(dev, 0);

1040
		if (pm_wakeup_pending()) {
1041
			pm_runtime_put_sync(dev);
1042 1043 1044 1045
			error = -EBUSY;
		} else {
			error = device_prepare(dev, state);
		}
1046 1047 1048 1049 1050 1051

		mutex_lock(&dpm_list_mtx);
		if (error) {
			dev->power.status = DPM_ON;
			if (error == -EAGAIN) {
				put_device(dev);
S
Sebastian Ott 已提交
1052
				error = 0;
1053 1054
				continue;
			}
1055 1056
			printk(KERN_INFO "PM: Device %s not prepared "
				"for power transition: code %d\n",
1057 1058 1059 1060 1061 1062
				kobject_name(&dev->kobj), error);
			put_device(dev);
			break;
		}
		dev->power.status = DPM_SUSPENDING;
		if (!list_empty(&dev->power.entry))
1063
			list_move_tail(&dev->power.entry, &dpm_prepared_list);
1064 1065 1066
		put_device(dev);
	}
	mutex_unlock(&dpm_list_mtx);
1067 1068 1069
	return error;
}

1070
/**
1071 1072
 * dpm_suspend_start - Prepare devices for PM transition and suspend them.
 * @state: PM transition of the system being carried out.
1073
 *
1074 1075
 * Prepare all non-sysdev devices for system PM transition and execute "suspend"
 * callbacks for them.
1076
 */
1077
int dpm_suspend_start(pm_message_t state)
1078 1079
{
	int error;
1080

1081
	might_sleep();
1082 1083 1084
	error = dpm_prepare(state);
	if (!error)
		error = dpm_suspend(state);
1085 1086
	return error;
}
1087
EXPORT_SYMBOL_GPL(dpm_suspend_start);
1088 1089 1090

void __suspend_report_result(const char *function, void *fn, int ret)
{
1091 1092
	if (ret)
		printk(KERN_ERR "%s(): %pF returns %d\n", function, fn, ret);
1093 1094
}
EXPORT_SYMBOL_GPL(__suspend_report_result);
1095 1096 1097 1098 1099 1100

/**
 * device_pm_wait_for_dev - Wait for suspend/resume of a device to complete.
 * @dev: Device to wait for.
 * @subordinate: Device that needs to wait for @dev.
 */
1101
int device_pm_wait_for_dev(struct device *subordinate, struct device *dev)
1102 1103
{
	dpm_wait(dev, subordinate->power.async_suspend);
1104
	return async_error;
1105 1106
}
EXPORT_SYMBOL_GPL(device_pm_wait_for_dev);