2019-05-19 15:51:43 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2007-09-25 17:57:13 -07:00
|
|
|
/*
|
2009-11-08 16:39:55 +01:00
|
|
|
Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
|
2007-09-25 17:57:13 -07:00
|
|
|
<http://rt2x00.serialmonkey.com>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Module: rt2x00pci
|
|
|
|
Abstract: rt2x00 generic pci device routines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pci.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 17:04:11 +09:00
|
|
|
#include <linux/slab.h>
|
2007-09-25 17:57:13 -07:00
|
|
|
|
|
|
|
#include "rt2x00.h"
|
|
|
|
#include "rt2x00pci.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PCI driver handlers.
|
|
|
|
*/
|
|
|
|
static void rt2x00pci_free_reg(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
kfree(rt2x00dev->rf);
|
|
|
|
rt2x00dev->rf = NULL;
|
|
|
|
|
|
|
|
kfree(rt2x00dev->eeprom);
|
|
|
|
rt2x00dev->eeprom = NULL;
|
|
|
|
|
2008-02-10 22:49:13 +01:00
|
|
|
if (rt2x00dev->csr.base) {
|
|
|
|
iounmap(rt2x00dev->csr.base);
|
|
|
|
rt2x00dev->csr.base = NULL;
|
2007-09-25 17:57:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rt2x00pci_alloc_reg(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
2008-06-16 19:55:43 +02:00
|
|
|
struct pci_dev *pci_dev = to_pci_dev(rt2x00dev->dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
|
2008-10-20 21:42:39 -07:00
|
|
|
rt2x00dev->csr.base = pci_ioremap_bar(pci_dev, 0);
|
2008-02-10 22:49:13 +01:00
|
|
|
if (!rt2x00dev->csr.base)
|
2007-09-25 17:57:13 -07:00
|
|
|
goto exit;
|
|
|
|
|
|
|
|
rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
|
|
|
|
if (!rt2x00dev->eeprom)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
|
|
|
|
if (!rt2x00dev->rf)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
exit:
|
2013-04-19 08:33:40 -07:00
|
|
|
rt2x00_probe_err("Failed to allocate registers\n");
|
2007-09-25 17:57:13 -07:00
|
|
|
|
|
|
|
rt2x00pci_free_reg(rt2x00dev);
|
|
|
|
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2011-04-18 15:32:13 +02:00
|
|
|
int rt2x00pci_probe(struct pci_dev *pci_dev, const struct rt2x00_ops *ops)
|
2007-09-25 17:57:13 -07:00
|
|
|
{
|
|
|
|
struct ieee80211_hw *hw;
|
|
|
|
struct rt2x00_dev *rt2x00dev;
|
|
|
|
int retval;
|
2012-06-13 15:01:16 +08:00
|
|
|
u16 chip;
|
2007-09-25 17:57:13 -07:00
|
|
|
|
2010-08-03 19:43:22 +04:00
|
|
|
retval = pci_enable_device(pci_dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
if (retval) {
|
2013-04-19 08:33:40 -07:00
|
|
|
rt2x00_probe_err("Enable device failed\n");
|
2007-09-25 17:57:13 -07:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2010-08-03 19:43:22 +04:00
|
|
|
retval = pci_request_regions(pci_dev, pci_name(pci_dev));
|
2007-09-25 17:57:13 -07:00
|
|
|
if (retval) {
|
2013-04-19 08:33:40 -07:00
|
|
|
rt2x00_probe_err("PCI request regions failed\n");
|
2010-08-03 19:43:22 +04:00
|
|
|
goto exit_disable_device;
|
2007-09-25 17:57:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pci_set_master(pci_dev);
|
|
|
|
|
|
|
|
if (pci_set_mwi(pci_dev))
|
2013-04-19 08:33:40 -07:00
|
|
|
rt2x00_probe_err("MWI not available\n");
|
2007-09-25 17:57:13 -07:00
|
|
|
|
2009-04-06 19:01:15 -07:00
|
|
|
if (dma_set_mask(&pci_dev->dev, DMA_BIT_MASK(32))) {
|
2013-04-19 08:33:40 -07:00
|
|
|
rt2x00_probe_err("PCI DMA not supported\n");
|
2007-09-25 17:57:13 -07:00
|
|
|
retval = -EIO;
|
2010-08-03 19:43:22 +04:00
|
|
|
goto exit_release_regions;
|
2007-09-25 17:57:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
|
|
|
|
if (!hw) {
|
2013-04-19 08:33:40 -07:00
|
|
|
rt2x00_probe_err("Failed to allocate hardware\n");
|
2007-09-25 17:57:13 -07:00
|
|
|
retval = -ENOMEM;
|
2013-09-23 04:08:13 +02:00
|
|
|
goto exit_release_regions;
|
2007-09-25 17:57:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pci_set_drvdata(pci_dev, hw);
|
|
|
|
|
|
|
|
rt2x00dev = hw->priv;
|
2008-06-16 19:55:43 +02:00
|
|
|
rt2x00dev->dev = &pci_dev->dev;
|
2007-09-25 17:57:13 -07:00
|
|
|
rt2x00dev->ops = ops;
|
|
|
|
rt2x00dev->hw = hw;
|
2009-03-28 20:51:24 +01:00
|
|
|
rt2x00dev->irq = pci_dev->irq;
|
2013-10-02 00:40:46 +04:00
|
|
|
rt2x00dev->name = ops->name;
|
2009-03-28 20:51:24 +01:00
|
|
|
|
2010-12-21 02:01:53 +01:00
|
|
|
if (pci_is_pcie(pci_dev))
|
2010-06-03 10:52:00 +02:00
|
|
|
rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCIE);
|
|
|
|
else
|
|
|
|
rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI);
|
2009-11-08 12:30:14 +01:00
|
|
|
|
2007-09-25 17:57:13 -07:00
|
|
|
retval = rt2x00pci_alloc_reg(rt2x00dev);
|
|
|
|
if (retval)
|
|
|
|
goto exit_free_device;
|
|
|
|
|
2012-06-13 15:01:16 +08:00
|
|
|
/*
|
|
|
|
* Because rt3290 chip use different efuse offset to read efuse data.
|
|
|
|
* So before read efuse it need to indicate it is the
|
|
|
|
* rt3290 or not.
|
|
|
|
*/
|
|
|
|
pci_read_config_word(pci_dev, PCI_DEVICE_ID, &chip);
|
|
|
|
rt2x00dev->chip.rt = chip;
|
|
|
|
|
2007-09-25 17:57:13 -07:00
|
|
|
retval = rt2x00lib_probe_dev(rt2x00dev);
|
|
|
|
if (retval)
|
|
|
|
goto exit_free_reg;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
exit_free_reg:
|
|
|
|
rt2x00pci_free_reg(rt2x00dev);
|
|
|
|
|
|
|
|
exit_free_device:
|
|
|
|
ieee80211_free_hw(hw);
|
|
|
|
|
|
|
|
exit_release_regions:
|
2016-01-04 15:55:38 +08:00
|
|
|
pci_clear_mwi(pci_dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
pci_release_regions(pci_dev);
|
|
|
|
|
2010-08-03 19:43:22 +04:00
|
|
|
exit_disable_device:
|
|
|
|
pci_disable_device(pci_dev);
|
|
|
|
|
2007-09-25 17:57:13 -07:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00pci_probe);
|
|
|
|
|
|
|
|
void rt2x00pci_remove(struct pci_dev *pci_dev)
|
|
|
|
{
|
|
|
|
struct ieee80211_hw *hw = pci_get_drvdata(pci_dev);
|
|
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free all allocated data.
|
|
|
|
*/
|
|
|
|
rt2x00lib_remove_dev(rt2x00dev);
|
|
|
|
rt2x00pci_free_reg(rt2x00dev);
|
|
|
|
ieee80211_free_hw(hw);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the PCI device data.
|
|
|
|
*/
|
2016-01-04 15:55:38 +08:00
|
|
|
pci_clear_mwi(pci_dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
pci_disable_device(pci_dev);
|
|
|
|
pci_release_regions(pci_dev);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00pci_remove);
|
|
|
|
|
rt2x00: pci: use generic power management
Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.
With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.
The callbacks make use of PCI helper functions like
pci_save/restore_state(), pci_enable/disable_device() and
pci_set_power_state() to do required operations. In generic mode, they are
no longer needed.
Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.
The .suspend() callback is invoking rt2x00lib_suspend() which needs to be
modified as generic rt2x00pci_suspend() has no pm_message_t type argument,
passed to it, which is required by it according to its declaration.
Although this variable remained unused in the function body. Hence, remove
it from the function definition & declaration.
rt2x00lib_suspend() is also invoked by rt2x00usb_suspend() and
rt2x00soc_suspend(). Thus, modify the functional call accordingly in their
function body.
Earlier, .suspend() & .resume() were exported and were used by the
following drivers:
- drivers/net/wireless/ralink/rt2x00/rt2400pci.c
- drivers/net/wireless/ralink/rt2x00/rt2500pci.c
- drivers/net/wireless/ralink/rt2x00/rt2800pci.c
- drivers/net/wireless/ralink/rt2x00/rt61pci.c
Now, we only need to bind "struct dev_pm_ops" variable to
"struct pci_driver". Thus, make the callbacks static. Declare an
"extern const struct dev_pm_ops" variable and bind PM callbacks to it. Now,
export the variable instead and use it in respective drivers.
Compile-tested only.
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200717110928.454867-1-vaibhavgupta40@gmail.com
2020-07-17 16:39:29 +05:30
|
|
|
static int __maybe_unused rt2x00pci_suspend(struct device *dev)
|
2007-09-25 17:57:13 -07:00
|
|
|
{
|
rt2x00: pci: use generic power management
Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.
With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.
The callbacks make use of PCI helper functions like
pci_save/restore_state(), pci_enable/disable_device() and
pci_set_power_state() to do required operations. In generic mode, they are
no longer needed.
Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.
The .suspend() callback is invoking rt2x00lib_suspend() which needs to be
modified as generic rt2x00pci_suspend() has no pm_message_t type argument,
passed to it, which is required by it according to its declaration.
Although this variable remained unused in the function body. Hence, remove
it from the function definition & declaration.
rt2x00lib_suspend() is also invoked by rt2x00usb_suspend() and
rt2x00soc_suspend(). Thus, modify the functional call accordingly in their
function body.
Earlier, .suspend() & .resume() were exported and were used by the
following drivers:
- drivers/net/wireless/ralink/rt2x00/rt2400pci.c
- drivers/net/wireless/ralink/rt2x00/rt2500pci.c
- drivers/net/wireless/ralink/rt2x00/rt2800pci.c
- drivers/net/wireless/ralink/rt2x00/rt61pci.c
Now, we only need to bind "struct dev_pm_ops" variable to
"struct pci_driver". Thus, make the callbacks static. Declare an
"extern const struct dev_pm_ops" variable and bind PM callbacks to it. Now,
export the variable instead and use it in respective drivers.
Compile-tested only.
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200717110928.454867-1-vaibhavgupta40@gmail.com
2020-07-17 16:39:29 +05:30
|
|
|
struct ieee80211_hw *hw = dev_get_drvdata(dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
|
rt2x00: pci: use generic power management
Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.
With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.
The callbacks make use of PCI helper functions like
pci_save/restore_state(), pci_enable/disable_device() and
pci_set_power_state() to do required operations. In generic mode, they are
no longer needed.
Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.
The .suspend() callback is invoking rt2x00lib_suspend() which needs to be
modified as generic rt2x00pci_suspend() has no pm_message_t type argument,
passed to it, which is required by it according to its declaration.
Although this variable remained unused in the function body. Hence, remove
it from the function definition & declaration.
rt2x00lib_suspend() is also invoked by rt2x00usb_suspend() and
rt2x00soc_suspend(). Thus, modify the functional call accordingly in their
function body.
Earlier, .suspend() & .resume() were exported and were used by the
following drivers:
- drivers/net/wireless/ralink/rt2x00/rt2400pci.c
- drivers/net/wireless/ralink/rt2x00/rt2500pci.c
- drivers/net/wireless/ralink/rt2x00/rt2800pci.c
- drivers/net/wireless/ralink/rt2x00/rt61pci.c
Now, we only need to bind "struct dev_pm_ops" variable to
"struct pci_driver". Thus, make the callbacks static. Declare an
"extern const struct dev_pm_ops" variable and bind PM callbacks to it. Now,
export the variable instead and use it in respective drivers.
Compile-tested only.
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200717110928.454867-1-vaibhavgupta40@gmail.com
2020-07-17 16:39:29 +05:30
|
|
|
return rt2x00lib_suspend(rt2x00dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
}
|
|
|
|
|
rt2x00: pci: use generic power management
Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.
With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.
The callbacks make use of PCI helper functions like
pci_save/restore_state(), pci_enable/disable_device() and
pci_set_power_state() to do required operations. In generic mode, they are
no longer needed.
Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.
The .suspend() callback is invoking rt2x00lib_suspend() which needs to be
modified as generic rt2x00pci_suspend() has no pm_message_t type argument,
passed to it, which is required by it according to its declaration.
Although this variable remained unused in the function body. Hence, remove
it from the function definition & declaration.
rt2x00lib_suspend() is also invoked by rt2x00usb_suspend() and
rt2x00soc_suspend(). Thus, modify the functional call accordingly in their
function body.
Earlier, .suspend() & .resume() were exported and were used by the
following drivers:
- drivers/net/wireless/ralink/rt2x00/rt2400pci.c
- drivers/net/wireless/ralink/rt2x00/rt2500pci.c
- drivers/net/wireless/ralink/rt2x00/rt2800pci.c
- drivers/net/wireless/ralink/rt2x00/rt61pci.c
Now, we only need to bind "struct dev_pm_ops" variable to
"struct pci_driver". Thus, make the callbacks static. Declare an
"extern const struct dev_pm_ops" variable and bind PM callbacks to it. Now,
export the variable instead and use it in respective drivers.
Compile-tested only.
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200717110928.454867-1-vaibhavgupta40@gmail.com
2020-07-17 16:39:29 +05:30
|
|
|
static int __maybe_unused rt2x00pci_resume(struct device *dev)
|
2007-09-25 17:57:13 -07:00
|
|
|
{
|
rt2x00: pci: use generic power management
Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.
With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.
The callbacks make use of PCI helper functions like
pci_save/restore_state(), pci_enable/disable_device() and
pci_set_power_state() to do required operations. In generic mode, they are
no longer needed.
Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.
The .suspend() callback is invoking rt2x00lib_suspend() which needs to be
modified as generic rt2x00pci_suspend() has no pm_message_t type argument,
passed to it, which is required by it according to its declaration.
Although this variable remained unused in the function body. Hence, remove
it from the function definition & declaration.
rt2x00lib_suspend() is also invoked by rt2x00usb_suspend() and
rt2x00soc_suspend(). Thus, modify the functional call accordingly in their
function body.
Earlier, .suspend() & .resume() were exported and were used by the
following drivers:
- drivers/net/wireless/ralink/rt2x00/rt2400pci.c
- drivers/net/wireless/ralink/rt2x00/rt2500pci.c
- drivers/net/wireless/ralink/rt2x00/rt2800pci.c
- drivers/net/wireless/ralink/rt2x00/rt61pci.c
Now, we only need to bind "struct dev_pm_ops" variable to
"struct pci_driver". Thus, make the callbacks static. Declare an
"extern const struct dev_pm_ops" variable and bind PM callbacks to it. Now,
export the variable instead and use it in respective drivers.
Compile-tested only.
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200717110928.454867-1-vaibhavgupta40@gmail.com
2020-07-17 16:39:29 +05:30
|
|
|
struct ieee80211_hw *hw = dev_get_drvdata(dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
|
2009-03-28 20:51:58 +01:00
|
|
|
return rt2x00lib_resume(rt2x00dev);
|
2007-09-25 17:57:13 -07:00
|
|
|
}
|
rt2x00: pci: use generic power management
Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.
With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.
The callbacks make use of PCI helper functions like
pci_save/restore_state(), pci_enable/disable_device() and
pci_set_power_state() to do required operations. In generic mode, they are
no longer needed.
Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.
The .suspend() callback is invoking rt2x00lib_suspend() which needs to be
modified as generic rt2x00pci_suspend() has no pm_message_t type argument,
passed to it, which is required by it according to its declaration.
Although this variable remained unused in the function body. Hence, remove
it from the function definition & declaration.
rt2x00lib_suspend() is also invoked by rt2x00usb_suspend() and
rt2x00soc_suspend(). Thus, modify the functional call accordingly in their
function body.
Earlier, .suspend() & .resume() were exported and were used by the
following drivers:
- drivers/net/wireless/ralink/rt2x00/rt2400pci.c
- drivers/net/wireless/ralink/rt2x00/rt2500pci.c
- drivers/net/wireless/ralink/rt2x00/rt2800pci.c
- drivers/net/wireless/ralink/rt2x00/rt61pci.c
Now, we only need to bind "struct dev_pm_ops" variable to
"struct pci_driver". Thus, make the callbacks static. Declare an
"extern const struct dev_pm_ops" variable and bind PM callbacks to it. Now,
export the variable instead and use it in respective drivers.
Compile-tested only.
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200717110928.454867-1-vaibhavgupta40@gmail.com
2020-07-17 16:39:29 +05:30
|
|
|
|
|
|
|
SIMPLE_DEV_PM_OPS(rt2x00pci_pm_ops, rt2x00pci_suspend, rt2x00pci_resume);
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00pci_pm_ops);
|
2007-09-25 17:57:13 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rt2x00pci module information.
|
|
|
|
*/
|
|
|
|
MODULE_AUTHOR(DRV_PROJECT);
|
|
|
|
MODULE_VERSION(DRV_VERSION);
|
2008-02-05 16:42:23 -05:00
|
|
|
MODULE_DESCRIPTION("rt2x00 pci library");
|
2007-09-25 17:57:13 -07:00
|
|
|
MODULE_LICENSE("GPL");
|