runtime.c 42.0 KB
Newer Older
1
/*
2
 * drivers/base/power/runtime.c - Helper functions for device runtime PM
3 4
 *
 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
5
 * Copyright (C) 2010 Alan Stern <stern@rowland.harvard.edu>
6 7 8 9 10
 *
 * This file is released under the GPLv2.
 */

#include <linux/sched.h>
11
#include <linux/export.h>
12
#include <linux/pm_runtime.h>
13
#include <linux/pm_wakeirq.h>
14
#include <trace/events/rpm.h>
A
Alan Stern 已提交
15
#include "power.h"
16

17
typedef int (*pm_callback_t)(struct device *);
18

19
static pm_callback_t __rpm_get_callback(struct device *dev, size_t cb_offset)
20
{
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
	pm_callback_t cb;
	const struct dev_pm_ops *ops;

	if (dev->pm_domain)
		ops = &dev->pm_domain->ops;
	else if (dev->type && dev->type->pm)
		ops = dev->type->pm;
	else if (dev->class && dev->class->pm)
		ops = dev->class->pm;
	else if (dev->bus && dev->bus->pm)
		ops = dev->bus->pm;
	else
		ops = NULL;

	if (ops)
		cb = *(pm_callback_t *)((void *)ops + cb_offset);
	else
		cb = NULL;

	if (!cb && dev->driver && dev->driver->pm)
		cb = *(pm_callback_t *)((void *)dev->driver->pm + cb_offset);

	return cb;
44 45
}

46 47 48
#define RPM_GET_CALLBACK(dev, callback) \
		__rpm_get_callback(dev, offsetof(struct dev_pm_ops, callback))

49
static int rpm_resume(struct device *dev, int rpmflags);
A
Alan Stern 已提交
50
static int rpm_suspend(struct device *dev, int rpmflags);
51

52 53 54 55 56 57 58 59 60 61 62 63 64 65
/**
 * update_pm_runtime_accounting - Update the time accounting of power states
 * @dev: Device to update the accounting for
 *
 * In order to be able to have time accounting of the various power states
 * (as used by programs such as PowerTOP to show the effectiveness of runtime
 * PM), we need to track the time spent in each state.
 * update_pm_runtime_accounting must be called each time before the
 * runtime_status field is updated, to account the time in the old state
 * correctly.
 */
void update_pm_runtime_accounting(struct device *dev)
{
	unsigned long now = jiffies;
66
	unsigned long delta;
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

	delta = now - dev->power.accounting_timestamp;

	dev->power.accounting_timestamp = now;

	if (dev->power.disable_depth > 0)
		return;

	if (dev->power.runtime_status == RPM_SUSPENDED)
		dev->power.suspended_jiffies += delta;
	else
		dev->power.active_jiffies += delta;
}

static void __update_runtime_status(struct device *dev, enum rpm_status status)
{
	update_pm_runtime_accounting(dev);
	dev->power.runtime_status = status;
}

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
/**
 * pm_runtime_deactivate_timer - Deactivate given device's suspend timer.
 * @dev: Device to handle.
 */
static void pm_runtime_deactivate_timer(struct device *dev)
{
	if (dev->power.timer_expires > 0) {
		del_timer(&dev->power.suspend_timer);
		dev->power.timer_expires = 0;
	}
}

/**
 * pm_runtime_cancel_pending - Deactivate suspend timer and cancel requests.
 * @dev: Device to handle.
 */
static void pm_runtime_cancel_pending(struct device *dev)
{
	pm_runtime_deactivate_timer(dev);
	/*
	 * In case there's a request pending, make sure its work function will
	 * return without doing anything.
	 */
	dev->power.request = RPM_REQ_NONE;
}

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
/*
 * pm_runtime_autosuspend_expiration - Get a device's autosuspend-delay expiration time.
 * @dev: Device to handle.
 *
 * Compute the autosuspend-delay expiration time based on the device's
 * power.last_busy time.  If the delay has already expired or is disabled
 * (negative) or the power.use_autosuspend flag isn't set, return 0.
 * Otherwise return the expiration time in jiffies (adjusted to be nonzero).
 *
 * This function may be called either with or without dev->power.lock held.
 * Either way it can be racy, since power.last_busy may be updated at any time.
 */
unsigned long pm_runtime_autosuspend_expiration(struct device *dev)
{
	int autosuspend_delay;
	long elapsed;
	unsigned long last_busy;
	unsigned long expires = 0;

	if (!dev->power.use_autosuspend)
		goto out;

	autosuspend_delay = ACCESS_ONCE(dev->power.autosuspend_delay);
	if (autosuspend_delay < 0)
		goto out;

	last_busy = ACCESS_ONCE(dev->power.last_busy);
	elapsed = jiffies - last_busy;
	if (elapsed < 0)
		goto out;	/* jiffies has wrapped around. */

	/*
	 * If the autosuspend_delay is >= 1 second, align the timer by rounding
	 * up to the nearest second.
	 */
	expires = last_busy + msecs_to_jiffies(autosuspend_delay);
	if (autosuspend_delay >= 1000)
		expires = round_jiffies(expires);
	expires += !expires;
	if (elapsed >= expires - last_busy)
		expires = 0;	/* Already expired. */

 out:
	return expires;
}
EXPORT_SYMBOL_GPL(pm_runtime_autosuspend_expiration);

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
static int dev_memalloc_noio(struct device *dev, void *data)
{
	return dev->power.memalloc_noio;
}

/*
 * pm_runtime_set_memalloc_noio - Set a device's memalloc_noio flag.
 * @dev: Device to handle.
 * @enable: True for setting the flag and False for clearing the flag.
 *
 * Set the flag for all devices in the path from the device to the
 * root device in the device tree if @enable is true, otherwise clear
 * the flag for devices in the path whose siblings don't set the flag.
 *
 * The function should only be called by block device, or network
 * device driver for solving the deadlock problem during runtime
 * resume/suspend:
 *
 *     If memory allocation with GFP_KERNEL is called inside runtime
 *     resume/suspend callback of any one of its ancestors(or the
 *     block device itself), the deadlock may be triggered inside the
 *     memory allocation since it might not complete until the block
 *     device becomes active and the involed page I/O finishes. The
 *     situation is pointed out first by Alan Stern. Network device
 *     are involved in iSCSI kind of situation.
 *
 * The lock of dev_hotplug_mutex is held in the function for handling
 * hotplug race because pm_runtime_set_memalloc_noio() may be called
 * in async probe().
 *
 * The function should be called between device_add() and device_del()
 * on the affected device(block/network device).
 */
