1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#ifndef __RESUME_DEPENDENCY_H__
#define __RESUME_DEPENDENCY_H__
/* Resume dependency framework
*
* (C) 2008 Openmoko, Inc.
* Author: Andy Green <andy@openmoko.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2.1.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*/
#include <linux/list.h>
struct resume_dependency {
struct list_head list;
void (*callback)(void *); /* called with context as arg */
void * context;
int called_flag; /* set to 1 after called, use for multi dep */
};
/* if you are a driver accept to have other drivers as dependencies, you need to
* instantiate a struct resume_dependency above, then initialize it by invoking
* init_resume_dependency_list() on it
*/
#define init_resume_dependency_list(_head) \
printk(KERN_INFO "##### init_resume_dependency_list(head=%p)\n", (_head)); \
INIT_LIST_HEAD(&(_head)->list);
/* if your resume function depends on something else being resumed first, you
* can register the dependency by calling this in your suspend function with
* head being the list held by the thing you are dependent on, and dep being
* your struct resume_dependency
*/
#define register_resume_dependency(_head, _dep) { \
struct list_head *_pos, *_q; \
struct resume_dependency *_d; \
\
printk(KERN_ERR "##### register_resume_dependency(head=%p, dep=%p)\n", (_head), (_dep)); \
(_dep)->called_flag = 1; \
list_for_each_safe(_pos, _q, &((_head)->list)) { \
_d = list_entry(_pos, struct resume_dependency, list); \
if (_d == (_dep)) { \
list_del(_pos); \
printk(KERN_ERR "##### duplicate dependency removed first\n"); \
} \
} \
list_add(&(_dep)->list, &(_head)->list); \
}
/* In the resume function that things can be dependent on, at the end you
* invoke this macro. This calls back the dependent resumes now it is safe to
* use the resumed thing they were dependent on.
*/
#define callback_all_resume_dependencies(_head) { \
struct list_head *_pos, *_q; \
struct resume_dependency *_dep; \
\
printk(KERN_ERR "##### callback_all_resume_dependencies(head=%p)\n", (_head)); \
list_for_each_safe(_pos, _q, &((_head)->list)) { \
_dep = list_entry(_pos, struct resume_dependency, list); \
printk(KERN_ERR "##### callback list entry (head=%p, dep=%p)\n", (_head), (_dep)); \
_dep->called_flag = 1; \
printk(KERN_ERR "##### callback=%p(context=%p))\n", (_dep->callback),(_dep->context)); \
(_dep->callback)(_dep->context); \
list_del(_pos); \
} \
}
/* When a dependency is added, it is not actually active; the dependent resume
* handler will function as normal. The dependency is activated by the suspend
* handler for the driver that will be doing the callbacks. This ensures that
* if the suspend is aborted for any reason (error, driver busy, etc), that all
* suspended drivers will resume, even if the driver upon which they are dependent
* did not suspend, and hence will not resume, and thus would be unable to perform
* the callbacks.
*/
#define activate_all_resume_dependencies(_head) { \
struct list_head *_pos, *_q; \
struct resume_dependency *_dep; \
\
printk(KERN_ERR "##### activate_all_resume_dependencies(head=%p)\n", (_head)); \
list_for_each_safe(_pos, _q, &((_head)->list)) { \
_dep = list_entry(_pos, struct resume_dependency, list); \
printk(KERN_ERR "##### activating callback list entry (head=%p, dep=%p)\n", (_head), (_dep)); \
_dep->called_flag = 0; \
} \
}
/* if your resume action is dependent on multiple drivers being resumed already,
* register the same callback with each driver you are dependent on, and check
* .called_flag for all of the struct resume_dependency. When they are all 1
* you know it is the last callback and you can resume, otherwise just return
*/
#endif
|