2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 Abstract: rt2x00 generic pci device routines.
26 #include <linux/dma-mapping.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/pci.h>
30 #include <linux/slab.h>
33 #include "rt2x00pci.h"
36 * PCI driver handlers.
38 static void rt2x00pci_free_reg(struct rt2x00_dev
*rt2x00dev
)
43 kfree(rt2x00dev
->eeprom
);
44 rt2x00dev
->eeprom
= NULL
;
46 if (rt2x00dev
->csr
.base
) {
47 iounmap(rt2x00dev
->csr
.base
);
48 rt2x00dev
->csr
.base
= NULL
;
52 static int rt2x00pci_alloc_reg(struct rt2x00_dev
*rt2x00dev
)
54 struct pci_dev
*pci_dev
= to_pci_dev(rt2x00dev
->dev
);
56 rt2x00dev
->csr
.base
= pci_ioremap_bar(pci_dev
, 0);
57 if (!rt2x00dev
->csr
.base
)
60 rt2x00dev
->eeprom
= kzalloc(rt2x00dev
->ops
->eeprom_size
, GFP_KERNEL
);
61 if (!rt2x00dev
->eeprom
)
64 rt2x00dev
->rf
= kzalloc(rt2x00dev
->ops
->rf_size
, GFP_KERNEL
);
71 rt2x00_probe_err("Failed to allocate registers\n");
73 rt2x00pci_free_reg(rt2x00dev
);
78 int rt2x00pci_probe(struct pci_dev
*pci_dev
, const struct rt2x00_ops
*ops
)
80 struct ieee80211_hw
*hw
;
81 struct rt2x00_dev
*rt2x00dev
;
85 retval
= pci_enable_device(pci_dev
);
87 rt2x00_probe_err("Enable device failed\n");
91 retval
= pci_request_regions(pci_dev
, pci_name(pci_dev
));
93 rt2x00_probe_err("PCI request regions failed\n");
94 goto exit_disable_device
;
97 pci_set_master(pci_dev
);
99 if (pci_set_mwi(pci_dev
))
100 rt2x00_probe_err("MWI not available\n");
102 if (dma_set_mask(&pci_dev
->dev
, DMA_BIT_MASK(32))) {
103 rt2x00_probe_err("PCI DMA not supported\n");
105 goto exit_release_regions
;
108 hw
= ieee80211_alloc_hw(sizeof(struct rt2x00_dev
), ops
->hw
);
110 rt2x00_probe_err("Failed to allocate hardware\n");
112 goto exit_release_regions
;
115 pci_set_drvdata(pci_dev
, hw
);
117 rt2x00dev
= hw
->priv
;
118 rt2x00dev
->dev
= &pci_dev
->dev
;
119 rt2x00dev
->ops
= ops
;
121 rt2x00dev
->irq
= pci_dev
->irq
;
122 rt2x00dev
->name
= pci_name(pci_dev
);
124 if (pci_is_pcie(pci_dev
))
125 rt2x00_set_chip_intf(rt2x00dev
, RT2X00_CHIP_INTF_PCIE
);
127 rt2x00_set_chip_intf(rt2x00dev
, RT2X00_CHIP_INTF_PCI
);
129 retval
= rt2x00pci_alloc_reg(rt2x00dev
);
131 goto exit_free_device
;
134 * Because rt3290 chip use different efuse offset to read efuse data.
135 * So before read efuse it need to indicate it is the
138 pci_read_config_word(pci_dev
, PCI_DEVICE_ID
, &chip
);
139 rt2x00dev
->chip
.rt
= chip
;
141 retval
= rt2x00lib_probe_dev(rt2x00dev
);
148 rt2x00pci_free_reg(rt2x00dev
);
151 ieee80211_free_hw(hw
);
153 exit_release_regions
:
154 pci_release_regions(pci_dev
);
157 pci_disable_device(pci_dev
);
159 pci_set_drvdata(pci_dev
, NULL
);
163 EXPORT_SYMBOL_GPL(rt2x00pci_probe
);
165 void rt2x00pci_remove(struct pci_dev
*pci_dev
)
167 struct ieee80211_hw
*hw
= pci_get_drvdata(pci_dev
);
168 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
171 * Free all allocated data.
173 rt2x00lib_remove_dev(rt2x00dev
);
174 rt2x00pci_free_reg(rt2x00dev
);
175 ieee80211_free_hw(hw
);
178 * Free the PCI device data.
180 pci_set_drvdata(pci_dev
, NULL
);
181 pci_disable_device(pci_dev
);
182 pci_release_regions(pci_dev
);
184 EXPORT_SYMBOL_GPL(rt2x00pci_remove
);
187 int rt2x00pci_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
189 struct ieee80211_hw
*hw
= pci_get_drvdata(pci_dev
);
190 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
193 retval
= rt2x00lib_suspend(rt2x00dev
, state
);
197 pci_save_state(pci_dev
);
198 pci_disable_device(pci_dev
);
199 return pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
));
201 EXPORT_SYMBOL_GPL(rt2x00pci_suspend
);
203 int rt2x00pci_resume(struct pci_dev
*pci_dev
)
205 struct ieee80211_hw
*hw
= pci_get_drvdata(pci_dev
);
206 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
208 if (pci_set_power_state(pci_dev
, PCI_D0
) ||
209 pci_enable_device(pci_dev
)) {
210 rt2x00_err(rt2x00dev
, "Failed to resume device\n");
214 pci_restore_state(pci_dev
);
215 return rt2x00lib_resume(rt2x00dev
);
217 EXPORT_SYMBOL_GPL(rt2x00pci_resume
);
218 #endif /* CONFIG_PM */
221 * rt2x00pci module information.
223 MODULE_AUTHOR(DRV_PROJECT
);
224 MODULE_VERSION(DRV_VERSION
);
225 MODULE_DESCRIPTION("rt2x00 pci library");
226 MODULE_LICENSE("GPL");