void pm_runtime_set_memalloc_noio(struct device *dev, bool enable)
{
	static DEFINE_MUTEX(dev_hotplug_mutex);

	mutex_lock(&dev_hotplug_mutex);
	for (;;) {
		bool enabled;

		/* hold power lock since bitfield is not SMP-safe. */
		spin_lock_irq(&dev->power.lock);
		enabled = dev->power.memalloc_noio;
		dev->power.memalloc_noio = enable;
		spin_unlock_irq(&dev->power.lock);

		/*
		 * not need to enable ancestors any more if the device
		 * has been enabled.
		 */
		if (enabled && enable)
			break;

		dev = dev->parent;

		/*
		 * clear flag of the parent device only if all the
		 * children don't set the flag because ancestor's
		 * flag was set by any one of the descendants.
		 */
		if (!dev || (!enable &&
			     device_for_each_child(dev, NULL,
						   dev_memalloc_noio)))
			break;
	}
	mutex_unlock(&dev_hotplug_mutex);
}
EXPORT_SYMBOL_GPL(pm_runtime_set_memalloc_noio);

230
/**
231 232
 * rpm_check_suspend_allowed - Test whether a device may be suspended.
 * @dev: Device to test.
233
 */
234
static int rpm_check_suspend_allowed(struct device *dev)
235 236 237 238 239
{
	int retval = 0;

	if (dev->power.runtime_error)
		retval = -EINVAL;
240 241 242
	else if (dev->power.disable_depth > 0)
		retval = -EACCES;
	else if (atomic_read(&dev->power.usage_count) > 0)
243
		retval = -EAGAIN;
244 245
	else if (!dev->power.ignore_children &&
			atomic_read(&dev->power.child_count))
246
		retval = -EBUSY;
247 248 249

	/* Pending resume requests take precedence over suspends. */
	else if ((dev->power.deferred_resume
250
			&& dev->power.runtime_status == RPM_SUSPENDING)
251 252 253
	    || (dev->power.request_pending
			&& dev->power.request == RPM_REQ_RESUME))
		retval = -EAGAIN;
254 255
	else if (__dev_pm_qos_read_value(dev) < 0)
		retval = -EPERM;
256 257 258 259 260 261
	else if (dev->power.runtime_status == RPM_SUSPENDED)
		retval = 1;

	return retval;
}

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
/**
 * __rpm_callback - Run a given runtime PM callback for a given device.
 * @cb: Runtime PM callback to run.
 * @dev: Device to run the callback for.
 */
static int __rpm_callback(int (*cb)(struct device *), struct device *dev)
	__releases(&dev->power.lock) __acquires(&dev->power.lock)
{
	int retval;

	if (dev->power.irq_safe)
		spin_unlock(&dev->power.lock);
	else
		spin_unlock_irq(&dev->power.lock);

	retval = cb(dev);

	if (dev->power.irq_safe)
		spin_lock(&dev->power.lock);
	else
		spin_lock_irq(&dev->power.lock);

	return retval;
}

287
/**
288
 * rpm_idle - Notify device bus type if the device can be suspended.
289 290 291
 * @dev: Device to notify the bus type about.
 * @rpmflags: Flag bits.
 *
292
 * Check if the device's runtime PM status allows it to be suspended.  If
293 294
 * another idle notification has been started earlier, return immediately.  If
 * the RPM_ASYNC flag is set then queue an idle-notification request; otherwise
295 296
 * run the ->runtime_idle() callback directly. If the ->runtime_idle callback
 * doesn't exist or if it returns 0, call rpm_suspend with the RPM_AUTO flag.
297 298 299
 *
 * This function must be called under dev->power.lock with interrupts disabled.
 */
300
static int rpm_idle(struct device *dev, int rpmflags)
301
{
302
	int (*callback)(struct device *);
303 304
	int retval;

305
	trace_rpm_idle_rcuidle(dev, rpmflags);
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
	retval = rpm_check_suspend_allowed(dev);
	if (retval < 0)
		;	/* Conditions are wrong. */

	/* Idle notifications are allowed only in the RPM_ACTIVE state. */
	else if (dev->power.runtime_status != RPM_ACTIVE)
		retval = -EAGAIN;

	/*
	 * Any pending request other than an idle notification takes
	 * precedence over us, except that the timer may be running.
	 */
	else if (dev->power.request_pending &&
	    dev->power.request > RPM_REQ_IDLE)
		retval = -EAGAIN;

	/* Act as though RPM_NOWAIT is always set. */
	else if (dev->power.idle_notification)
		retval = -EINPROGRESS;
325 326 327
	if (retval)
		goto out;

328 329 330
	/* Pending requests need to be canceled. */
	dev->power.request = RPM_REQ_NONE;

331
	if (dev->power.no_callbacks)
A
Alan Stern 已提交
332 333
		goto out;

334 335 336 337 338 339
	/* Carry out an asynchronous or a synchronous idle notification. */
	if (rpmflags & RPM_ASYNC) {
		dev->power.request = RPM_REQ_IDLE;
		if (!dev->power.request_pending) {
			dev->power.request_pending = true;
			queue_work(pm_wq, &dev->power.work);
340
		}
341
		trace_rpm_return_int_rcuidle(dev, _THIS_IP_, 0);
342
		return 0;
343 344 345 346
	}

	dev->power.idle_notification = true;

347
	callback = RPM_GET_CALLBACK(dev, runtime_idle);
348

349
	if (callback)
350
		retval = __rpm_callback(callback, dev);
351 352 353 354 355

	dev->power.idle_notification = false;
	wake_up_all(&dev->power.wait_queue);

 out:
356
	trace_rpm_return_int_rcuidle(dev, _THIS_IP_, retval);
357
	return retval ? retval : rpm_suspend(dev, rpmflags | RPM_AUTO);
358 359
}

360 361 362 363 364 365 366 367 368 369 370 371
/**
 * rpm_callback - Run a given runtime PM callback for a given device.
 * @cb: Runtime PM callback to run.
 * @dev: Device to run the callback for.
 */
static int rpm_callback(int (*cb)(struct device *), struct device *dev)
{
	int retval;

	if (!cb)
		return -ENOSYS;

372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	if (dev->power.memalloc_noio) {
		unsigned int noio_flag;

		/*
		 * Deadlock might be caused if memory allocation with
		 * GFP_KERNEL happens inside runtime_suspend and
		 * runtime_resume callbacks of one block device's
		 * ancestor or the block device itself. Network
		 * device might be thought as part of iSCSI block
		 * device, so network device and its ancestor should
		 * be marked as memalloc_noio too.
		 */
		noio_flag = memalloc_noio_save();
		retval = __rpm_callback(cb, dev);
		memalloc_noio_restore(noio_flag);
	} else {
		retval = __rpm_callback(cb, dev);
	}
390 391

	dev->power.runtime_error = retval;
392
	return retval != -EACCES ? retval : -EIO;
393 394
}

