Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
a0df92a4
Commit
a0df92a4
authored
Mar 25, 2002
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add device_{suspend,resume,shutdown} calls.
parent
fba46407
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
2 deletions
+129
-2
drivers/base/Makefile
drivers/base/Makefile
+2
-2
drivers/base/power.c
drivers/base/power.c
+122
-0
include/linux/device.h
include/linux/device.h
+5
-0
No files found.
drivers/base/Makefile
View file @
a0df92a4
O_TARGET
:=
base.o
obj-y
:=
core.o sys.o interface.o fs.o
obj-y
:=
core.o sys.o interface.o fs.o
power.o
export-objs
:=
core.o sys.o interface.o fs.o
export-objs
:=
$
(
obj-y
)
include
$(TOPDIR)/Rules.make
drivers/base/power.c
View file @
a0df92a4
/*
* power.c - power management functions for the device tree.
*
* Copyright (c) 2002 Patrick Mochel
* 2002 Open Source Development Lab
*
* Kai Germaschewski contributed to the list walking routines.
*
* FIXME: The suspend and shutdown walks are identical. The resume walk
* is simply walking the list backward. Anyway we can combine these (cleanly)?
*/
#include <linux/device.h>
#include <linux/module.h>
#include "base.h"
/**
* device_suspend - suspend all devices on the device tree
* @state: state we're entering
* @level: what stage of the suspend process we're at
*
* The entries in the global device list are inserted such that they're in a
* depth-first ordering. So, simply iterate over the list, and call the driver's
* suspend callback for each device.
*/
int
device_suspend
(
u32
state
,
u32
level
)
{
struct
device
*
dev
;
struct
device
*
prev
=
&
device_root
;
int
error
=
0
;
get_device
(
prev
);
spin_lock
(
&
device_lock
);
dev
=
g_list_to_dev
(
prev
->
g_list
.
next
);
while
(
dev
!=
&
device_root
&&
!
error
)
{
get_device
(
dev
);
spin_unlock
(
&
device_lock
);
put_device
(
prev
);
if
(
dev
->
driver
&&
dev
->
driver
->
suspend
)
error
=
dev
->
driver
->
suspend
(
dev
,
state
,
level
);
spin_lock
(
&
device_lock
);
prev
=
dev
;
dev
=
g_list_to_dev
(
prev
->
g_list
.
next
);
}
spin_unlock
(
&
device_root
);
put_device
(
prev
);
return
error
;
}
/**
* device_resume - resume all the devices in the system
* @level: stage of resume process we're at
*
* Similar to device_suspend above, though we want to do a breadth-first
* walk of the tree to make sure we wake up parents before children.
* So, we iterate over the list backward.
*/
void
device_resume
(
u32
level
)
{
struct
device
*
dev
;
struct
device
*
prev
=
&
device_root
;
get_device
(
prev
);
spin_lock
(
&
device_lock
);
dev
=
g_list_to_dev
(
prev
->
g_list
.
prev
);
while
(
dev
!=
&
device_root
)
{
get_device
(
dev
);
spin_unlock
(
&
device_lock
);
put_device
(
prev
);
if
(
dev
->
driver
&&
dev
->
driver
->
resume
)
dev
->
driver
->
resume
(
dev
,
level
);
spin_lock
(
&
device_lock
);
prev
=
dev
;
dev
=
g_list_to_dev
(
prev
->
g_list
.
prev
);
}
spin_unlock
(
&
device_root
);
put_device
(
prev
);
}
/**
* device_shutdown - queisce all the devices before reboot/shutdown
*
* Do depth first iteration over device tree, calling ->remove() for each
* device. This should ensure the devices are put into a sane state before
* we reboot the system.
*
*/
void
device_shutdown
(
void
)
{
struct
device
*
dev
;
struct
device
*
prev
=
&
device_root
;
get_device
(
prev
);
spin_lock
(
&
device_lock
);
dev
=
g_list_to_dev
(
prev
->
g_list
.
next
);
while
(
dev
!=
&
device_root
)
{
get_device
(
dev
);
spin_unlock
(
&
device_lock
);
put_device
(
prev
);
if
(
dev
->
driver
&&
dev
->
driver
->
remove
)
dev
->
driver
->
remove
(
dev
,
REMOVE_FREE_RESOURCES
);
spin_lock
(
&
device_lock
);
prev
=
dev
;
dev
=
g_list_to_dev
(
prev
->
g_list
.
next
);
}
spin_unlock
(
&
device_root
);
put_device
(
prev
);
}
EXPORT_SYMBOL
(
device_suspend
);
EXPORT_SYMBOL
(
device_resume
);
EXPORT_SYMBOL
(
device_shutdown
);
include/linux/device.h
View file @
a0df92a4
...
...
@@ -154,4 +154,9 @@ extern void put_device(struct device * dev);
extern
int
register_sys_device
(
struct
device
*
dev
);
extern
void
unregister_sys_device
(
struct
device
*
dev
);
/* drivers/base/power.c */
extern
int
device_suspend
(
u32
state
,
u32
level
);
extern
void
device_resume
(
u32
level
);
extern
void
device_shutdown
(
void
);
#endif
/* _DEVICE_H_ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment