1 /******************************************************************************
2 * Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved.
4 * This program is distributed in the hope that it will be useful, but WITHOUT
5 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
9 * You should have received a copy of the GNU General Public License along with
10 * this program; if not, write to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
13 * The full GNU General Public License is included in this distribution in the
14 * file called LICENSE.
16 * Contact Information:
17 * wlanfae <wlanfae@realtek.com>
18 ******************************************************************************/
22 #include "r8192E_hw.h"
23 #include "r8190P_rtl8256.h"
26 int rtl8192E_save_state(struct pci_dev
*dev
, pm_message_t state
)
28 printk(KERN_NOTICE
"r8192E save state call (state %u).\n", state
.event
);
33 int rtl8192E_suspend(struct pci_dev
*pdev
, pm_message_t state
)
35 struct net_device
*dev
= pci_get_drvdata(pdev
);
36 struct r8192_priv
*priv
= rtllib_priv(dev
);
39 printk(KERN_INFO
"============> r8192E suspend call.\n");
40 del_timer_sync(&priv
->gpio_polling_timer
);
41 cancel_delayed_work(&priv
->gpio_change_rf_wq
);
42 priv
->polling_timer_on
= 0;
44 if (!netif_running(dev
)) {
45 printk(KERN_INFO
"RTL819XE:UI is open out of suspend "
50 if (dev
->netdev_ops
->ndo_stop
)
51 dev
->netdev_ops
->ndo_stop(dev
);
52 netif_device_detach(dev
);
54 if (!priv
->rtllib
->bSupportRemoteWakeUp
) {
55 MgntActSet_RF_State(dev
, eRfOff
, RF_CHANGE_BY_INIT
, true);
56 ulRegRead
= read_nic_dword(dev
, CPU_GEN
);
57 ulRegRead
|= CPU_GEN_SYSTEM_RESET
;
58 write_nic_dword(dev
, CPU_GEN
, ulRegRead
);
60 write_nic_dword(dev
, WFCRC0
, 0xffffffff);
61 write_nic_dword(dev
, WFCRC1
, 0xffffffff);
62 write_nic_dword(dev
, WFCRC2
, 0xffffffff);
63 write_nic_byte(dev
, PMR
, 0x5);
64 write_nic_byte(dev
, MacBlkCtrl
, 0xa);
67 printk("r8192E support WOL call??????????????????????\n");
68 if (priv
->rtllib
->bSupportRemoteWakeUp
)
69 RT_TRACE(COMP_POWER
, "r8192E support WOL call!!!!!!!"
72 pci_disable_device(pdev
);
73 pci_enable_wake(pdev
, pci_choose_state(pdev
, state
),
74 priv
->rtllib
->bSupportRemoteWakeUp
? 1 : 0);
75 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
82 int rtl8192E_resume(struct pci_dev
*pdev
)
84 struct net_device
*dev
= pci_get_drvdata(pdev
);
85 struct r8192_priv
*priv
= rtllib_priv(dev
);
89 printk(KERN_INFO
"================>r8192E resume call.\n");
91 pci_set_power_state(pdev
, PCI_D0
);
93 err
= pci_enable_device(pdev
);
95 printk(KERN_ERR
"%s: pci_enable_device failed on resume\n",
99 pci_restore_state(pdev
);
101 pci_read_config_dword(pdev
, 0x40, &val
);
102 if ((val
& 0x0000ff00) != 0)
103 pci_write_config_dword(pdev
, 0x40, val
& 0xffff00ff);
105 pci_enable_wake(pdev
, PCI_D0
, 0);
107 if (priv
->polling_timer_on
== 0)
108 check_rfctrl_gpio_timer((unsigned long)dev
);
110 if (!netif_running(dev
)) {
111 printk(KERN_INFO
"RTL819XE:UI is open out of resume "
116 netif_device_attach(dev
);
117 if (dev
->netdev_ops
->ndo_open
)
118 dev
->netdev_ops
->ndo_open(dev
);
120 if (!priv
->rtllib
->bSupportRemoteWakeUp
)
121 MgntActSet_RF_State(dev
, eRfOn
, RF_CHANGE_BY_INIT
, true);
124 RT_TRACE(COMP_POWER
, "<================r8192E resume call.\n");
129 int rtl8192E_enable_wake(struct pci_dev
*dev
, pm_message_t state
, int enable
)
131 printk(KERN_NOTICE
"r8192E enable wake call (state %u, enable %d).\n",
132 state
.event
, enable
);