395
/**
396
 * rpm_suspend - Carry out runtime suspend of given device.
397
 * @dev: Device to suspend.
398
 * @rpmflags: Flag bits.
399
 *
400 401 402 403 404
 * Check if the device's runtime PM status allows it to be suspended.
 * Cancel a pending idle notification, autosuspend or suspend. If
 * another suspend has been started earlier, either return immediately
 * or wait for it to finish, depending on the RPM_NOWAIT and RPM_ASYNC
 * flags. If the RPM_ASYNC flag is set then queue a suspend request;
405 406 407 408 409
 * otherwise run the ->runtime_suspend() callback directly. When
 * ->runtime_suspend succeeded, if a deferred resume was requested while
 * the callback was running then carry it out, otherwise send an idle
 * notification for its parent (if the suspend succeeded and both
 * ignore_children of parent->power and irq_safe of dev->power are not set).
410 411 412
 * If ->runtime_suspend failed with -EAGAIN or -EBUSY, and if the RPM_AUTO
 * flag is set and the next autosuspend-delay expiration time is in the
 * future, schedule another autosuspend attempt.
413 414 415
 *
 * This function must be called under dev->power.lock with interrupts disabled.
 */
416
static int rpm_suspend(struct device *dev, int rpmflags)
417 418
	__releases(&dev->power.lock) __acquires(&dev->power.lock)
{
419
	int (*callback)(struct device *);
420
	struct device *parent = NULL;
421
	int retval;
422

423
	trace_rpm_suspend_rcuidle(dev, rpmflags);
424 425

 repeat:
426
	retval = rpm_check_suspend_allowed(dev);
427

428 429 430 431 432 433
	if (retval < 0)
		;	/* Conditions are wrong. */

	/* Synchronous suspends are not allowed in the RPM_RESUMING state. */
	else if (dev->power.runtime_status == RPM_RESUMING &&
	    !(rpmflags & RPM_ASYNC))
434
		retval = -EAGAIN;
435
	if (retval)
436 437
		goto out;

438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
	/* If the autosuspend_delay time hasn't expired yet, reschedule. */
	if ((rpmflags & RPM_AUTO)
	    && dev->power.runtime_status != RPM_SUSPENDING) {
		unsigned long expires = pm_runtime_autosuspend_expiration(dev);

		if (expires != 0) {
			/* Pending requests need to be canceled. */
			dev->power.request = RPM_REQ_NONE;

			/*
			 * Optimization: If the timer is already running and is
			 * set to expire at or before the autosuspend delay,
			 * avoid the overhead of resetting it.  Just let it
			 * expire; pm_suspend_timer_fn() will take care of the
			 * rest.
			 */
			if (!(dev->power.timer_expires && time_before_eq(
			    dev->power.timer_expires, expires))) {
				dev->power.timer_expires = expires;
				mod_timer(&dev->power.suspend_timer, expires);
			}
			dev->power.timer_autosuspends = 1;
			goto out;
		}
	}

464 465 466 467 468 469
	/* Other scheduled or pending requests need to be canceled. */
	pm_runtime_cancel_pending(dev);

	if (dev->power.runtime_status == RPM_SUSPENDING) {
		DEFINE_WAIT(wait);

470
		if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
471 472 473 474
			retval = -EINPROGRESS;
			goto out;
		}

475 476 477 478 479 480 481 482 483
		if (dev->power.irq_safe) {
			spin_unlock(&dev->power.lock);

			cpu_relax();

			spin_lock(&dev->power.lock);
			goto repeat;
		}

484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
		/* Wait for the other suspend running in parallel with us. */
		for (;;) {
			prepare_to_wait(&dev->power.wait_queue, &wait,
					TASK_UNINTERRUPTIBLE);
			if (dev->power.runtime_status != RPM_SUSPENDING)
				break;

			spin_unlock_irq(&dev->power.lock);

			schedule();

			spin_lock_irq(&dev->power.lock);
		}
		finish_wait(&dev->power.wait_queue, &wait);
		goto repeat;
	}

A
Alan Stern 已提交
501 502 503
	if (dev->power.no_callbacks)
		goto no_callback;	/* Assume success. */

504 505
	/* Carry out an asynchronous or a synchronous suspend. */
	if (rpmflags & RPM_ASYNC) {
506 507
		dev->power.request = (rpmflags & RPM_AUTO) ?
		    RPM_REQ_AUTOSUSPEND : RPM_REQ_SUSPEND;
508 509 510 511 512 513 514
		if (!dev->power.request_pending) {
			dev->power.request_pending = true;
			queue_work(pm_wq, &dev->power.work);
		}
		goto out;
	}

515
	__update_runtime_status(dev, RPM_SUSPENDING);
516

517
	callback = RPM_GET_CALLBACK(dev, runtime_suspend);
518

519
	dev_pm_enable_wake_irq(dev);
520
	retval = rpm_callback(callback, dev);
521 522
	if (retval)
		goto fail;
523

A
Alan Stern 已提交
524
 no_callback:
525 526
	__update_runtime_status(dev, RPM_SUSPENDED);
	pm_runtime_deactivate_timer(dev);
527

528 529 530
	if (dev->parent) {
		parent = dev->parent;
		atomic_add_unless(&parent->power.child_count, -1, 0);
531 532 533 534
	}
	wake_up_all(&dev->power.wait_queue);

	if (dev->power.deferred_resume) {
535
		dev->power.deferred_resume = false;
536
		rpm_resume(dev, 0);
537 538 539 540
		retval = -EAGAIN;
		goto out;
	}

541
	/* Maybe the parent is now able to suspend. */
542
	if (parent && !parent->power.ignore_children && !dev->power.irq_safe) {
543
		spin_unlock(&dev->power.lock);
544

545 546 547
		spin_lock(&parent->power.lock);
		rpm_idle(parent, RPM_ASYNC);
		spin_unlock(&parent->power.lock);
548

549
		spin_lock(&dev->power.lock);
550 551 552
	}

 out:
553
	trace_rpm_return_int_rcuidle(dev, _THIS_IP_, retval);
554 555

	return retval;
556 557

 fail:
558
	dev_pm_disable_wake_irq(dev);
559 560
	__update_runtime_status(dev, RPM_ACTIVE);
	dev->power.deferred_resume = false;
561 562
	wake_up_all(&dev->power.wait_queue);

563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
	if (retval == -EAGAIN || retval == -EBUSY) {
		dev->power.runtime_error = 0;

		/*
		 * If the callback routine failed an autosuspend, and
		 * if the last_busy time has been updated so that there
		 * is a new autosuspend expiration time, automatically
		 * reschedule another autosuspend.
		 */
		if ((rpmflags & RPM_AUTO) &&
		    pm_runtime_autosuspend_expiration(dev) != 0)
			goto repeat;
	} else {
		pm_runtime_cancel_pending(dev);
	}
	goto out;
