1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
19#include <linux/nl80211.h>
20#include <linux/pci.h>
21#include <linux/pci-aspm.h>
22#include <linux/etherdevice.h>
23#include <linux/module.h>
24#include "../ath.h"
25#include "ath5k.h"
26#include "debug.h"
27#include "base.h"
28#include "reg.h"
29
30
31static const struct pci_device_id ath5k_pci_id_table[] = {
32 { PCI_VDEVICE(ATHEROS, 0x0207) },
33 { PCI_VDEVICE(ATHEROS, 0x0007) },
34 { PCI_VDEVICE(ATHEROS, 0x0011) },
35 { PCI_VDEVICE(ATHEROS, 0x0012) },
36 { PCI_VDEVICE(ATHEROS, 0x0013) },
37 { PCI_VDEVICE(3COM_2, 0x0013) },
38 { PCI_VDEVICE(3COM, 0x0013) },
39 { PCI_VDEVICE(ATHEROS, 0x1014) },
40 { PCI_VDEVICE(ATHEROS, 0x0014) },
41 { PCI_VDEVICE(ATHEROS, 0x0015) },
42 { PCI_VDEVICE(ATHEROS, 0x0016) },
43 { PCI_VDEVICE(ATHEROS, 0x0017) },
44 { PCI_VDEVICE(ATHEROS, 0x0018) },
45 { PCI_VDEVICE(ATHEROS, 0x0019) },
46 { PCI_VDEVICE(ATHEROS, 0x001a) },
47 { PCI_VDEVICE(ATHEROS, 0x001b) },
48 { PCI_VDEVICE(ATHEROS, 0x001c) },
49 { PCI_VDEVICE(ATHEROS, 0x001d) },
50 { PCI_VDEVICE(ATHEROS, 0xff1b) },
51 { 0 }
52};
53MODULE_DEVICE_TABLE(pci, ath5k_pci_id_table);
54
55
56static void ath5k_pci_read_cachesize(struct ath_common *common, int *csz)
57{
58 struct ath5k_hw *ah = (struct ath5k_hw *) common->priv;
59 u8 u8tmp;
60
61 pci_read_config_byte(ah->pdev, PCI_CACHE_LINE_SIZE, &u8tmp);
62 *csz = (int)u8tmp;
63
64
65
66
67
68
69
70 if (*csz == 0)
71 *csz = L1_CACHE_BYTES >> 2;
72}
73
74
75
76
77static bool
78ath5k_pci_eeprom_read(struct ath_common *common, u32 offset, u16 *data)
79{
80 struct ath5k_hw *ah = (struct ath5k_hw *) common->ah;
81 u32 status, timeout;
82
83
84
85
86 if (ah->ah_version == AR5K_AR5210) {
87 AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, AR5K_PCICFG_EEAE);
88 (void)ath5k_hw_reg_read(ah, AR5K_EEPROM_BASE + (4 * offset));
89 } else {
90 ath5k_hw_reg_write(ah, offset, AR5K_EEPROM_BASE);
91 AR5K_REG_ENABLE_BITS(ah, AR5K_EEPROM_CMD,
92 AR5K_EEPROM_CMD_READ);
93 }
94
95 for (timeout = AR5K_TUNE_REGISTER_TIMEOUT; timeout > 0; timeout--) {
96 status = ath5k_hw_reg_read(ah, AR5K_EEPROM_STATUS);
97 if (status & AR5K_EEPROM_STAT_RDDONE) {
98 if (status & AR5K_EEPROM_STAT_RDERR)
99 return false;
100 *data = (u16)(ath5k_hw_reg_read(ah, AR5K_EEPROM_DATA) &
101 0xffff);
102 return true;
103 }
104 usleep_range(15, 20);
105 }
106
107 return false;
108}
109
110int ath5k_hw_read_srev(struct ath5k_hw *ah)
111{
112 ah->ah_mac_srev = ath5k_hw_reg_read(ah, AR5K_SREV);
113 return 0;
114}
115
116
117
118
119static int ath5k_pci_eeprom_read_mac(struct ath5k_hw *ah, u8 *mac)
120{
121 u8 mac_d[ETH_ALEN] = {};
122 u32 total, offset;
123 u16 data;
124 int octet;
125
126 AR5K_EEPROM_READ(0x20, data);
127
128 for (offset = 0x1f, octet = 0, total = 0; offset >= 0x1d; offset--) {
129 AR5K_EEPROM_READ(offset, data);
130
131 total += data;
132 mac_d[octet + 1] = data & 0xff;
133 mac_d[octet] = data >> 8;
134 octet += 2;
135 }
136
137 if (!total || total == 3 * 0xffff)
138 return -EINVAL;
139
140 memcpy(mac, mac_d, ETH_ALEN);
141
142 return 0;
143}
144
145
146
147static const struct ath_bus_ops ath_pci_bus_ops = {
148 .ath_bus_type = ATH_PCI,
149 .read_cachesize = ath5k_pci_read_cachesize,
150 .eeprom_read = ath5k_pci_eeprom_read,
151 .eeprom_read_mac = ath5k_pci_eeprom_read_mac,
152};
153
154
155
156
157
158static int
159ath5k_pci_probe(struct pci_dev *pdev,
160 const struct pci_device_id *id)
161{
162 void __iomem *mem;
163 struct ath5k_hw *ah;
164 struct ieee80211_hw *hw;
165 int ret;
166 u8 csz;
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S);
187
188 ret = pci_enable_device(pdev);
189 if (ret) {
190 dev_err(&pdev->dev, "can't enable device\n");
191 goto err;
192 }
193
194
195 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
196 if (ret) {
197 dev_err(&pdev->dev, "32-bit DMA not available\n");
198 goto err_dis;
199 }
200
201
202
203
204
205 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
206 if (csz == 0) {
207
208
209
210
211
212
213
214 csz = L1_CACHE_BYTES >> 2;
215 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
216 }
217
218
219
220
221
222 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
223
224
225 pci_set_master(pdev);
226
227
228
229
230
231 pci_write_config_byte(pdev, 0x41, 0);
232
233 ret = pci_request_region(pdev, 0, "ath5k");
234 if (ret) {
235 dev_err(&pdev->dev, "cannot reserve PCI memory region\n");
236 goto err_dis;
237 }
238
239 mem = pci_iomap(pdev, 0, 0);
240 if (!mem) {
241 dev_err(&pdev->dev, "cannot remap PCI memory region\n");
242 ret = -EIO;
243 goto err_reg;
244 }
245
246
247
248
249
250 hw = ieee80211_alloc_hw(sizeof(*ah), &ath5k_hw_ops);
251 if (hw == NULL) {
252 dev_err(&pdev->dev, "cannot allocate ieee80211_hw\n");
253 ret = -ENOMEM;
254 goto err_map;
255 }
256
257 dev_info(&pdev->dev, "registered as '%s'\n", wiphy_name(hw->wiphy));
258
259 ah = hw->priv;
260 ah->hw = hw;
261 ah->pdev = pdev;
262 ah->dev = &pdev->dev;
263 ah->irq = pdev->irq;
264 ah->devid = id->device;
265 ah->iobase = mem;
266
267
268 ret = ath5k_init_ah(ah, &ath_pci_bus_ops);
269 if (ret)
270 goto err_free;
271
272
273 pci_set_drvdata(pdev, hw);
274
275 return 0;
276err_free:
277 ieee80211_free_hw(hw);
278err_map:
279 pci_iounmap(pdev, mem);
280err_reg:
281 pci_release_region(pdev, 0);
282err_dis:
283 pci_disable_device(pdev);
284err:
285 return ret;
286}
287
288static void
289ath5k_pci_remove(struct pci_dev *pdev)
290{
291 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
292 struct ath5k_hw *ah = hw->priv;
293
294 ath5k_deinit_ah(ah);
295 pci_iounmap(pdev, ah->iobase);
296 pci_release_region(pdev, 0);
297 pci_disable_device(pdev);
298 ieee80211_free_hw(hw);
299}
300
301#ifdef CONFIG_PM_SLEEP
302static int ath5k_pci_suspend(struct device *dev)
303{
304 struct pci_dev *pdev = to_pci_dev(dev);
305 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
306 struct ath5k_hw *ah = hw->priv;
307
308 ath5k_led_off(ah);
309 return 0;
310}
311
312static int ath5k_pci_resume(struct device *dev)
313{
314 struct pci_dev *pdev = to_pci_dev(dev);
315 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
316 struct ath5k_hw *ah = hw->priv;
317
318
319
320
321
322
323 pci_write_config_byte(pdev, 0x41, 0);
324
325 ath5k_led_enable(ah);
326 return 0;
327}
328
329static SIMPLE_DEV_PM_OPS(ath5k_pm_ops, ath5k_pci_suspend, ath5k_pci_resume);
330#define ATH5K_PM_OPS (&ath5k_pm_ops)
331#else
332#define ATH5K_PM_OPS NULL
333#endif
334
335static struct pci_driver ath5k_pci_driver = {
336 .name = KBUILD_MODNAME,
337 .id_table = ath5k_pci_id_table,
338 .probe = ath5k_pci_probe,
339 .remove = ath5k_pci_remove,
340 .driver.pm = ATH5K_PM_OPS,
341};
342
343module_pci_driver(ath5k_pci_driver);
344