Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*
  2 * kernel/power/main.c - PM subsystem core functionality.
  3 *
  4 * Copyright (c) 2003 Patrick Mochel
  5 * Copyright (c) 2003 Open Source Development Lab
  6 *
  7 * This file is released under the GPLv2
  8 *
  9 */
 10
 
 11#include <linux/export.h>
 12#include <linux/kobject.h>
 13#include <linux/string.h>
 14#include <linux/pm-trace.h>
 15#include <linux/workqueue.h>
 16#include <linux/debugfs.h>
 17#include <linux/seq_file.h>
 
 
 
 18
 19#include "power.h"
 20
 21DEFINE_MUTEX(pm_mutex);
 22
 23#ifdef CONFIG_PM_SLEEP
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 24
 25void lock_system_sleep(void)
 26{
 27	current->flags |= PF_FREEZER_SKIP;
 28	mutex_lock(&pm_mutex);
 
 
 29}
 30EXPORT_SYMBOL_GPL(lock_system_sleep);
 31
 32void unlock_system_sleep(void)
 33{
 34	/*
 35	 * Don't use freezer_count() because we don't want the call to
 36	 * try_to_freeze() here.
 37	 *
 38	 * Reason:
 39	 * Fundamentally, we just don't need it, because freezing condition
 40	 * doesn't come into effect until we release the pm_mutex lock,
 41	 * since the freezer always works with pm_mutex held.
 42	 *
 43	 * More importantly, in the case of hibernation,
 44	 * unlock_system_sleep() gets called in snapshot_read() and
 45	 * snapshot_write() when the freezing condition is still in effect.
 46	 * Which means, if we use try_to_freeze() here, it would make them
 47	 * enter the refrigerator, thus causing hibernation to lockup.
 48	 */
 49	current->flags &= ~PF_FREEZER_SKIP;
 50	mutex_unlock(&pm_mutex);
 51}
 52EXPORT_SYMBOL_GPL(unlock_system_sleep);
 53
 
 
 
 
 
 
 
 
 
 
 
 
 
 54/* Routines for PM-transition notifications */
 55
 56static BLOCKING_NOTIFIER_HEAD(pm_chain_head);
 57
 58int register_pm_notifier(struct notifier_block *nb)
 59{
 60	return blocking_notifier_chain_register(&pm_chain_head, nb);
 61}
 62EXPORT_SYMBOL_GPL(register_pm_notifier);
 63
 64int unregister_pm_notifier(struct notifier_block *nb)
 65{
 66	return blocking_notifier_chain_unregister(&pm_chain_head, nb);
 67}
 68EXPORT_SYMBOL_GPL(unregister_pm_notifier);
 69
 70int __pm_notifier_call_chain(unsigned long val, int nr_to_call, int *nr_calls)
 
 
 
 
 
 
 
 
 
 
 
 
 
 71{
 72	int ret;
 73
 74	ret = __blocking_notifier_call_chain(&pm_chain_head, val, NULL,
 75						nr_to_call, nr_calls);
 76
 77	return notifier_to_errno(ret);
 78}
 
 79int pm_notifier_call_chain(unsigned long val)
 80{
 81	return __pm_notifier_call_chain(val, -1, NULL);
 82}
 83
 84/* If set, devices may be suspended and resumed asynchronously. */
 85int pm_async_enabled = 1;
 86
 87static ssize_t pm_async_show(struct kobject *kobj, struct kobj_attribute *attr,
 88			     char *buf)
 89{
 90	return sprintf(buf, "%d\n", pm_async_enabled);
 91}
 92
 93static ssize_t pm_async_store(struct kobject *kobj, struct kobj_attribute *attr,
 94			      const char *buf, size_t n)
 95{
 96	unsigned long val;
 97
 98	if (kstrtoul(buf, 10, &val))
 99		return -EINVAL;
100
101	if (val > 1)
102		return -EINVAL;
103
104	pm_async_enabled = val;
105	return n;
106}
107
108power_attr(pm_async);
109
110#ifdef CONFIG_SUSPEND
111static ssize_t mem_sleep_show(struct kobject *kobj, struct kobj_attribute *attr,
112			      char *buf)
113{
114	char *s = buf;
115	suspend_state_t i;
116
117	for (i = PM_SUSPEND_MIN; i < PM_SUSPEND_MAX; i++)
 
 
118		if (mem_sleep_states[i]) {
119			const char *label = mem_sleep_states[i];
120
121			if (mem_sleep_current == i)
122				s += sprintf(s, "[%s] ", label);
123			else
124				s += sprintf(s, "%s ", label);
125		}
 
126
127	/* Convert the last space to a newline if needed. */
128	if (s != buf)
129		*(s-1) = '\n';
130
131	return (s - buf);
132}
133
134static suspend_state_t decode_suspend_state(const char *buf, size_t n)
135{
136	suspend_state_t state;
137	char *p;
138	int len;
139
140	p = memchr(buf, '\n', n);
141	len = p ? p - buf : n;
142
143	for (state = PM_SUSPEND_MIN; state < PM_SUSPEND_MAX; state++) {
144		const char *label = mem_sleep_states[state];
145
146		if (label && len == strlen(label) && !strncmp(buf, label, len))
147			return state;
148	}
149
150	return PM_SUSPEND_ON;
151}
152
153static ssize_t mem_sleep_store(struct kobject *kobj, struct kobj_attribute *attr,
154			       const char *buf, size_t n)
155{
156	suspend_state_t state;
157	int error;
158
159	error = pm_autosleep_lock();
160	if (error)
161		return error;
162
163	if (pm_autosleep_state() > PM_SUSPEND_ON) {
164		error = -EBUSY;
165		goto out;
166	}
167
168	state = decode_suspend_state(buf, n);
169	if (state < PM_SUSPEND_MAX && state > PM_SUSPEND_ON)
170		mem_sleep_current = state;
171	else
172		error = -EINVAL;
173
174 out:
175	pm_autosleep_unlock();
176	return error ? error : n;
177}
178
179power_attr(mem_sleep);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180#endif /* CONFIG_SUSPEND */
181
182#ifdef CONFIG_PM_SLEEP_DEBUG
183int pm_test_level = TEST_NONE;
184
185static const char * const pm_tests[__TEST_AFTER_LAST] = {
186	[TEST_NONE] = "none",
187	[TEST_CORE] = "core",
188	[TEST_CPUS] = "processors",
189	[TEST_PLATFORM] = "platform",
190	[TEST_DEVICES] = "devices",
191	[TEST_FREEZER] = "freezer",
192};
193
194static ssize_t pm_test_show(struct kobject *kobj, struct kobj_attribute *attr,
195				char *buf)
196{
197	char *s = buf;
198	int level;
199
200	for (level = TEST_FIRST; level <= TEST_MAX; level++)
201		if (pm_tests[level]) {
202			if (level == pm_test_level)
203				s += sprintf(s, "[%s] ", pm_tests[level]);
204			else
205				s += sprintf(s, "%s ", pm_tests[level]);
206		}
207
208	if (s != buf)
209		/* convert the last space to a newline */
210		*(s-1) = '\n';
211
212	return (s - buf);
213}
214
215static ssize_t pm_test_store(struct kobject *kobj, struct kobj_attribute *attr,
216				const char *buf, size_t n)
217{
 
218	const char * const *s;
 
219	int level;
220	char *p;
221	int len;
222	int error = -EINVAL;
223
224	p = memchr(buf, '\n', n);
225	len = p ? p - buf : n;
226
227	lock_system_sleep();
228
229	level = TEST_FIRST;
230	for (s = &pm_tests[level]; level <= TEST_MAX; s++, level++)
231		if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) {
232			pm_test_level = level;
233			error = 0;
234			break;
235		}
236
237	unlock_system_sleep();
238
239	return error ? error : n;
240}
241
242power_attr(pm_test);
243#endif /* CONFIG_PM_SLEEP_DEBUG */
244
245#ifdef CONFIG_DEBUG_FS
246static char *suspend_step_name(enum suspend_stat_step step)
247{
248	switch (step) {
249	case SUSPEND_FREEZE:
250		return "freeze";
251	case SUSPEND_PREPARE:
252		return "prepare";
253	case SUSPEND_SUSPEND:
254		return "suspend";
255	case SUSPEND_SUSPEND_NOIRQ:
256		return "suspend_noirq";
257	case SUSPEND_RESUME_NOIRQ:
258		return "resume_noirq";
259	case SUSPEND_RESUME:
260		return "resume";
261	default:
262		return "";
263	}
264}
265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266static int suspend_stats_show(struct seq_file *s, void *unused)
267{
268	int i, index, last_dev, last_errno, last_step;
269
270	last_dev = suspend_stats.last_failed_dev + REC_FAILED_NUM - 1;
271	last_dev %= REC_FAILED_NUM;
272	last_errno = suspend_stats.last_failed_errno + REC_FAILED_NUM - 1;
273	last_errno %= REC_FAILED_NUM;
274	last_step = suspend_stats.last_failed_step + REC_FAILED_NUM - 1;
275	last_step %= REC_FAILED_NUM;
276	seq_printf(s, "%s: %d\n%s: %d\n%s: %d\n%s: %d\n%s: %d\n"
277			"%s: %d\n%s: %d\n%s: %d\n%s: %d\n%s: %d\n",
278			"success", suspend_stats.success,
279			"fail", suspend_stats.fail,
280			"failed_freeze", suspend_stats.failed_freeze,
281			"failed_prepare", suspend_stats.failed_prepare,
282			"failed_suspend", suspend_stats.failed_suspend,
283			"failed_suspend_late",
284				suspend_stats.failed_suspend_late,
285			"failed_suspend_noirq",
286				suspend_stats.failed_suspend_noirq,
287			"failed_resume", suspend_stats.failed_resume,
288			"failed_resume_early",
289				suspend_stats.failed_resume_early,
290			"failed_resume_noirq",
291				suspend_stats.failed_resume_noirq);
292	seq_printf(s,	"failures:\n  last_failed_dev:\t%-s\n",
293			suspend_stats.failed_devs[last_dev]);
294	for (i = 1; i < REC_FAILED_NUM; i++) {
295		index = last_dev + REC_FAILED_NUM - i;
296		index %= REC_FAILED_NUM;
297		seq_printf(s, "\t\t\t%-s\n",
298			suspend_stats.failed_devs[index]);
299	}
300	seq_printf(s,	"  last_failed_errno:\t%-d\n",
301			suspend_stats.errno[last_errno]);
302	for (i = 1; i < REC_FAILED_NUM; i++) {
303		index = last_errno + REC_FAILED_NUM - i;
304		index %= REC_FAILED_NUM;
305		seq_printf(s, "\t\t\t%-d\n",
306			suspend_stats.errno[index]);
307	}
308	seq_printf(s,	"  last_failed_step:\t%-s\n",
309			suspend_step_name(
310				suspend_stats.failed_steps[last_step]));
311	for (i = 1; i < REC_FAILED_NUM; i++) {
312		index = last_step + REC_FAILED_NUM - i;
313		index %= REC_FAILED_NUM;
314		seq_printf(s, "\t\t\t%-s\n",
315			suspend_step_name(
316				suspend_stats.failed_steps[index]));
317	}
318
319	return 0;
320}
321
322static int suspend_stats_open(struct inode *inode, struct file *file)
323{
324	return single_open(file, suspend_stats_show, NULL);
325}
326
327static const struct file_operations suspend_stats_operations = {
328	.open           = suspend_stats_open,
329	.read           = seq_read,
330	.llseek         = seq_lseek,
331	.release        = single_release,
332};
333
334static int __init pm_debugfs_init(void)
335{
336	debugfs_create_file("suspend_stats", S_IFREG | S_IRUGO,
337			NULL, NULL, &suspend_stats_operations);
338	return 0;
339}
340
341late_initcall(pm_debugfs_init);
342#endif /* CONFIG_DEBUG_FS */
343
344#endif /* CONFIG_PM_SLEEP */
345
346#ifdef CONFIG_PM_SLEEP_DEBUG
347/*
348 * pm_print_times: print time taken by devices to suspend and resume.
349 *
350 * show() returns whether printing of suspend and resume times is enabled.
351 * store() accepts 0 or 1.  0 disables printing and 1 enables it.
352 */
353bool pm_print_times_enabled;
354
355static ssize_t pm_print_times_show(struct kobject *kobj,
356				   struct kobj_attribute *attr, char *buf)
357{
358	return sprintf(buf, "%d\n", pm_print_times_enabled);
359}
360
361static ssize_t pm_print_times_store(struct kobject *kobj,
362				    struct kobj_attribute *attr,
363				    const char *buf, size_t n)
364{
365	unsigned long val;
366
367	if (kstrtoul(buf, 10, &val))
368		return -EINVAL;
369
370	if (val > 1)
371		return -EINVAL;
372
373	pm_print_times_enabled = !!val;
374	return n;
375}
376
377power_attr(pm_print_times);
378
379static inline void pm_print_times_init(void)
380{
381	pm_print_times_enabled = !!initcall_debug;
382}
383
384static ssize_t pm_wakeup_irq_show(struct kobject *kobj,
385					struct kobj_attribute *attr,
386					char *buf)
387{
388	return pm_wakeup_irq ? sprintf(buf, "%u\n", pm_wakeup_irq) : -ENODATA;
 
 
 
389}
390
391power_attr_ro(pm_wakeup_irq);
392
393bool pm_debug_messages_on __read_mostly;
394
 
 
 
 
 
 
395static ssize_t pm_debug_messages_show(struct kobject *kobj,
396				      struct kobj_attribute *attr, char *buf)
397{
398	return sprintf(buf, "%d\n", pm_debug_messages_on);
399}
400
401static ssize_t pm_debug_messages_store(struct kobject *kobj,
402				       struct kobj_attribute *attr,
403				       const char *buf, size_t n)
404{
405	unsigned long val;
406
407	if (kstrtoul(buf, 10, &val))
408		return -EINVAL;
409
410	if (val > 1)
411		return -EINVAL;
412
413	pm_debug_messages_on = !!val;
414	return n;
415}
416
417power_attr(pm_debug_messages);
418
419/**
420 * __pm_pr_dbg - Print a suspend debug message to the kernel log.
421 * @defer: Whether or not to use printk_deferred() to print the message.
422 * @fmt: Message format.
423 *
424 * The message will be emitted if enabled through the pm_debug_messages
425 * sysfs attribute.
426 */
427void __pm_pr_dbg(bool defer, const char *fmt, ...)
428{
429	struct va_format vaf;
430	va_list args;
431
432	if (!pm_debug_messages_on)
433		return;
434
435	va_start(args, fmt);
436
437	vaf.fmt = fmt;
438	vaf.va = &args;
439
440	if (defer)
441		printk_deferred(KERN_DEBUG "PM: %pV", &vaf);
442	else
443		printk(KERN_DEBUG "PM: %pV", &vaf);
444
445	va_end(args);
446}
 
447
448#else /* !CONFIG_PM_SLEEP_DEBUG */
449static inline void pm_print_times_init(void) {}
450#endif /* CONFIG_PM_SLEEP_DEBUG */
451
452struct kobject *power_kobj;
453
454/**
455 * state - control system sleep states.
456 *
457 * show() returns available sleep state labels, which may be "mem", "standby",
458 * "freeze" and "disk" (hibernation).  See Documentation/power/states.txt for a
459 * description of what they mean.
 
460 *
461 * store() accepts one of those strings, translates it into the proper
462 * enumerated value, and initiates a suspend transition.
463 */
464static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr,
465			  char *buf)
466{
467	char *s = buf;
468#ifdef CONFIG_SUSPEND
469	suspend_state_t i;
470
471	for (i = PM_SUSPEND_MIN; i < PM_SUSPEND_MAX; i++)
472		if (pm_states[i])
473			s += sprintf(s,"%s ", pm_states[i]);
474
475#endif
476	if (hibernation_available())
477		s += sprintf(s, "disk ");
478	if (s != buf)
479		/* convert the last space to a newline */
480		*(s-1) = '\n';
481	return (s - buf);
482}
483
484static suspend_state_t decode_state(const char *buf, size_t n)
485{
486#ifdef CONFIG_SUSPEND
487	suspend_state_t state;
488#endif
489	char *p;
490	int len;
491
492	p = memchr(buf, '\n', n);
493	len = p ? p - buf : n;
494
495	/* Check hibernation first. */
496	if (len == 4 && !strncmp(buf, "disk", len))
497		return PM_SUSPEND_MAX;
498
499#ifdef CONFIG_SUSPEND
500	for (state = PM_SUSPEND_MIN; state < PM_SUSPEND_MAX; state++) {
501		const char *label = pm_states[state];
502
503		if (label && len == strlen(label) && !strncmp(buf, label, len))
504			return state;
505	}
506#endif
507
508	return PM_SUSPEND_ON;
509}
510
511static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr,
512			   const char *buf, size_t n)
513{
514	suspend_state_t state;
515	int error;
516
517	error = pm_autosleep_lock();
518	if (error)
519		return error;
520
521	if (pm_autosleep_state() > PM_SUSPEND_ON) {
522		error = -EBUSY;
523		goto out;
524	}
525
526	state = decode_state(buf, n);
527	if (state < PM_SUSPEND_MAX) {
528		if (state == PM_SUSPEND_MEM)
529			state = mem_sleep_current;
530
531		error = pm_suspend(state);
532	} else if (state == PM_SUSPEND_MAX) {
533		error = hibernate();
534	} else {
535		error = -EINVAL;
536	}
537
538 out:
539	pm_autosleep_unlock();
540	return error ? error : n;
541}
542
543power_attr(state);
544
545#ifdef CONFIG_PM_SLEEP
546/*
547 * The 'wakeup_count' attribute, along with the functions defined in
548 * drivers/base/power/wakeup.c, provides a means by which wakeup events can be
549 * handled in a non-racy way.
550 *
551 * If a wakeup event occurs when the system is in a sleep state, it simply is
552 * woken up.  In turn, if an event that would wake the system up from a sleep
553 * state occurs when it is undergoing a transition to that sleep state, the
554 * transition should be aborted.  Moreover, if such an event occurs when the
555 * system is in the working state, an attempt to start a transition to the
556 * given sleep state should fail during certain period after the detection of
557 * the event.  Using the 'state' attribute alone is not sufficient to satisfy
558 * these requirements, because a wakeup event may occur exactly when 'state'
559 * is being written to and may be delivered to user space right before it is
560 * frozen, so the event will remain only partially processed until the system is
561 * woken up by another event.  In particular, it won't cause the transition to
562 * a sleep state to be aborted.
563 *
564 * This difficulty may be overcome if user space uses 'wakeup_count' before
565 * writing to 'state'.  It first should read from 'wakeup_count' and store
566 * the read value.  Then, after carrying out its own preparations for the system
567 * transition to a sleep state, it should write the stored value to
568 * 'wakeup_count'.  If that fails, at least one wakeup event has occurred since
569 * 'wakeup_count' was read and 'state' should not be written to.  Otherwise, it
570 * is allowed to write to 'state', but the transition will be aborted if there
571 * are any wakeup events detected after 'wakeup_count' was written to.
572 */
573
574static ssize_t wakeup_count_show(struct kobject *kobj,
575				struct kobj_attribute *attr,
576				char *buf)
577{
578	unsigned int val;
579
580	return pm_get_wakeup_count(&val, true) ?
581		sprintf(buf, "%u\n", val) : -EINTR;
582}
583
584static ssize_t wakeup_count_store(struct kobject *kobj,
585				struct kobj_attribute *attr,
586				const char *buf, size_t n)
587{
588	unsigned int val;
589	int error;
590
591	error = pm_autosleep_lock();
592	if (error)
593		return error;
594
595	if (pm_autosleep_state() > PM_SUSPEND_ON) {
596		error = -EBUSY;
597		goto out;
598	}
599
600	error = -EINVAL;
601	if (sscanf(buf, "%u", &val) == 1) {
602		if (pm_save_wakeup_count(val))
603			error = n;
604		else
605			pm_print_active_wakeup_sources();
606	}
607
608 out:
609	pm_autosleep_unlock();
610	return error;
611}
612
613power_attr(wakeup_count);
614
615#ifdef CONFIG_PM_AUTOSLEEP
616static ssize_t autosleep_show(struct kobject *kobj,
617			      struct kobj_attribute *attr,
618			      char *buf)
619{
620	suspend_state_t state = pm_autosleep_state();
621
622	if (state == PM_SUSPEND_ON)
623		return sprintf(buf, "off\n");
624
625#ifdef CONFIG_SUSPEND
626	if (state < PM_SUSPEND_MAX)
627		return sprintf(buf, "%s\n", pm_states[state] ?
628					pm_states[state] : "error");
629#endif
630#ifdef CONFIG_HIBERNATION
631	return sprintf(buf, "disk\n");
632#else
633	return sprintf(buf, "error");
634#endif
635}
636
637static ssize_t autosleep_store(struct kobject *kobj,
638			       struct kobj_attribute *attr,
639			       const char *buf, size_t n)
640{
641	suspend_state_t state = decode_state(buf, n);
642	int error;
643
644	if (state == PM_SUSPEND_ON
645	    && strcmp(buf, "off") && strcmp(buf, "off\n"))
646		return -EINVAL;
647
648	if (state == PM_SUSPEND_MEM)
649		state = mem_sleep_current;
650
651	error = pm_autosleep_set_state(state);
652	return error ? error : n;
653}
654
655power_attr(autosleep);
656#endif /* CONFIG_PM_AUTOSLEEP */
657
658#ifdef CONFIG_PM_WAKELOCKS
659static ssize_t wake_lock_show(struct kobject *kobj,
660			      struct kobj_attribute *attr,
661			      char *buf)
662{
663	return pm_show_wakelocks(buf, true);
664}
665
666static ssize_t wake_lock_store(struct kobject *kobj,
667			       struct kobj_attribute *attr,
668			       const char *buf, size_t n)
669{
670	int error = pm_wake_lock(buf);
671	return error ? error : n;
672}
673
674power_attr(wake_lock);
675
676static ssize_t wake_unlock_show(struct kobject *kobj,
677				struct kobj_attribute *attr,
678				char *buf)
679{
680	return pm_show_wakelocks(buf, false);
681}
682
683static ssize_t wake_unlock_store(struct kobject *kobj,
684				 struct kobj_attribute *attr,
685				 const char *buf, size_t n)
686{
687	int error = pm_wake_unlock(buf);
688	return error ? error : n;
689}
690
691power_attr(wake_unlock);
692
693#endif /* CONFIG_PM_WAKELOCKS */
694#endif /* CONFIG_PM_SLEEP */
695
696#ifdef CONFIG_PM_TRACE
697int pm_trace_enabled;
698
699static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr,
700			     char *buf)
701{
702	return sprintf(buf, "%d\n", pm_trace_enabled);
703}
704
705static ssize_t
706pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr,
707	       const char *buf, size_t n)
708{
709	int val;
710
711	if (sscanf(buf, "%d", &val) == 1) {
712		pm_trace_enabled = !!val;
713		if (pm_trace_enabled) {
714			pr_warn("PM: Enabling pm_trace changes system date and time during resume.\n"
715				"PM: Correct system time has to be restored manually after resume.\n");
716		}
717		return n;
718	}
719	return -EINVAL;
720}
721
722power_attr(pm_trace);
723
724static ssize_t pm_trace_dev_match_show(struct kobject *kobj,
725				       struct kobj_attribute *attr,
726				       char *buf)
727{
728	return show_trace_dev_match(buf, PAGE_SIZE);
729}
730
731power_attr_ro(pm_trace_dev_match);
732
733#endif /* CONFIG_PM_TRACE */
734
735#ifdef CONFIG_FREEZER
736static ssize_t pm_freeze_timeout_show(struct kobject *kobj,
737				      struct kobj_attribute *attr, char *buf)
738{
739	return sprintf(buf, "%u\n", freeze_timeout_msecs);
740}
741
742static ssize_t pm_freeze_timeout_store(struct kobject *kobj,
743				       struct kobj_attribute *attr,
744				       const char *buf, size_t n)
745{
746	unsigned long val;
747
748	if (kstrtoul(buf, 10, &val))
749		return -EINVAL;
750
751	freeze_timeout_msecs = val;
752	return n;
753}
754
755power_attr(pm_freeze_timeout);
756
757#endif	/* CONFIG_FREEZER*/
758
759static struct attribute * g[] = {
760	&state_attr.attr,
761#ifdef CONFIG_PM_TRACE
762	&pm_trace_attr.attr,
763	&pm_trace_dev_match_attr.attr,
764#endif
765#ifdef CONFIG_PM_SLEEP
766	&pm_async_attr.attr,
767	&wakeup_count_attr.attr,
768#ifdef CONFIG_SUSPEND
769	&mem_sleep_attr.attr,
 
770#endif
771#ifdef CONFIG_PM_AUTOSLEEP
772	&autosleep_attr.attr,
773#endif
774#ifdef CONFIG_PM_WAKELOCKS
775	&wake_lock_attr.attr,
776	&wake_unlock_attr.attr,
777#endif
778#ifdef CONFIG_PM_SLEEP_DEBUG
779	&pm_test_attr.attr,
780	&pm_print_times_attr.attr,
781	&pm_wakeup_irq_attr.attr,
782	&pm_debug_messages_attr.attr,
783#endif
784#endif
785#ifdef CONFIG_FREEZER
786	&pm_freeze_timeout_attr.attr,
787#endif
788	NULL,
789};
790
791static const struct attribute_group attr_group = {
792	.attrs = g,
793};
794
 
 
 
 
 
 
 
 
795struct workqueue_struct *pm_wq;
796EXPORT_SYMBOL_GPL(pm_wq);
797
798static int __init pm_start_workqueue(void)
799{
800	pm_wq = alloc_workqueue("pm", WQ_FREEZABLE, 0);
801
802	return pm_wq ? 0 : -ENOMEM;
803}
804
805static int __init pm_init(void)
806{
807	int error = pm_start_workqueue();
808	if (error)
809		return error;
810	hibernate_image_size_init();
811	hibernate_reserved_size_init();
812	pm_states_init();
813	power_kobj = kobject_create_and_add("power", NULL);
814	if (!power_kobj)
815		return -ENOMEM;
816	error = sysfs_create_group(power_kobj, &attr_group);
817	if (error)
818		return error;
819	pm_print_times_init();
820	return pm_autosleep_init();
821}
822
823core_initcall(pm_init);
v6.8
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * kernel/power/main.c - PM subsystem core functionality.
  4 *
  5 * Copyright (c) 2003 Patrick Mochel
  6 * Copyright (c) 2003 Open Source Development Lab
 
 
 
  7 */
  8
  9#include <linux/acpi.h>
 10#include <linux/export.h>
 11#include <linux/kobject.h>
 12#include <linux/string.h>
 13#include <linux/pm-trace.h>
 14#include <linux/workqueue.h>
 15#include <linux/debugfs.h>
 16#include <linux/seq_file.h>
 17#include <linux/suspend.h>
 18#include <linux/syscalls.h>
 19#include <linux/pm_runtime.h>
 20
 21#include "power.h"
 22
 
 
 23#ifdef CONFIG_PM_SLEEP
 24/*
 25 * The following functions are used by the suspend/hibernate code to temporarily
 26 * change gfp_allowed_mask in order to avoid using I/O during memory allocations
 27 * while devices are suspended.  To avoid races with the suspend/hibernate code,
 28 * they should always be called with system_transition_mutex held
 29 * (gfp_allowed_mask also should only be modified with system_transition_mutex
 30 * held, unless the suspend/hibernate code is guaranteed not to run in parallel
 31 * with that modification).
 32 */
 33static gfp_t saved_gfp_mask;
 34
 35void pm_restore_gfp_mask(void)
 36{
 37	WARN_ON(!mutex_is_locked(&system_transition_mutex));
 38	if (saved_gfp_mask) {
 39		gfp_allowed_mask = saved_gfp_mask;
 40		saved_gfp_mask = 0;
 41	}
 42}
 43
 44void pm_restrict_gfp_mask(void)
 45{
 46	WARN_ON(!mutex_is_locked(&system_transition_mutex));
 47	WARN_ON(saved_gfp_mask);
 48	saved_gfp_mask = gfp_allowed_mask;
 49	gfp_allowed_mask &= ~(__GFP_IO | __GFP_FS);
 50}
 51
 52unsigned int lock_system_sleep(void)
 53{
 54	unsigned int flags = current->flags;
 55	current->flags |= PF_NOFREEZE;
 56	mutex_lock(&system_transition_mutex);
 57	return flags;
 58}
 59EXPORT_SYMBOL_GPL(lock_system_sleep);
 60
 61void unlock_system_sleep(unsigned int flags)
 62{
 63	if (!(flags & PF_NOFREEZE))
 64		current->flags &= ~PF_NOFREEZE;
 65	mutex_unlock(&system_transition_mutex);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 66}
 67EXPORT_SYMBOL_GPL(unlock_system_sleep);
 68
 69void ksys_sync_helper(void)
 70{
 71	ktime_t start;
 72	long elapsed_msecs;
 73
 74	start = ktime_get();
 75	ksys_sync();
 76	elapsed_msecs = ktime_to_ms(ktime_sub(ktime_get(), start));
 77	pr_info("Filesystems sync: %ld.%03ld seconds\n",
 78		elapsed_msecs / MSEC_PER_SEC, elapsed_msecs % MSEC_PER_SEC);
 79}
 80EXPORT_SYMBOL_GPL(ksys_sync_helper);
 81
 82/* Routines for PM-transition notifications */
 83
 84static BLOCKING_NOTIFIER_HEAD(pm_chain_head);
 85
 86int register_pm_notifier(struct notifier_block *nb)
 87{
 88	return blocking_notifier_chain_register(&pm_chain_head, nb);
 89}
 90EXPORT_SYMBOL_GPL(register_pm_notifier);
 91
 92int unregister_pm_notifier(struct notifier_block *nb)
 93{
 94	return blocking_notifier_chain_unregister(&pm_chain_head, nb);
 95}
 96EXPORT_SYMBOL_GPL(unregister_pm_notifier);
 97
 98void pm_report_hw_sleep_time(u64 t)
 99{
100	suspend_stats.last_hw_sleep = t;
101	suspend_stats.total_hw_sleep += t;
102}
103EXPORT_SYMBOL_GPL(pm_report_hw_sleep_time);
104
105void pm_report_max_hw_sleep(u64 t)
106{
107	suspend_stats.max_hw_sleep = t;
108}
109EXPORT_SYMBOL_GPL(pm_report_max_hw_sleep);
110
111int pm_notifier_call_chain_robust(unsigned long val_up, unsigned long val_down)
112{
113	int ret;
114
115	ret = blocking_notifier_call_chain_robust(&pm_chain_head, val_up, val_down, NULL);
 
116
117	return notifier_to_errno(ret);
118}
119
120int pm_notifier_call_chain(unsigned long val)
121{
122	return blocking_notifier_call_chain(&pm_chain_head, val, NULL);
123}
124
125/* If set, devices may be suspended and resumed asynchronously. */
126int pm_async_enabled = 1;
127
128static ssize_t pm_async_show(struct kobject *kobj, struct kobj_attribute *attr,
129			     char *buf)
130{
131	return sprintf(buf, "%d\n", pm_async_enabled);
132}
133
134static ssize_t pm_async_store(struct kobject *kobj, struct kobj_attribute *attr,
135			      const char *buf, size_t n)
136{
137	unsigned long val;
138
139	if (kstrtoul(buf, 10, &val))
140		return -EINVAL;
141
142	if (val > 1)
143		return -EINVAL;
144
145	pm_async_enabled = val;
146	return n;
147}
148
149power_attr(pm_async);
150
151#ifdef CONFIG_SUSPEND
152static ssize_t mem_sleep_show(struct kobject *kobj, struct kobj_attribute *attr,
153			      char *buf)
154{
155	char *s = buf;
156	suspend_state_t i;
157
158	for (i = PM_SUSPEND_MIN; i < PM_SUSPEND_MAX; i++) {
159		if (i >= PM_SUSPEND_MEM && cxl_mem_active())
160			continue;
161		if (mem_sleep_states[i]) {
162			const char *label = mem_sleep_states[i];
163
164			if (mem_sleep_current == i)
165				s += sprintf(s, "[%s] ", label);
166			else
167				s += sprintf(s, "%s ", label);
168		}
169	}
170
171	/* Convert the last space to a newline if needed. */
172	if (s != buf)
173		*(s-1) = '\n';
174
175	return (s - buf);
176}
177
178static suspend_state_t decode_suspend_state(const char *buf, size_t n)
179{
180	suspend_state_t state;
181	char *p;
182	int len;
183
184	p = memchr(buf, '\n', n);
185	len = p ? p - buf : n;
186
187	for (state = PM_SUSPEND_MIN; state < PM_SUSPEND_MAX; state++) {
188		const char *label = mem_sleep_states[state];
189
190		if (label && len == strlen(label) && !strncmp(buf, label, len))
191			return state;
192	}
193
194	return PM_SUSPEND_ON;
195}
196
197static ssize_t mem_sleep_store(struct kobject *kobj, struct kobj_attribute *attr,
198			       const char *buf, size_t n)
199{
200	suspend_state_t state;
201	int error;
202
203	error = pm_autosleep_lock();
204	if (error)
205		return error;
206
207	if (pm_autosleep_state() > PM_SUSPEND_ON) {
208		error = -EBUSY;
209		goto out;
210	}
211
212	state = decode_suspend_state(buf, n);
213	if (state < PM_SUSPEND_MAX && state > PM_SUSPEND_ON)
214		mem_sleep_current = state;
215	else
216		error = -EINVAL;
217
218 out:
219	pm_autosleep_unlock();
220	return error ? error : n;
221}
222
223power_attr(mem_sleep);
224
225/*
226 * sync_on_suspend: invoke ksys_sync_helper() before suspend.
227 *
228 * show() returns whether ksys_sync_helper() is invoked before suspend.
229 * store() accepts 0 or 1.  0 disables ksys_sync_helper() and 1 enables it.
230 */
231bool sync_on_suspend_enabled = !IS_ENABLED(CONFIG_SUSPEND_SKIP_SYNC);
232
233static ssize_t sync_on_suspend_show(struct kobject *kobj,
234				   struct kobj_attribute *attr, char *buf)
235{
236	return sprintf(buf, "%d\n", sync_on_suspend_enabled);
237}
238
239static ssize_t sync_on_suspend_store(struct kobject *kobj,
240				    struct kobj_attribute *attr,
241				    const char *buf, size_t n)
242{
243	unsigned long val;
244
245	if (kstrtoul(buf, 10, &val))
246		return -EINVAL;
247
248	if (val > 1)
249		return -EINVAL;
250
251	sync_on_suspend_enabled = !!val;
252	return n;
253}
254
255power_attr(sync_on_suspend);
256#endif /* CONFIG_SUSPEND */
257
258#ifdef CONFIG_PM_SLEEP_DEBUG
259int pm_test_level = TEST_NONE;
260
261static const char * const pm_tests[__TEST_AFTER_LAST] = {
262	[TEST_NONE] = "none",
263	[TEST_CORE] = "core",
264	[TEST_CPUS] = "processors",
265	[TEST_PLATFORM] = "platform",
266	[TEST_DEVICES] = "devices",
267	[TEST_FREEZER] = "freezer",
268};
269
270static ssize_t pm_test_show(struct kobject *kobj, struct kobj_attribute *attr,
271				char *buf)
272{
273	char *s = buf;
274	int level;
275
276	for (level = TEST_FIRST; level <= TEST_MAX; level++)
277		if (pm_tests[level]) {
278			if (level == pm_test_level)
279				s += sprintf(s, "[%s] ", pm_tests[level]);
280			else
281				s += sprintf(s, "%s ", pm_tests[level]);
282		}
283
284	if (s != buf)
285		/* convert the last space to a newline */
286		*(s-1) = '\n';
287
288	return (s - buf);
289}
290
291static ssize_t pm_test_store(struct kobject *kobj, struct kobj_attribute *attr,
292				const char *buf, size_t n)
293{
294	unsigned int sleep_flags;
295	const char * const *s;
296	int error = -EINVAL;
297	int level;
298	char *p;
299	int len;
 
300
301	p = memchr(buf, '\n', n);
302	len = p ? p - buf : n;
303
304	sleep_flags = lock_system_sleep();
305
306	level = TEST_FIRST;
307	for (s = &pm_tests[level]; level <= TEST_MAX; s++, level++)
308		if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) {
309			pm_test_level = level;
310			error = 0;
311			break;
312		}
313
314	unlock_system_sleep(sleep_flags);
315
316	return error ? error : n;
317}
318
319power_attr(pm_test);
320#endif /* CONFIG_PM_SLEEP_DEBUG */
321
 