579 580 581
}

/**
582
 * rpm_resume - Carry out runtime resume of given device.
583
 * @dev: Device to resume.
584
 * @rpmflags: Flag bits.
585
 *
586
 * Check if the device's runtime PM status allows it to be resumed.  Cancel
587
 * any scheduled or pending requests.  If another resume has been started
L
Lucas De Marchi 已提交
588
 * earlier, either return immediately or wait for it to finish, depending on the
589 590 591 592 593 594
 * RPM_NOWAIT and RPM_ASYNC flags.  Similarly, if there's a suspend running in
 * parallel with this function, either tell the other process to resume after
 * suspending (deferred_resume) or wait for it to finish.  If the RPM_ASYNC
 * flag is set then queue a resume request; otherwise run the
 * ->runtime_resume() callback directly.  Queue an idle notification for the
 * device if the resume succeeded.
595 596 597
 *
 * This function must be called under dev->power.lock with interrupts disabled.
 */
598
static int rpm_resume(struct device *dev, int rpmflags)
599 600
	__releases(&dev->power.lock) __acquires(&dev->power.lock)
{
601
	int (*callback)(struct device *);
602 603 604
	struct device *parent = NULL;
	int retval = 0;

605
	trace_rpm_resume_rcuidle(dev, rpmflags);
606 607

 repeat:
608
	if (dev->power.runtime_error)
609
		retval = -EINVAL;
610 611 612
	else if (dev->power.disable_depth == 1 && dev->power.is_suspended
	    && dev->power.runtime_status == RPM_ACTIVE)
		retval = 1;
613
	else if (dev->power.disable_depth > 0)
614
		retval = -EACCES;
615
	if (retval)
616 617
		goto out;

618 619 620 621 622 623 624 625 626
	/*
	 * Other scheduled or pending requests need to be canceled.  Small
	 * optimization: If an autosuspend timer is running, leave it running
	 * rather than cancelling it now only to restart it again in the near
	 * future.
	 */
	dev->power.request = RPM_REQ_NONE;
	if (!dev->power.timer_autosuspends)
		pm_runtime_deactivate_timer(dev);
627

628
	if (dev->power.runtime_status == RPM_ACTIVE) {
629 630
		retval = 1;
		goto out;
631
	}
632 633 634 635 636

	if (dev->power.runtime_status == RPM_RESUMING
	    || dev->power.runtime_status == RPM_SUSPENDING) {
		DEFINE_WAIT(wait);

637
		if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
638 639
			if (dev->power.runtime_status == RPM_SUSPENDING)
				dev->power.deferred_resume = true;
640 641
			else
				retval = -EINPROGRESS;
642 643 644
			goto out;
		}

645 646 647 648 649 650 651 652 653
		if (dev->power.irq_safe) {
			spin_unlock(&dev->power.lock);

			cpu_relax();

			spin_lock(&dev->power.lock);
			goto repeat;
		}

654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
		/* Wait for the operation carried out in parallel with us. */
		for (;;) {
			prepare_to_wait(&dev->power.wait_queue, &wait,
					TASK_UNINTERRUPTIBLE);
			if (dev->power.runtime_status != RPM_RESUMING
			    && dev->power.runtime_status != RPM_SUSPENDING)
				break;

			spin_unlock_irq(&dev->power.lock);

			schedule();

			spin_lock_irq(&dev->power.lock);
		}
		finish_wait(&dev->power.wait_queue, &wait);
		goto repeat;
	}

A
Alan Stern 已提交
672 673 674 675 676 677
	/*
	 * See if we can skip waking up the parent.  This is safe only if
	 * power.no_callbacks is set, because otherwise we don't know whether
	 * the resume will actually succeed.
	 */
	if (dev->power.no_callbacks && !parent && dev->parent) {
678
		spin_lock_nested(&dev->parent->power.lock, SINGLE_DEPTH_NESTING);
A
Alan Stern 已提交
679 680 681 682 683
		if (dev->parent->power.disable_depth > 0
		    || dev->parent->power.ignore_children
		    || dev->parent->power.runtime_status == RPM_ACTIVE) {
			atomic_inc(&dev->parent->power.child_count);
			spin_unlock(&dev->parent->power.lock);
684
			retval = 1;
A
Alan Stern 已提交
685 686 687 688 689
			goto no_callback;	/* Assume success. */
		}
		spin_unlock(&dev->parent->power.lock);
	}

690 691 692 693 694 695 696 697 698 699 700
	/* Carry out an asynchronous or a synchronous resume. */
	if (rpmflags & RPM_ASYNC) {
		dev->power.request = RPM_REQ_RESUME;
		if (!dev->power.request_pending) {
			dev->power.request_pending = true;
			queue_work(pm_wq, &dev->power.work);
		}
		retval = 0;
		goto out;
	}

701 702
	if (!parent && dev->parent) {
		/*
703 704 705
		 * Increment the parent's usage counter and resume it if
		 * necessary.  Not needed if dev is irq-safe; then the
		 * parent is permanently resumed.
706 707
		 */
		parent = dev->parent;
708 709
		if (dev->power.irq_safe)
			goto skip_parent;
710
		spin_unlock(&dev->power.lock);
711 712 713

		pm_runtime_get_noresume(parent);

714
		spin_lock(&parent->power.lock);
715
		/*
716 717
		 * Resume the parent if it has runtime PM enabled and not been
		 * set to ignore its children.
718 719 720
		 */
		if (!parent->power.disable_depth
		    && !parent->power.ignore_children) {
721
			rpm_resume(parent, 0);
722 723 724
			if (parent->power.runtime_status != RPM_ACTIVE)
				retval = -EBUSY;
		}
725
		spin_unlock(&parent->power.lock);
726

727
		spin_lock(&dev->power.lock);
728 729 730 731
		if (retval)
			goto out;
		goto repeat;
	}
732
 skip_parent:
733

A
Alan Stern 已提交
734 735 736
	if (dev->power.no_callbacks)
		goto no_callback;	/* Assume success. */

737
	__update_runtime_status(dev, RPM_RESUMING);
738

739
	callback = RPM_GET_CALLBACK(dev, runtime_resume);
740

741
	dev_pm_disable_wake_irq(dev);
742
	retval = rpm_callback(callback, dev);
743
	if (retval) {
744
		__update_runtime_status(dev, RPM_SUSPENDED);
745
		pm_runtime_cancel_pending(dev);
746
		dev_pm_enable_wake_irq(dev);
747
	} else {
A
Alan Stern 已提交
748
 no_callback:
749
		__update_runtime_status(dev, RPM_ACTIVE);
750
		pm_runtime_mark_last_busy(dev);
751 752 753 754 755
		if (parent)
			atomic_inc(&parent->power.child_count);
	}
	wake_up_all(&dev->power.wait_queue);

