blob: 252611fad2fee221c0cee0f3dc563bdd88a4fc3a [file] [log] [blame]
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -08001/*
2 * kernel/power/wakeup_reason.c
3 *
4 * Logs the reasons which caused the kernel to resume from
5 * the suspend mode.
6 *
7 * Copyright (C) 2014 Google, Inc.
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <linux/wakeup_reason.h>
19#include <linux/kernel.h>
20#include <linux/irq.h>
21#include <linux/interrupt.h>
22#include <linux/io.h>
23#include <linux/kobject.h>
24#include <linux/sysfs.h>
25#include <linux/init.h>
26#include <linux/spinlock.h>
27#include <linux/notifier.h>
28#include <linux/suspend.h>
29
30
31#define MAX_WAKEUP_REASON_IRQS 32
32static int irq_list[MAX_WAKEUP_REASON_IRQS];
Greg Hackmanne13dbc72014-03-10 14:21:30 -070033static int irqcount;
Ruchi Kandoi6118cb42014-10-29 10:36:27 -070034static bool suspend_abort;
35static char abort_reason[MAX_SUSPEND_ABORT_LEN];
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -080036static struct kobject *wakeup_reason;
Dmitry Shmidtdfa40332014-10-31 16:05:46 -070037static DEFINE_SPINLOCK(resume_reason_lock);
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -080038
Amit Pundir7df92a192015-04-14 02:38:20 +053039static ktime_t last_monotime; /* monotonic time before last suspend */
40static ktime_t curr_monotime; /* monotonic time after last suspend */
41static ktime_t last_stime; /* monotonic boottime offset before last suspend */
42static ktime_t curr_stime; /* monotonic boottime offset after last suspend */
jinqiane2cc63f2015-03-25 16:18:44 -070043
Ruchi Kandoib4e62472014-04-24 14:31:57 -070044static ssize_t last_resume_reason_show(struct kobject *kobj, struct kobj_attribute *attr,
Ruchi Kandoi11351222014-02-20 19:47:38 -080045 char *buf)
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -080046{
47 int irq_no, buf_offset = 0;
48 struct irq_desc *desc;
49 spin_lock(&resume_reason_lock);
Ruchi Kandoi6118cb42014-10-29 10:36:27 -070050 if (suspend_abort) {
51 buf_offset = sprintf(buf, "Abort: %s", abort_reason);
52 } else {
53 for (irq_no = 0; irq_no < irqcount; irq_no++) {
54 desc = irq_to_desc(irq_list[irq_no]);
55 if (desc && desc->action && desc->action->name)
56 buf_offset += sprintf(buf + buf_offset, "%d %s\n",
57 irq_list[irq_no], desc->action->name);
58 else
59 buf_offset += sprintf(buf + buf_offset, "%d\n",
60 irq_list[irq_no]);
61 }
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -080062 }
63 spin_unlock(&resume_reason_lock);
64 return buf_offset;
65}
66
jinqiane2cc63f2015-03-25 16:18:44 -070067static ssize_t last_suspend_time_show(struct kobject *kobj,
68 struct kobj_attribute *attr, char *buf)
69{
70 struct timespec sleep_time;
71 struct timespec total_time;
72 struct timespec suspend_resume_time;
73
Amit Pundir7df92a192015-04-14 02:38:20 +053074 /*
75 * total_time is calculated from monotonic bootoffsets because
76 * unlike CLOCK_MONOTONIC it include the time spent in suspend state.
77 */
78 total_time = ktime_to_timespec(ktime_sub(curr_stime, last_stime));
jinqiane2cc63f2015-03-25 16:18:44 -070079
80 /*
Amit Pundir7df92a192015-04-14 02:38:20 +053081 * suspend_resume_time is calculated as monotonic (CLOCK_MONOTONIC)
82 * time interval before entering suspend and post suspend.
jinqiane2cc63f2015-03-25 16:18:44 -070083 */
Amit Pundir7df92a192015-04-14 02:38:20 +053084 suspend_resume_time = ktime_to_timespec(ktime_sub(curr_monotime, last_monotime));
85
86 /* sleep_time = total_time - suspend_resume_time */
87 sleep_time = timespec_sub(total_time, suspend_resume_time);
88
89 /* Export suspend_resume_time and sleep_time in pair here. */
jinqiane2cc63f2015-03-25 16:18:44 -070090 return sprintf(buf, "%lu.%09lu %lu.%09lu\n",
91 suspend_resume_time.tv_sec, suspend_resume_time.tv_nsec,
92 sleep_time.tv_sec, sleep_time.tv_nsec);
93}
94
Ruchi Kandoib4e62472014-04-24 14:31:57 -070095static struct kobj_attribute resume_reason = __ATTR_RO(last_resume_reason);
jinqiane2cc63f2015-03-25 16:18:44 -070096static struct kobj_attribute suspend_time = __ATTR_RO(last_suspend_time);
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -080097
98static struct attribute *attrs[] = {
99 &resume_reason.attr,
jinqiane2cc63f2015-03-25 16:18:44 -0700100 &suspend_time.attr,
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800101 NULL,
102};
103static struct attribute_group attr_group = {
104 .attrs = attrs,
105};
106
107/*
108 * logs all the wake up reasons to the kernel
109 * stores the irqs to expose them to the userspace via sysfs
110 */
111void log_wakeup_reason(int irq)
112{
113 struct irq_desc *desc;
114 desc = irq_to_desc(irq);
115 if (desc && desc->action && desc->action->name)
116 printk(KERN_INFO "Resume caused by IRQ %d, %s\n", irq,
117 desc->action->name);
118 else
119 printk(KERN_INFO "Resume caused by IRQ %d\n", irq);
120
121 spin_lock(&resume_reason_lock);
Greg Hackmanne13dbc72014-03-10 14:21:30 -0700122 if (irqcount == MAX_WAKEUP_REASON_IRQS) {
Ruchi Kandoi1ceb7e22014-03-07 12:54:30 -0800123 spin_unlock(&resume_reason_lock);
124 printk(KERN_WARNING "Resume caused by more than %d IRQs\n",
125 MAX_WAKEUP_REASON_IRQS);
126 return;
127 }
128
Greg Hackmanne13dbc72014-03-10 14:21:30 -0700129 irq_list[irqcount++] = irq;
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800130 spin_unlock(&resume_reason_lock);
131}
132
Dmitry Shmidtdfa40332014-10-31 16:05:46 -0700133int check_wakeup_reason(int irq)
134{
135 int irq_no;
136 int ret = false;
137
138 spin_lock(&resume_reason_lock);
139 for (irq_no = 0; irq_no < irqcount; irq_no++)
140 if (irq_list[irq_no] == irq) {
141 ret = true;
142 break;
143 }
144 spin_unlock(&resume_reason_lock);
145 return ret;
146}
147
Ruchi Kandoi6118cb42014-10-29 10:36:27 -0700148void log_suspend_abort_reason(const char *fmt, ...)
149{
150 va_list args;
151
152 spin_lock(&resume_reason_lock);
153
154 //Suspend abort reason has already been logged.
155 if (suspend_abort) {
156 spin_unlock(&resume_reason_lock);
157 return;
158 }
159
160 suspend_abort = true;
161 va_start(args, fmt);
Ruchi Kandoi9d17e242015-08-05 16:54:53 -0700162 vsnprintf(abort_reason, MAX_SUSPEND_ABORT_LEN, fmt, args);
Ruchi Kandoi6118cb42014-10-29 10:36:27 -0700163 va_end(args);
164 spin_unlock(&resume_reason_lock);
165}
166
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800167/* Detects a suspend and clears all the previous wake up reasons*/
168static int wakeup_reason_pm_event(struct notifier_block *notifier,
169 unsigned long pm_event, void *unused)
170{
171 switch (pm_event) {
172 case PM_SUSPEND_PREPARE:
173 spin_lock(&resume_reason_lock);
Greg Hackmanne13dbc72014-03-10 14:21:30 -0700174 irqcount = 0;
Ruchi Kandoi6118cb42014-10-29 10:36:27 -0700175 suspend_abort = false;
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800176 spin_unlock(&resume_reason_lock);
Amit Pundir7df92a192015-04-14 02:38:20 +0530177 /* monotonic time since boot */
178 last_monotime = ktime_get();
179 /* monotonic time since boot including the time spent in suspend */
180 last_stime = ktime_get_boottime();
jinqiane2cc63f2015-03-25 16:18:44 -0700181 break;
182 case PM_POST_SUSPEND:
Amit Pundir7df92a192015-04-14 02:38:20 +0530183 /* monotonic time since boot */
184 curr_monotime = ktime_get();
185 /* monotonic time since boot including the time spent in suspend */
186 curr_stime = ktime_get_boottime();
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800187 break;
188 default:
189 break;
190 }
191 return NOTIFY_DONE;
192}
193
194static struct notifier_block wakeup_reason_pm_notifier_block = {
195 .notifier_call = wakeup_reason_pm_event,
196};
197
198/* Initializes the sysfs parameter
199 * registers the pm_event notifier
200 */
Ruchi Kandoi11351222014-02-20 19:47:38 -0800201int __init wakeup_reason_init(void)
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800202{
203 int retval;
Dmitry Shmidtdfa40332014-10-31 16:05:46 -0700204
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800205 retval = register_pm_notifier(&wakeup_reason_pm_notifier_block);
206 if (retval)
207 printk(KERN_WARNING "[%s] failed to register PM notifier %d\n",
208 __func__, retval);
209
210 wakeup_reason = kobject_create_and_add("wakeup_reasons", kernel_kobj);
211 if (!wakeup_reason) {
212 printk(KERN_WARNING "[%s] failed to create a sysfs kobject\n",
213 __func__);
Ruchi Kandoi11351222014-02-20 19:47:38 -0800214 return 1;
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800215 }
216 retval = sysfs_create_group(wakeup_reason, &attr_group);
217 if (retval) {
218 kobject_put(wakeup_reason);
219 printk(KERN_WARNING "[%s] failed to create a sysfs group %d\n",
220 __func__, retval);
221 }
Ruchi Kandoi11351222014-02-20 19:47:38 -0800222 return 0;
Ruchi Kandoi6acefbe2014-02-19 15:30:47 -0800223}
224
225late_initcall(wakeup_reason_init);