322static char *suspend_step_name(enum suspend_stat_step step)
323{
324	switch (step) {
325	case SUSPEND_FREEZE:
326		return "freeze";
327	case SUSPEND_PREPARE:
328		return "prepare";
329	case SUSPEND_SUSPEND:
330		return "suspend";
331	case SUSPEND_SUSPEND_NOIRQ:
332		return "suspend_noirq";
333	case SUSPEND_RESUME_NOIRQ:
334		return "resume_noirq";
335	case SUSPEND_RESUME:
336		return "resume";
337	default:
338		return "";
339	}
340}
341
342#define suspend_attr(_name, format_str)				\
343static ssize_t _name##_show(struct kobject *kobj,		\
344		struct kobj_attribute *attr, char *buf)		\
345{								\
346	return sprintf(buf, format_str, suspend_stats._name);	\
347}								\
348static struct kobj_attribute _name = __ATTR_RO(_name)
349
350suspend_attr(success, "%d\n");
351suspend_attr(fail, "%d\n");
352suspend_attr(failed_freeze, "%d\n");
353suspend_attr(failed_prepare, "%d\n");
354suspend_attr(failed_suspend, "%d\n");
355suspend_attr(failed_suspend_late, "%d\n");
356suspend_attr(failed_suspend_noirq, "%d\n");
357suspend_attr(failed_resume, "%d\n");
358suspend_attr(failed_resume_early, "%d\n");
359suspend_attr(failed_resume_noirq, "%d\n");
360suspend_attr(last_hw_sleep, "%llu\n");
361suspend_attr(total_hw_sleep, "%llu\n");
362suspend_attr(max_hw_sleep, "%llu\n");
363
364static ssize_t last_failed_dev_show(struct kobject *kobj,
365		struct kobj_attribute *attr, char *buf)
366{
367	int index;
368	char *last_failed_dev = NULL;
369
370	index = suspend_stats.last_failed_dev + REC_FAILED_NUM - 1;
371	index %= REC_FAILED_NUM;
372	last_failed_dev = suspend_stats.failed_devs[index];
373
374	return sprintf(buf, "%s\n", last_failed_dev);
375}
376static struct kobj_attribute last_failed_dev = __ATTR_RO(last_failed_dev);
377
378static ssize_t last_failed_errno_show(struct kobject *kobj,
379		struct kobj_attribute *attr, char *buf)
380{
381	int index;
382	int last_failed_errno;
383
384	index = suspend_stats.last_failed_errno + REC_FAILED_NUM - 1;
385	index %= REC_FAILED_NUM;
386	last_failed_errno = suspend_stats.errno[index];
387
388	return sprintf(buf, "%d\n", last_failed_errno);
389}
390static struct kobj_attribute last_failed_errno = __ATTR_RO(last_failed_errno);
391
392static ssize_t last_failed_step_show(struct kobject *kobj,
393		struct kobj_attribute *attr, char *buf)
394{
395	int index;
396	enum suspend_stat_step step;
397	char *last_failed_step = NULL;
398
399	index = suspend_stats.last_failed_step + REC_FAILED_NUM - 1;
400	index %= REC_FAILED_NUM;
401	step = suspend_stats.failed_steps[index];
402	last_failed_step = suspend_step_name(step);
403
404	return sprintf(buf, "%s\n", last_failed_step);
405}
406static struct kobj_attribute last_failed_step = __ATTR_RO(last_failed_step);
407
408static struct attribute *suspend_attrs[] = {
409	&success.attr,
410	&fail.attr,
411	&failed_freeze.attr,
412	&failed_prepare.attr,
413	&failed_suspend.attr,
414	&failed_suspend_late.attr,
415	&failed_suspend_noirq.attr,
416	&failed_resume.attr,
417	&failed_resume_early.attr,
418	&failed_resume_noirq.attr,
419	&last_failed_dev.attr,
420	&last_failed_errno.attr,
421	&last_failed_step.attr,
422	&last_hw_sleep.attr,
423	&total_hw_sleep.attr,
424	&max_hw_sleep.attr,
425	NULL,
426};
427
428static umode_t suspend_attr_is_visible(struct kobject *kobj, struct attribute *attr, int idx)
429{
430	if (attr != &last_hw_sleep.attr &&
431	    attr != &total_hw_sleep.attr &&
432	    attr != &max_hw_sleep.attr)
433		return 0444;
434
435#ifdef CONFIG_ACPI
436	if (acpi_gbl_FADT.flags & ACPI_FADT_LOW_POWER_S0)
437		return 0444;
438#endif
439	return 0;
440}
441
442static const struct attribute_group suspend_attr_group = {
443	.name = "suspend_stats",
444	.attrs = suspend_attrs,
445	.is_visible = suspend_attr_is_visible,
446};
447
448#ifdef CONFIG_DEBUG_FS
449static int suspend_stats_show(struct seq_file *s, void *unused)
450{
451	int i, index, last_dev, last_errno, last_step;
452
453	last_dev = suspend_stats.last_failed_dev + REC_FAILED_NUM - 1;
454	last_dev %= REC_FAILED_NUM;
455	last_errno = suspend_stats.last_failed_errno + REC_FAILED_NUM - 1;
456	last_errno %= REC_FAILED_NUM;
457	last_step = suspend_stats.last_failed_step + REC_FAILED_NUM - 1;
458	last_step %= REC_FAILED_NUM;
459	seq_printf(s, "%s: %d\n%s: %d\n%s: %d\n%s: %d\n%s: %d\n"
460			"%s: %d\n%s: %d\n%s: %d\n%s: %d\n%s: %d\n",
461			"success", suspend_stats.success,
462			"fail", suspend_stats.fail,
463			"failed_freeze", suspend_stats.failed_freeze,
464			"failed_prepare", suspend_stats.failed_prepare,
465			"failed_suspend", suspend_stats.failed_suspend,
466			"failed_suspend_late",
467				suspend_stats.failed_suspend_late,
468			"failed_suspend_noirq",
469				suspend_stats.failed_suspend_noirq,
470			"failed_resume", suspend_stats.failed_resume,
471			"failed_resume_early",
472				suspend_stats.failed_resume_early,
473			"failed_resume_noirq",
474				suspend_stats.failed_resume_noirq);
475	seq_printf(s,	"failures:\n  last_failed_dev:\t%-s\n",
476			suspend_stats.failed_devs[last_dev]);
477	for (i = 1; i < REC_FAILED_NUM; i++) {
478		index = last_dev + REC_FAILED_NUM - i;
479		index %= REC_FAILED_NUM;
480		seq_printf(s, "\t\t\t%-s\n",
481			suspend_stats.failed_devs[index]);
482	}
483	seq_printf(s,	"  last_failed_errno:\t%-d\n",
484			suspend_stats.errno[last_errno]);
485	for (i = 1; i < REC_FAILED_NUM; i++) {
486		index = last_errno + REC_FAILED_NUM - i;
487		index %= REC_FAILED_NUM;
488		seq_printf(s, "\t\t\t%-d\n",
489			suspend_stats.errno[index]);
490	}
491	seq_printf(s,	"  last_failed_step:\t%-s\n",
492			suspend_step_name(
493				suspend_stats.failed_steps[last_step]));
494	for (i = 1; i < REC_FAILED_NUM; i++) {
495		index = last_step + REC_FAILED_NUM - i;
496		index %= REC_FAILED_NUM;
497		seq_printf(s, "\t\t\t%-s\n",
498			suspend_step_name(
499				suspend_stats.failed_steps[index]));
500	}
501
502	return 0;
503}
504DEFINE_SHOW_ATTRIBUTE(suspend_stats);
 
 
 
 
 
 
 
 
 
 
 