756
	if (retval >= 0)
757
		rpm_idle(dev, RPM_ASYNC);
758 759

 out:
760
	if (parent && !dev->power.irq_safe) {
761 762 763 764 765 766 767
		spin_unlock_irq(&dev->power.lock);

		pm_runtime_put(parent);

		spin_lock_irq(&dev->power.lock);
	}

768
	trace_rpm_return_int_rcuidle(dev, _THIS_IP_, retval);
769 770 771 772 773

	return retval;
}

/**
774
 * pm_runtime_work - Universal runtime PM work function.
775 776 777
 * @work: Work structure used for scheduling the execution of this function.
 *
 * Use @work to get the device object the work is to be done for, determine what
778
 * is to be done and execute the appropriate runtime PM function.
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
 */
static void pm_runtime_work(struct work_struct *work)
{
	struct device *dev = container_of(work, struct device, power.work);
	enum rpm_request req;

	spin_lock_irq(&dev->power.lock);

	if (!dev->power.request_pending)
		goto out;

	req = dev->power.request;
	dev->power.request = RPM_REQ_NONE;
	dev->power.request_pending = false;

	switch (req) {
	case RPM_REQ_NONE:
		break;
	case RPM_REQ_IDLE:
798
		rpm_idle(dev, RPM_NOWAIT);
799 800
		break;
	case RPM_REQ_SUSPEND:
801
		rpm_suspend(dev, RPM_NOWAIT);
802
		break;
803 804 805
	case RPM_REQ_AUTOSUSPEND:
		rpm_suspend(dev, RPM_NOWAIT | RPM_AUTO);
		break;
806
	case RPM_REQ_RESUME:
807
		rpm_resume(dev, RPM_NOWAIT);
808 809 810 811 812 813 814 815 816 817 818
		break;
	}

 out:
	spin_unlock_irq(&dev->power.lock);
}

/**
 * pm_suspend_timer_fn - Timer function for pm_schedule_suspend().
 * @data: Device pointer passed by pm_schedule_suspend().
 *
819
 * Check if the time is right and queue a suspend request.
820 821 822 823 824 825 826 827 828 829 830 831 832
 */
static void pm_suspend_timer_fn(unsigned long data)
{
	struct device *dev = (struct device *)data;
	unsigned long flags;
	unsigned long expires;

	spin_lock_irqsave(&dev->power.lock, flags);

	expires = dev->power.timer_expires;
	/* If 'expire' is after 'jiffies' we've been called too early. */
	if (expires > 0 && !time_after(expires, jiffies)) {
		dev->power.timer_expires = 0;
833 834
		rpm_suspend(dev, dev->power.timer_autosuspends ?
		    (RPM_ASYNC | RPM_AUTO) : RPM_ASYNC);
835 836 837 838 839 840 841 842 843 844 845 846 847
	}

	spin_unlock_irqrestore(&dev->power.lock, flags);
}

/**
 * pm_schedule_suspend - Set up a timer to submit a suspend request in future.
 * @dev: Device to suspend.
 * @delay: Time to wait before submitting a suspend request, in milliseconds.
 */
int pm_schedule_suspend(struct device *dev, unsigned int delay)
{
	unsigned long flags;
848
	int retval;
849 850 851 852

	spin_lock_irqsave(&dev->power.lock, flags);

	if (!delay) {
853
		retval = rpm_suspend(dev, RPM_ASYNC);
854 855 856
		goto out;
	}

857
	retval = rpm_check_suspend_allowed(dev);
858 859 860
	if (retval)
		goto out;

861 862 863
	/* Other scheduled or pending requests need to be canceled. */
	pm_runtime_cancel_pending(dev);

864
	dev->power.timer_expires = jiffies + msecs_to_jiffies(delay);
865
	dev->power.timer_expires += !dev->power.timer_expires;
866
	dev->power.timer_autosuspends = 0;
867 868 869 870 871 872 873 874 875 876
	mod_timer(&dev->power.suspend_timer, dev->power.timer_expires);

 out:
	spin_unlock_irqrestore(&dev->power.lock, flags);

	return retval;
}
EXPORT_SYMBOL_GPL(pm_schedule_suspend);

/**
877
 * __pm_runtime_idle - Entry point for runtime idle operations.
878 879 880 881 882 883 884
 * @dev: Device to send idle notification for.
 * @rpmflags: Flag bits.
 *
 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
 * return immediately if it is larger than zero.  Then carry out an idle
 * notification, either synchronous or asynchronous.
 *
885 886
 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
 * or if pm_runtime_irq_safe() has been called.
887
 */
888
int __pm_runtime_idle(struct device *dev, int rpmflags)
889 890 891 892
{
	unsigned long flags;
	int retval;

893 894
	might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);

895 896 897 898 899
	if (rpmflags & RPM_GET_PUT) {
		if (!atomic_dec_and_test(&dev->power.usage_count))
			return 0;
	}

900
	spin_lock_irqsave(&dev->power.lock, flags);
901
	retval = rpm_idle(dev, rpmflags);
902 903 904 905
	spin_unlock_irqrestore(&dev->power.lock, flags);

	return retval;
}
906
EXPORT_SYMBOL_GPL(__pm_runtime_idle);
907 908

/**
909
 * __pm_runtime_suspend - Entry point for runtime put/suspend operations.
910
 * @dev: Device to suspend.
911
 * @rpmflags: Flag bits.
912
 *
913 914 915
 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
 * return immediately if it is larger than zero.  Then carry out a suspend,
 * either synchronous or asynchronous.
916
 *
917 918
 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
 * or if pm_runtime_irq_safe() has been called.
919
 */
920
int __pm_runtime_suspend(struct device *dev, int rpmflags)
921
{
922
	unsigned long flags;
923
	int retval;
924

925 926
	might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);

927 928 929 930 931
	if (rpmflags & RPM_GET_PUT) {
		if (!atomic_dec_and_test(&dev->power.usage_count))
			return 0;
	}

932 933 934
	spin_lock_irqsave(&dev->power.lock, flags);
	retval = rpm_suspend(dev, rpmflags);
	spin_unlock_irqrestore(&dev->power.lock, flags);
935 936 937

	return retval;
}
938
EXPORT_SYMBOL_GPL(__pm_runtime_suspend);
939 940

/**
941
 * __pm_runtime_resume - Entry point for runtime resume operations.
942
 * @dev: Device to resume.
943
 * @rpmflags: Flag bits.
944
 *
945 946 947
 * If the RPM_GET_PUT flag is set, increment the device's usage count.  Then
 * carry out a resume, either synchronous or asynchronous.
 *
948 949
 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
 * or if pm_runtime_irq_safe() has been called.
950
 */
951
int __pm_runtime_resume(struct device *dev, int rpmflags)
952
{
953 954
	unsigned long flags;
	int retval;
955

956 957
	might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);

