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
Kirill Smelkov
linux
Commits
e92b9b3b
Commit
e92b9b3b
authored
Jan 07, 2012
by
Francois Romieu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
via-rhine: rework suspend and resume.
Cover of
861ab440
. Signed-off-by:
Francois Romieu
<
romieu@fr.zoreil.com
>
parent
fc3e0f8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
21 deletions
+20
-21
drivers/net/ethernet/via/via-rhine.c
drivers/net/ethernet/via/via-rhine.c
+20
-21
No files found.
drivers/net/ethernet/via/via-rhine.c
View file @
e92b9b3b
...
@@ -2291,17 +2291,18 @@ static void rhine_shutdown (struct pci_dev *pdev)
...
@@ -2291,17 +2291,18 @@ static void rhine_shutdown (struct pci_dev *pdev)
spin_unlock
(
&
rp
->
lock
);
spin_unlock
(
&
rp
->
lock
);
/* Hit power state D3 (sleep) */
if
(
system_state
==
SYSTEM_POWER_OFF
&&
!
avoid_D3
)
{
if
(
!
avoid_D3
)
iowrite8
(
ioread8
(
ioaddr
+
StickyHW
)
|
0x03
,
ioaddr
+
StickyHW
);
iowrite8
(
ioread8
(
ioaddr
+
StickyHW
)
|
0x03
,
ioaddr
+
StickyHW
);
/* TODO: Check use of pci_enable_wake() */
pci_wake_from_d3
(
pdev
,
true
);
pci_set_power_state
(
pdev
,
PCI_D3hot
);
}
}
}
#ifdef CONFIG_PM
#ifdef CONFIG_PM
_SLEEP
static
int
rhine_suspend
(
struct
pci_dev
*
pdev
,
pm_message_t
stat
e
)
static
int
rhine_suspend
(
struct
device
*
devic
e
)
{
{
struct
pci_dev
*
pdev
=
to_pci_dev
(
device
);
struct
net_device
*
dev
=
pci_get_drvdata
(
pdev
);
struct
net_device
*
dev
=
pci_get_drvdata
(
pdev
);
struct
rhine_private
*
rp
=
netdev_priv
(
dev
);
struct
rhine_private
*
rp
=
netdev_priv
(
dev
);
...
@@ -2313,28 +2314,21 @@ static int rhine_suspend(struct pci_dev *pdev, pm_message_t state)
...
@@ -2313,28 +2314,21 @@ static int rhine_suspend(struct pci_dev *pdev, pm_message_t state)
napi_disable
(
&
rp
->
napi
);
napi_disable
(
&
rp
->
napi
);
netif_device_detach
(
dev
);
netif_device_detach
(
dev
);
pci_save_state
(
pdev
);
rhine_shutdown
(
pdev
);
rhine_shutdown
(
pdev
);
return
0
;
return
0
;
}
}
static
int
rhine_resume
(
struct
pci_dev
*
pdev
)
static
int
rhine_resume
(
struct
device
*
device
)
{
{
struct
pci_dev
*
pdev
=
to_pci_dev
(
device
);
struct
net_device
*
dev
=
pci_get_drvdata
(
pdev
);
struct
net_device
*
dev
=
pci_get_drvdata
(
pdev
);
struct
rhine_private
*
rp
=
netdev_priv
(
dev
);
struct
rhine_private
*
rp
=
netdev_priv
(
dev
);
int
ret
;
if
(
!
netif_running
(
dev
))
if
(
!
netif_running
(
dev
))
return
0
;
return
0
;
ret
=
pci_set_power_state
(
pdev
,
PCI_D0
);
netif_info
(
rp
,
drv
,
dev
,
"Entering power state D0 %s (%d)
\n
"
,
ret
?
"failed"
:
"succeeded"
,
ret
);
pci_restore_state
(
pdev
);
#ifdef USE_MMIO
#ifdef USE_MMIO
enable_mmio
(
rp
->
pioaddr
,
rp
->
quirks
);
enable_mmio
(
rp
->
pioaddr
,
rp
->
quirks
);
#endif
#endif
...
@@ -2352,18 +2346,23 @@ static int rhine_resume(struct pci_dev *pdev)
...
@@ -2352,18 +2346,23 @@ static int rhine_resume(struct pci_dev *pdev)
return
0
;
return
0
;
}
}
#endif
/* CONFIG_PM */
static
SIMPLE_DEV_PM_OPS
(
rhine_pm_ops
,
rhine_suspend
,
rhine_resume
);
#define RHINE_PM_OPS (&rhine_pm_ops)
#else
#define RHINE_PM_OPS NULL
#endif
/* !CONFIG_PM_SLEEP */
static
struct
pci_driver
rhine_driver
=
{
static
struct
pci_driver
rhine_driver
=
{
.
name
=
DRV_NAME
,
.
name
=
DRV_NAME
,
.
id_table
=
rhine_pci_tbl
,
.
id_table
=
rhine_pci_tbl
,
.
probe
=
rhine_init_one
,
.
probe
=
rhine_init_one
,
.
remove
=
__devexit_p
(
rhine_remove_one
),
.
remove
=
__devexit_p
(
rhine_remove_one
),
#ifdef CONFIG_PM
.
shutdown
=
rhine_shutdown
,
.
suspend
=
rhine_suspend
,
.
driver
.
pm
=
RHINE_PM_OPS
,
.
resume
=
rhine_resume
,
#endif
/* CONFIG_PM */
.
shutdown
=
rhine_shutdown
,
};
};
static
struct
dmi_system_id
__initdata
rhine_dmi_table
[]
=
{
static
struct
dmi_system_id
__initdata
rhine_dmi_table
[]
=
{
...
...
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