505
506static int __init pm_debugfs_init(void)
507{
508	debugfs_create_file("suspend_stats", S_IFREG | S_IRUGO,
509			NULL, NULL, &suspend_stats_fops);
510	return 0;
511}
512
513late_initcall(pm_debugfs_init);
514#endif /* CONFIG_DEBUG_FS */
515
516#endif /* CONFIG_PM_SLEEP */
517
518#ifdef CONFIG_PM_SLEEP_DEBUG
519/*
520 * pm_print_times: print time taken by devices to suspend and resume.
521 *
522 * show() returns whether printing of suspend and resume times is enabled.
523 * store() accepts 0 or 1.  0 disables printing and 1 enables it.
524 */
525bool pm_print_times_enabled;
526
527static ssize_t pm_print_times_show(struct kobject *kobj,
528				   struct kobj_attribute *attr, char *buf)
529{
530	return sprintf(buf, "%d\n", pm_print_times_enabled);
531}
532
533static ssize_t pm_print_times_store(struct kobject *kobj,
534				    struct kobj_attribute *attr,
535				    const char *buf, size_t n)
536{
537	unsigned long val;
538
539	if (kstrtoul(buf, 10, &val))
540		return -EINVAL;
541
542	if (val > 1)
543		return -EINVAL;
544
545	pm_print_times_enabled = !!val;
546	return n;
547}
548
549power_attr(pm_print_times);
550
551static inline void pm_print_times_init(void)
552{
553	pm_print_times_enabled = !!initcall_debug;
554}
555
556static ssize_t pm_wakeup_irq_show(struct kobject *kobj,
557					struct kobj_attribute *attr,
558					char *buf)
559{
560	if (!pm_wakeup_irq())
561		return -ENODATA;
562
563	return sprintf(buf, "%u\n", pm_wakeup_irq());
564}
565
566power_attr_ro(pm_wakeup_irq);
567
568bool pm_debug_messages_on __read_mostly;
569
570bool pm_debug_messages_should_print(void)
571{
572	return pm_debug_messages_on && pm_suspend_target_state != PM_SUSPEND_ON;
573}
574EXPORT_SYMBOL_GPL(pm_debug_messages_should_print);
575
576static ssize_t pm_debug_messages_show(struct kobject *kobj,
577				      struct kobj_attribute *attr, char *buf)
578{
579	return sprintf(buf, "%d\n", pm_debug_messages_on);
580}
581
582static ssize_t pm_debug_messages_store(struct kobject *kobj,
583				       struct kobj_attribute *attr,
584				       const char *buf, size_t n)
585{
586	unsigned long val;
587
588	if (kstrtoul(buf, 10, &val))
589		return -EINVAL;
590
591	if (val > 1)
592		return -EINVAL;
593
594	pm_debug_messages_on = !!val;
595	return n;
596}
597
598power_attr(pm_debug_messages);
599
600static int __init pm_debug_messages_setup(char *str)
 
 
 
 
 
 
 
 
601{
602	pm_debug_messages_on = true;
603	return 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
604}
605__setup("pm_debug_messages", pm_debug_messages_setup);
606
607#else /* !CONFIG_PM_SLEEP_DEBUG */
608static inline void pm_print_times_init(void) {}
609#endif /* CONFIG_PM_SLEEP_DEBUG */
610
611struct kobject *power_kobj;
612
613/*
614 * state - control system sleep states.
615 *
616 * show() returns available sleep state labels, which may be "mem", "standby",
617 * "freeze" and "disk" (hibernation).
618 * See Documentation/admin-guide/pm/sleep-states.rst for a description of
619 * what they mean.
620 *
621 * store() accepts one of those strings, translates it into the proper
622 * enumerated value, and initiates a suspend transition.
623 */
624static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr,
625			  char *buf)
626{
627	char *s = buf;
628#ifdef CONFIG_SUSPEND
629	suspend_state_t i;
630
631	for (i = PM_SUSPEND_MIN; i < PM_SUSPEND_MAX; i++)
632		if (pm_states[i])
633			s += sprintf(s,"%s ", pm_states[i]);
634
635#endif
636	if (hibernation_available())
637		s += sprintf(s, "disk ");
638	if (s != buf)
639		/* convert the last space to a newline */
640		*(s-1) = '\n';
641	return (s - buf);
642}
643
644static suspend_state_t decode_state(const char *buf, size_t n)
645{
646#ifdef CONFIG_SUSPEND
647	suspend_state_t state;
648#endif
649	char *p;
650	int len;
651
652	p = memchr(buf, '\n', n);
653	len = p ? p - buf : n;
654
655	/* Check hibernation first. */
656	if (len == 4 && str_has_prefix(buf, "disk"))
657		return PM_SUSPEND_MAX;
658
659#ifdef CONFIG_SUSPEND
660	for (state = PM_SUSPEND_MIN; state < PM_SUSPEND_MAX; state++) {
661		const char *label = pm_states[state];
662
663		if (label && len == strlen(label) && !strncmp(buf, label, len))
664			return state;
665	}
666#endif
667
668	return PM_SUSPEND_ON;
669}
670
671static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr,
672			   const char *buf, size_t n)
673{
674	suspend_state_t state;
675	int error;
676
677	error = pm_autosleep_lock();
678	if (error)
679		return error;
680
681	if (pm_autosleep_state() > PM_SUSPEND_ON) {
682		error = -EBUSY;
683		goto out;
684	}
685
686	state = decode_state(buf, n);
687	if (state < PM_SUSPEND_MAX) {
688		if (state == PM_SUSPEND_MEM)
689			state = mem_sleep_current;
690
691		error = pm_suspend(state);
692	} else if (state == PM_SUSPEND_MAX) {
693		error = hibernate();
694	} else {
695		error = -EINVAL;
696	}
697
698 out:
699	pm_autosleep_unlock();
700	return error ? error : n;
701}
702
703power_attr(state);
704
705#ifdef CONFIG_PM_SLEEP
706/*
707 * The 'wakeup_count' attribute, along with the functions defined in
708 * drivers/base/power/wakeup.c, provides a means by which wakeup events can be
709 * handled in a non-racy way.
710 *
711 * If a wakeup event occurs when the system is in a sleep state, it simply is
712 * woken up.  In turn, if an event that would wake the system up from a sleep
713 * state occurs when it is undergoing a transition to that sleep state, the
714 * transition should be aborted.  Moreover, if such an event occurs when the
715 * system is in the working state, an attempt to start a transition to the
716 * given sleep state should fail during certain period after the detection of
717 * the event.  Using the 'state' attribute alone is not sufficient to satisfy
718 * these requirements, because a wakeup event may occur exactly when 'state'
719 * is being written to and may be delivered to user space right before it is
720 * frozen, so the event will remain only partially processed until the system is
721 * woken up by another event.  In particular, it won't cause the transition to
722 * a sleep state to be aborted.
723 *
724 * This difficulty may be overcome if user space uses 'wakeup_count' before
725 * writing to 'state'.  It first should read from 'wakeup_count' and store
726 * the read value.  Then, after carrying out its own preparations for the system
727 * transition to a sleep state, it should write the stored value to
728 * 'wakeup_count'.  If that fails, at least one wakeup event has occurred since
729 * 'wakeup_count' was read and 'state' should not be written to.  Otherwise, it
730 * is allowed to write to 'state', but the transition will be aborted if there
731 * are any wakeup events detected after 'wakeup_count' was written to.
732 */
733
734static ssize_t wakeup_count_show(struct kobject *kobj,
735				struct kobj_attribute *attr,
736				char *buf)
737{
738	unsigned int val;
739
740	return pm_get_wakeup_count(&val, true) ?
741		sprintf(buf, "%u\n", val) : -EINTR;
742}
743
744static ssize_t wakeup_count_store(struct kobject *kobj,
745				struct kobj_attribute *attr,
746				const char *buf, size_t n)
747{
748	unsigned int val;
749	int error;
750
751	error = pm_autosleep_lock();
752	if (error)
753		return error;
754
755	if (pm_autosleep_state() > PM_SUSPEND_ON) {
756		error = -EBUSY;
757		goto out;
758	}
759
760	error = -EINVAL;
761	if (sscanf(buf, "%u", &val) == 1) {
762		if (pm_save_wakeup_count(val))
763			error = n;
764		else
765			pm_print_active_wakeup_sources();
766	}
767
768 out:
769	pm_autosleep_unlock();
770	return error;
771}
772
773power_attr(wakeup_count);
774
775#ifdef CONFIG_PM_AUTOSLEEP
776static ssize_t autosleep_show(struct kobject *kobj,
777			      struct kobj_attribute *attr,
778			      char *buf)
779{
780	suspend_state_t state = pm_autosleep_state();
781
782	if (state == PM_SUSPEND_ON)
783		return sprintf(buf, "off\n");
784
785#ifdef CONFIG_SUSPEND
786	if (state < PM_SUSPEND_MAX)
787		return sprintf(buf, "%s\n", pm_states[state] ?
788					pm_states[state] : "error");
789#endif
790#ifdef CONFIG_HIBERNATION
791	return sprintf(buf, "disk\n");
792#else
793	return sprintf(buf, "error");
794#endif
795}
796
797static ssize_t autosleep_store(struct kobject *kobj,
798			       struct kobj_attribute *attr,
799			       const char *buf, size_t n)
800{
801	suspend_state_t state = decode_state(buf, n);
802	int error;
803
804	if (state == PM_SUSPEND_ON
805	    && strcmp(buf, "off") && strcmp(buf, "off\n"))
806		return -EINVAL;
807
808	if (state == PM_SUSPEND_MEM)
809		state = mem_sleep_current;
810
811	error = pm_autosleep_set_state(state);
812	return error ? error : n;
813}
814
815power_attr(autosleep);
816#endif /* CONFIG_PM_AUTOSLEEP */
817
818#ifdef CONFIG_PM_WAKELOCKS
819static ssize_t wake_lock_show(struct kobject *kobj,
820			      struct kobj_attribute *attr,
821			      char *buf)
822{
823	return pm_show_wakelocks(buf, true);
824}
825
826static ssize_t wake_lock_store(struct kobject *kobj,
827			       struct kobj_attribute *attr,
828			       const char *buf, size_t n)
829{
830	int error = pm_wake_lock(buf);
831	return error ? error : n;
832}
833
834power_attr(wake_lock);
835
836static ssize_t wake_unlock_show(struct kobject *kobj,
837				struct kobj_attribute *attr,
838				char *buf)
839{
840	return pm_show_wakelocks(buf, false);
841}
842
843static ssize_t wake_unlock_store(struct kobject *kobj,
844				 struct kobj_attribute *attr,
845				 const char *buf, size_t n)
846{
847	int error = pm_wake_unlock(buf);
848	return error ? error : n;
849}
850
851power_attr(wake_unlock);
852
853#endif /* CONFIG_PM_WAKELOCKS */
854#endif /* CONFIG_PM_SLEEP */
855
856#ifdef CONFIG_PM_TRACE
857int pm_trace_enabled;
858
859static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr,
860			     char *buf)
861{
862	return sprintf(buf, "%d\n", pm_trace_enabled);
863}
864
865static ssize_t
866pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr,
867	       const char *buf, size_t n)
868{
869	int val;
870
871	if (sscanf(buf, "%d", &val) == 1) {
872		pm_trace_enabled = !!val;
873		if (pm_trace_enabled) {
874			pr_warn("PM: Enabling pm_trace changes system date and time during resume.\n"
875				"PM: Correct system time has to be restored manually after resume.\n");
876		}
877		return n;
878	}
879	return -EINVAL;
880}
881
882power_attr(pm_trace);
883
884static ssize_t pm_trace_dev_match_show(struct kobject *kobj,
885				       struct kobj_attribute *attr,
886				       char *buf)
887{
888	return show_trace_dev_match(buf, PAGE_SIZE);
889}
890
891power_attr_ro(pm_trace_dev_match);
892
893#endif /* CONFIG_PM_TRACE */
894
895#ifdef CONFIG_FREEZER
896static ssize_t pm_freeze_timeout_show(struct kobject *kobj,
897				      struct kobj_attribute *attr, char *buf)
898{
899	return sprintf(buf, "%u\n", freeze_timeout_msecs);
900}
901
902static ssize_t pm_freeze_timeout_store(struct kobject *kobj,
903				       struct kobj_attribute *attr,
904				       const char *buf, size_t n)
905{
906	unsigned long val;
907
908	if (kstrtoul(buf, 10, &val))
909		return -EINVAL;
910
911	freeze_timeout_msecs = val;
912	return n;
913}
914
915power_attr(pm_freeze_timeout);
916
917#endif	/* CONFIG_FREEZER*/
918
919static struct attribute * g[] = {
920	&state_attr.attr,
921#ifdef CONFIG_PM_TRACE
922	&pm_trace_attr.attr,
923	&pm_trace_dev_match_attr.attr,
924#endif
925#ifdef CONFIG_PM_SLEEP
926	&pm_async_attr.attr,
927	&wakeup_count_attr.attr,
928#ifdef CONFIG_SUSPEND
929	&mem_sleep_attr.attr,
930	&sync_on_suspend_attr.attr,
931#endif
932#ifdef CONFIG_PM_AUTOSLEEP
933	&autosleep_attr.attr,
934#endif
935#ifdef CONFIG_PM_WAKELOCKS
936	&wake_lock_attr.attr,
937	&wake_unlock_attr.attr,
938#endif
939#ifdef CONFIG_PM_SLEEP_DEBUG
940	&pm_test_attr.attr,
941	&pm_print_times_attr.attr,
942	&pm_wakeup_irq_attr.attr,
943	&pm_debug_messages_attr.attr,
944#endif
945#endif
946#ifdef CONFIG_FREEZER
947	&pm_freeze_timeout_attr.attr,
948#endif
949	NULL,
950};
951
952static const struct attribute_group attr_group = {
953	.attrs = g,
954};
955
956static const struct attribute_group *attr_groups[] = {
957	&attr_group,
958#ifdef CONFIG_PM_SLEEP
959	&suspend_attr_group,
960#endif
961	NULL,
962};
963
964struct workqueue_struct *pm_wq;
965EXPORT_SYMBOL_GPL(pm_wq);
966
967static int __init pm_start_workqueue(void)
968{
969	pm_wq = alloc_workqueue("pm", WQ_FREEZABLE, 0);
970
971	return pm_wq ? 0 : -ENOMEM;
972}
973
974static int __init pm_init(void)
975{
976	int error = pm_start_workqueue();
977	if (error)
978		return error;
979	hibernate_image_size_init();
980	hibernate_reserved_size_init();
981	pm_states_init();
982	power_kobj = kobject_create_and_add("power", NULL);
983	if (!power_kobj)
984		return -ENOMEM;
985	error = sysfs_create_groups(power_kobj, attr_groups);
986	if (error)
987		return error;
988	pm_print_times_init();
989	return pm_autosleep_init();
990}
991
992core_initcall(pm_init);