958 959 960 961 962 963
	if (rpmflags & RPM_GET_PUT)
		atomic_inc(&dev->power.usage_count);

	spin_lock_irqsave(&dev->power.lock, flags);
	retval = rpm_resume(dev, rpmflags);
	spin_unlock_irqrestore(&dev->power.lock, flags);
964 965 966

	return retval;
}
967
EXPORT_SYMBOL_GPL(__pm_runtime_resume);
968

969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
/**
 * pm_runtime_get_if_in_use - Conditionally bump up the device's usage counter.
 * @dev: Device to handle.
 *
 * Return -EINVAL if runtime PM is disabled for the device.
 *
 * If that's not the case and if the device's runtime PM status is RPM_ACTIVE
 * and the runtime PM usage counter is nonzero, increment the counter and
 * return 1.  Otherwise return 0 without changing the counter.
 */
int pm_runtime_get_if_in_use(struct device *dev)
{
	unsigned long flags;
	int retval;

	spin_lock_irqsave(&dev->power.lock, flags);
	retval = dev->power.disable_depth > 0 ? -EINVAL :
		dev->power.runtime_status == RPM_ACTIVE
			&& atomic_inc_not_zero(&dev->power.usage_count);
	spin_unlock_irqrestore(&dev->power.lock, flags);
	return retval;
}
EXPORT_SYMBOL_GPL(pm_runtime_get_if_in_use);

993
/**
994
 * __pm_runtime_set_status - Set runtime PM status of a device.
995
 * @dev: Device to handle.
996
 * @status: New runtime PM status of the device.
997
 *
998
 * If runtime PM of the device is disabled or its power.runtime_error field is
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
 * different from zero, the status may be changed either to RPM_ACTIVE, or to
 * RPM_SUSPENDED, as long as that reflects the actual state of the device.
 * However, if the device has a parent and the parent is not active, and the
 * parent's power.ignore_children flag is unset, the device's status cannot be
 * set to RPM_ACTIVE, so -EBUSY is returned in that case.
 *
 * If successful, __pm_runtime_set_status() clears the power.runtime_error field
 * and the device parent's counter of unsuspended children is modified to
 * reflect the new status.  If the new status is RPM_SUSPENDED, an idle
 * notification request for the parent is submitted.
 */
int __pm_runtime_set_status(struct device *dev, unsigned int status)
{
	struct device *parent = dev->parent;
	unsigned long flags;
	bool notify_parent = false;
	int error = 0;

	if (status != RPM_ACTIVE && status != RPM_SUSPENDED)
		return -EINVAL;

	spin_lock_irqsave(&dev->power.lock, flags);

	if (!dev->power.runtime_error && !dev->power.disable_depth) {
		error = -EAGAIN;
		goto out;
	}

	if (dev->power.runtime_status == status)
		goto out_set;

	if (status == RPM_SUSPENDED) {
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
		/*
		 * It is invalid to suspend a device with an active child,
		 * unless it has been set to ignore its children.
		 */
		if (!dev->power.ignore_children &&
			atomic_read(&dev->power.child_count)) {
			dev_err(dev, "runtime PM trying to suspend device but active child\n");
			error = -EBUSY;
			goto out;
		}

1042 1043 1044 1045 1046 1047 1048 1049
		if (parent) {
			atomic_add_unless(&parent->power.child_count, -1, 0);
			notify_parent = !parent->power.ignore_children;
		}
		goto out_set;
	}

	if (parent) {
1050
		spin_lock_nested(&parent->power.lock, SINGLE_DEPTH_NESTING);
1051 1052 1053

		/*
		 * It is invalid to put an active child under a parent that is
1054
		 * not active, has runtime PM enabled and the
1055 1056 1057 1058
		 * 'power.ignore_children' flag unset.
		 */
		if (!parent->power.disable_depth
		    && !parent->power.ignore_children
1059 1060 1061 1062
		    && parent->power.runtime_status != RPM_ACTIVE) {
			dev_err(dev, "runtime PM trying to activate child device %s but parent (%s) is not active\n",
				dev_name(dev),
				dev_name(parent));
1063
			error = -EBUSY;
1064
		} else if (dev->power.runtime_status == RPM_SUSPENDED) {
1065
			atomic_inc(&parent->power.child_count);
1066
		}
1067

1068
		spin_unlock(&parent->power.lock);
1069 1070 1071 1072 1073 1074

		if (error)
			goto out;
	}

 out_set:
1075
	__update_runtime_status(dev, status);
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
	dev->power.runtime_error = 0;
 out:
	spin_unlock_irqrestore(&dev->power.lock, flags);

	if (notify_parent)
		pm_request_idle(parent);

	return error;
}
EXPORT_SYMBOL_GPL(__pm_runtime_set_status);

/**
 * __pm_runtime_barrier - Cancel pending requests and wait for completions.
 * @dev: Device to handle.
 *
 * Flush all pending requests for the device from pm_wq and wait for all
1092
 * runtime PM operations involving the device in progress to complete.
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
 *
 * Should be called under dev->power.lock with interrupts disabled.
 */
static void __pm_runtime_barrier(struct device *dev)
{
	pm_runtime_deactivate_timer(dev);

	if (dev->power.request_pending) {
		dev->power.request = RPM_REQ_NONE;
		spin_unlock_irq(&dev->power.lock);

		cancel_work_sync(&dev->power.work);

		spin_lock_irq(&dev->power.lock);
		dev->power.request_pending = false;
	}

	if (dev->power.runtime_status == RPM_SUSPENDING
	    || dev->power.runtime_status == RPM_RESUMING
	    || dev->power.idle_notification) {
		DEFINE_WAIT(wait);

		/* Suspend, wake-up or idle notification in progress. */
		for (;;) {
			prepare_to_wait(&dev->power.wait_queue, &wait,
					TASK_UNINTERRUPTIBLE);
			if (dev->power.runtime_status != RPM_SUSPENDING
			    && dev->power.runtime_status != RPM_RESUMING
			    && !dev->power.idle_notification)
				break;
			spin_unlock_irq(&dev->power.lock);

			schedule();

			spin_lock_irq(&dev->power.lock);
		}
		finish_wait(&dev->power.wait_queue, &wait);
	}
}

/**
 * pm_runtime_barrier - Flush pending requests and wait for completions.
 * @dev: Device to handle.
 *
 * Prevent the device from being suspended by incrementing its usage counter and
 * if there's a pending resume request for the device, wake the device up.
 * Next, make sure that all pending requests for the device have been flushed
1140
 * from pm_wq and wait for all runtime PM operations involving the device in
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
 * progress to complete.
 *
 * Return value:
 * 1, if there was a resume request pending and the device had to be woken up,
 * 0, otherwise
 */
int pm_runtime_barrier(struct device *dev)
{
	int retval = 0;

	pm_runtime_get_noresume(dev);
	spin_lock_irq(&dev->power.lock);

	if (dev->power.request_pending
	    && dev->power.request == RPM_REQ_RESUME) {
1156
		rpm_resume(dev, 0);
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
		retval = 1;
	}

	__pm_runtime_barrier(dev);

	spin_unlock_irq(&dev->power.lock);
	pm_runtime_put_noidle(dev);

	return retval;
}
EXPORT_SYMBOL_GPL(pm_runtime_barrier);

/**
1170
 * __pm_runtime_disable - Disable runtime PM of a device.
1171 1172 1173
 * @dev: Device to handle.
 * @check_resume: If set, check if there's a resume request for the device.
 *
1174
 * Increment power.disable_depth for the device and if it was zero previously,
1175
 * cancel all pending runtime PM requests for the device and wait for all
1176
 * operations in progress to complete.  The device can be either active or
1177
 * suspended after its runtime PM has been disabled.
1178 1179 1180
 *
 * If @check_resume is set and there's a resume request pending when
 * __pm_runtime_disable() is called and power.disable_depth is zero, the
1181
 * function will wake up the device before disabling its runtime PM.
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
 */
void __pm_runtime_disable(struct device *dev, bool check_resume)
{
	spin_lock_irq(&dev->power.lock);

	if (dev->power.disable_depth > 0) {
		dev->power.disable_depth++;
		goto out;
	}

	/*
	 * Wake up the device if there's a resume request pending, because that
1194
	 * means there probably is some I/O to process and disabling runtime PM
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
	 * shouldn't prevent the device from processing the I/O.
	 */
	if (check_resume && dev->power.request_pending
	    && dev->power.request == RPM_REQ_RESUME) {
		/*
		 * Prevent suspends and idle notifications from being carried
		 * out after we have woken up the device.
		 */
		pm_runtime_get_noresume(dev);

1205
		rpm_resume(dev, 0);
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218

		pm_runtime_put_noidle(dev);
	}

	if (!dev->power.disable_depth++)
		__pm_runtime_barrier(dev);

 out:
	spin_unlock_irq(&dev->power.lock);
}
EXPORT_SYMBOL_GPL(__pm_runtime_disable);

/**
1219
 * pm_runtime_enable - Enable runtime PM of a device.
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
 * @dev: Device to handle.
 */
void pm_runtime_enable(struct device *dev)
{
	unsigned long flags;

	spin_lock_irqsave(&dev->power.lock, flags);

	if (dev->power.disable_depth > 0)
		dev->power.disable_depth--;
	else
		dev_warn(dev, "Unbalanced %s!\n", __func__);

	spin_unlock_irqrestore(&dev->power.lock, flags);
}
EXPORT_SYMBOL_GPL(pm_runtime_enable);

1237
/**
1238
 * pm_runtime_forbid - Block runtime PM of a device.
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
 * @dev: Device to handle.
 *
 * Increase the device's usage count and clear its power.runtime_auto flag,
 * so that it cannot be suspended at run time until pm_runtime_allow() is called
 * for it.
 */
void pm_runtime_forbid(struct device *dev)
{
	spin_lock_irq(&dev->power.lock);
	if (!dev->power.runtime_auto)
		goto out;

	dev->power.runtime_auto = false;
	atomic_inc(&dev->power.usage_count);
1253
	rpm_resume(dev, 0);
1254 1255 1256 1257 1258 1259 1260

 out:
	spin_unlock_irq(&dev->power.lock);
}
EXPORT_SYMBOL_GPL(pm_runtime_forbid);

/**
1261
 * pm_runtime_allow - Unblock runtime PM of a device.
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
 * @dev: Device to handle.
 *
 * Decrease the device's usage count and set its power.runtime_auto flag.
 */
void pm_runtime_allow(struct device *dev)
{
	spin_lock_irq(&dev->power.lock);
	if (dev->power.runtime_auto)
		goto out;

	dev->power.runtime_auto = true;
	if (atomic_dec_and_test(&dev->power.usage_count))
1274
		rpm_idle(dev, RPM_AUTO | RPM_ASYNC);
1275 1276 1277 1278 1279 1280

 out:
	spin_unlock_irq(&dev->power.lock);
}
EXPORT_SYMBOL_GPL(pm_runtime_allow);

A
Alan Stern 已提交
1281
/**
1282
 * pm_runtime_no_callbacks - Ignore runtime PM callbacks for a device.
A
Alan Stern 已提交
1283 1284 1285
 * @dev: Device to handle.
 *
 * Set the power.no_callbacks flag, which tells the PM core that this
1286 1287
 * device is power-managed through its parent and has no runtime PM
 * callbacks of its own.  The runtime sysfs attributes will be removed.
A
Alan Stern 已提交
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
 */
void pm_runtime_no_callbacks(struct device *dev)
{
	spin_lock_irq(&dev->power.lock);
	dev->power.no_callbacks = 1;
	spin_unlock_irq(&dev->power.lock);
	if (device_is_registered(dev))
		rpm_sysfs_remove(dev);
}
EXPORT_SYMBOL_GPL(pm_runtime_no_callbacks);

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
/**
 * pm_runtime_irq_safe - Leave interrupts disabled during callbacks.
 * @dev: Device to handle
 *
 * Set the power.irq_safe flag, which tells the PM core that the
 * ->runtime_suspend() and ->runtime_resume() callbacks for this device should
 * always be invoked with the spinlock held and interrupts disabled.  It also
 * causes the parent's usage counter to be permanently incremented, preventing
 * the parent from runtime suspending -- otherwise an irq-safe child might have
 * to wait for a non-irq-safe parent.
 */
void pm_runtime_irq_safe(struct device *dev)
{
	if (dev->parent)
		pm_runtime_get_sync(dev->parent);
	spin_lock_irq(&dev->power.lock);
	dev->power.irq_safe = 1;
	spin_unlock_irq(&dev->power.lock);
}
EXPORT_SYMBOL_GPL(pm_runtime_irq_safe);

1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
/**
 * update_autosuspend - Handle a change to a device's autosuspend settings.
 * @dev: Device to handle.
 * @old_delay: The former autosuspend_delay value.
 * @old_use: The former use_autosuspend value.
 *
 * Prevent runtime suspend if the new delay is negative and use_autosuspend is
 * set; otherwise allow it.  Send an idle notification if suspends are allowed.
 *
 * This function must be called under dev->power.lock with interrupts disabled.
 */
static void update_autosuspend(struct device *dev, int old_delay, int old_use)
{
	int delay = dev->power.autosuspend_delay;

	/* Should runtime suspend be prevented now? */
	if (dev->power.use_autosuspend && delay < 0) {

		/* If it used to be allowed then prevent it. */
		if (!old_use || old_delay >= 0) {
			atomic_inc(&dev->power.usage_count);
			rpm_resume(dev, 0);
		}
	}

	/* Runtime suspend should be allowed now. */
	else {

		/* If it used to be prevented then allow it. */
		if (old_use && old_delay < 0)
			atomic_dec(&dev->power.usage_count);

		/* Maybe we can autosuspend now. */
		rpm_idle(dev, RPM_AUTO);
	}
}

/**
 * pm_runtime_set_autosuspend_delay - Set a device's autosuspend_delay value.
 * @dev: Device to handle.
 * @delay: Value of the new delay in milliseconds.
 *
 * Set the device's power.autosuspend_delay value.  If it changes to negative
1363 1364
 * and the power.use_autosuspend flag is set, prevent runtime suspends.  If it
 * changes the other way, allow runtime suspends.
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
 */
void pm_runtime_set_autosuspend_delay(struct device *dev, int delay)
{
	int old_delay, old_use;

	spin_lock_irq(&dev->power.lock);
	old_delay = dev->power.autosuspend_delay;
	old_use = dev->power.use_autosuspend;
	dev->power.autosuspend_delay = delay;
	update_autosuspend(dev, old_delay, old_use);
	spin_unlock_irq(&dev->power.lock);
}
EXPORT_SYMBOL_GPL(pm_runtime_set_autosuspend_delay);

/**
 * __pm_runtime_use_autosuspend - Set a device's use_autosuspend flag.
 * @dev: Device to handle.
 * @use: New value for use_autosuspend.
 *
1384
 * Set the device's power.use_autosuspend flag, and allow or prevent runtime
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
 * suspends as needed.
 */
void __pm_runtime_use_autosuspend(struct device *dev, bool use)
{
	int old_delay, old_use;

	spin_lock_irq(&dev->power.lock);
	old_delay = dev->power.autosuspend_delay;
	old_use = dev->power.use_autosuspend;
	dev->power.use_autosuspend = use;
	update_autosuspend(dev, old_delay, old_use);
	spin_unlock_irq(&dev->power.lock);
}
EXPORT_SYMBOL_GPL(__pm_runtime_use_autosuspend);

1400
/**
1401
 * pm_runtime_init - Initialize runtime PM fields in given device object.
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
 * @dev: Device object to initialize.
 */
void pm_runtime_init(struct device *dev)
{
	dev->power.runtime_status = RPM_SUSPENDED;
	dev->power.idle_notification = false;

	dev->power.disable_depth = 1;
	atomic_set(&dev->power.usage_count, 0);

	dev->power.runtime_error = 0;

	atomic_set(&dev->power.child_count, 0);
	pm_suspend_ignore_children(dev, false);
1416
	dev->power.runtime_auto = true;
1417 1418 1419 1420

	dev->power.request_pending = false;
	dev->power.request = RPM_REQ_NONE;
	dev->power.deferred_resume = false;
1421
	dev->power.accounting_timestamp = jiffies;
1422 1423 1424 1425 1426 1427 1428 1429 1430
	INIT_WORK(&dev->power.work, pm_runtime_work);

	dev->power.timer_expires = 0;
	setup_timer(&dev->power.suspend_timer, pm_suspend_timer_fn,
			(unsigned long)dev);

	init_waitqueue_head(&dev->power.wait_queue);
}

1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
/**
 * pm_runtime_reinit - Re-initialize runtime PM fields in given device object.
 * @dev: Device object to re-initialize.
 */
void pm_runtime_reinit(struct device *dev)
{
	if (!pm_runtime_enabled(dev)) {
		if (dev->power.runtime_status == RPM_ACTIVE)
			pm_runtime_set_suspended(dev);
		if (dev->power.irq_safe) {
			spin_lock_irq(&dev->power.lock);
			dev->power.irq_safe = 0;
			spin_unlock_irq(&dev->power.lock);
			if (dev->parent)
				pm_runtime_put(dev->parent);
		}
	}
}

1450 1451 1452 1453 1454 1455 1456
/**
 * pm_runtime_remove - Prepare for removing a device from device hierarchy.
 * @dev: Device object being removed from device hierarchy.
 */
void pm_runtime_remove(struct device *dev)
{
	__pm_runtime_disable(dev, false);
1457
	pm_runtime_reinit(dev);
1458
}
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480

/**
 * pm_runtime_force_suspend - Force a device into suspend state if needed.
 * @dev: Device to suspend.
 *
 * Disable runtime PM so we safely can check the device's runtime PM status and
 * if it is active, invoke it's .runtime_suspend callback to bring it into
 * suspend state. Keep runtime PM disabled to preserve the state unless we
 * encounter errors.
 *
 * Typically this function may be invoked from a system suspend callback to make
 * sure the device is put into low power state.
 */
int pm_runtime_force_suspend(struct device *dev)
{
	int (*callback)(struct device *);
	int ret = 0;

	pm_runtime_disable(dev);
	if (pm_runtime_status_suspended(dev))
		return 0;

1481
	callback = RPM_GET_CALLBACK(dev, runtime_suspend);
1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516

	if (!callback) {
		ret = -ENOSYS;
		goto err;
	}

	ret = callback(dev);
	if (ret)
		goto err;

	pm_runtime_set_suspended(dev);
	return 0;
err:
	pm_runtime_enable(dev);
	return ret;
}
EXPORT_SYMBOL_GPL(pm_runtime_force_suspend);

/**
 * pm_runtime_force_resume - Force a device into resume state.
 * @dev: Device to resume.
 *
 * Prior invoking this function we expect the user to have brought the device
 * into low power state by a call to pm_runtime_force_suspend(). Here we reverse
 * those actions and brings the device into full power. We update the runtime PM
 * status and re-enables runtime PM.
 *
 * Typically this function may be invoked from a system resume callback to make
 * sure the device is put into full power state.
 */
int pm_runtime_force_resume(struct device *dev)
{
	int (*callback)(struct device *);
	int ret = 0;

1517
	callback = RPM_GET_CALLBACK(dev, runtime_resume);
1518 1519 1520 1521 1522 1523

	if (!callback) {
		ret = -ENOSYS;
		goto out;
	}

1524 1525 1526
	if (!pm_runtime_status_suspended(dev))
		goto out;

1527
	ret = pm_runtime_set_active(dev);
1528 1529 1530
	if (ret)
		goto out;

1531 1532 1533 1534 1535 1536
	ret = callback(dev);
	if (ret) {
		pm_runtime_set_suspended(dev);
		goto out;
	}

1537 1538 1539 1540 1541 1542
	pm_runtime_mark_last_busy(dev);
out:
	pm_runtime_enable(dev);
	return ret;
}
EXPORT_SYMBOL_GPL(pm_runtime_force_resume);