ath9k: propagate errors on ath_init_device() and request_irq()
[deliverable/linux.git] / drivers / net / wireless / ath / ath9k / pci.c
CommitLineData
6baff7f9 1/*
cee075a2 2 * Copyright (c) 2008-2009 Atheros Communications Inc.
6baff7f9
GJ
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/nl80211.h>
18#include <linux/pci.h>
394cf0a1 19#include "ath9k.h"
6baff7f9
GJ
20
21static struct pci_device_id ath_pci_id_table[] __devinitdata = {
22 { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */
23 { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */
24 { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */
25 { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */
26 { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */
27 { PCI_VDEVICE(ATHEROS, 0x002B) }, /* PCI-E */
ac88b6ec
VN
28 { PCI_VDEVICE(ATHEROS, 0x002D) }, /* PCI */
29 { PCI_VDEVICE(ATHEROS, 0x002E) }, /* PCI-E */
6baff7f9
GJ
30 { 0 }
31};
32
33/* return bus cachesize in 4B word units */
34static void ath_pci_read_cachesize(struct ath_softc *sc, int *csz)
35{
36 u8 u8tmp;
37
38 pci_read_config_byte(to_pci_dev(sc->dev), PCI_CACHE_LINE_SIZE,
39 (u8 *)&u8tmp);
40 *csz = (int)u8tmp;
41
42 /*
43 * This check was put in to avoid "unplesant" consequences if
44 * the bootrom has not fully initialized all PCI devices.
45 * Sometimes the cache line size register is not set
46 */
47
48 if (*csz == 0)
49 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
50}
51
52static void ath_pci_cleanup(struct ath_softc *sc)
53{
54 struct pci_dev *pdev = to_pci_dev(sc->dev);
55
56 pci_iounmap(pdev, sc->mem);
6baff7f9 57 pci_disable_device(pdev);
db0f41f5 58 pci_release_region(pdev, 0);
6baff7f9
GJ
59}
60
cbe61d8a 61static bool ath_pci_eeprom_read(struct ath_hw *ah, u32 off, u16 *data)
9dbeb91a
GJ
62{
63 (void)REG_READ(ah, AR5416_EEPROM_OFFSET + (off << AR5416_EEPROM_S));
64
65 if (!ath9k_hw_wait(ah,
66 AR_EEPROM_STATUS_DATA,
67 AR_EEPROM_STATUS_DATA_BUSY |
0caa7b14
S
68 AR_EEPROM_STATUS_DATA_PROT_ACCESS, 0,
69 AH_WAIT_TIMEOUT)) {
9dbeb91a
GJ
70 return false;
71 }
72
73 *data = MS(REG_READ(ah, AR_EEPROM_STATUS_DATA),
74 AR_EEPROM_STATUS_DATA_VAL);
75
76 return true;
77}
78
6baff7f9
GJ
79static struct ath_bus_ops ath_pci_bus_ops = {
80 .read_cachesize = ath_pci_read_cachesize,
81 .cleanup = ath_pci_cleanup,
9dbeb91a 82 .eeprom_read = ath_pci_eeprom_read,
6baff7f9
GJ
83};
84
85static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
86{
87 void __iomem *mem;
bce048d7 88 struct ath_wiphy *aphy;
6baff7f9
GJ
89 struct ath_softc *sc;
90 struct ieee80211_hw *hw;
91 u8 csz;
f0214843 92 u32 val;
6baff7f9 93 int ret = 0;
cbe61d8a 94 struct ath_hw *ah;
6baff7f9
GJ
95
96 if (pci_enable_device(pdev))
97 return -EIO;
98
e930438c 99 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6baff7f9
GJ
100
101 if (ret) {
102 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
103 goto bad;
104 }
105
e930438c 106 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6baff7f9
GJ
107
108 if (ret) {
109 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
110 "DMA enable failed\n");
111 goto bad;
112 }
113
114 /*
115 * Cache line size is used to size and align various
116 * structures used to communicate with the hardware.
117 */
118 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
119 if (csz == 0) {
120 /*
121 * Linux 2.4.18 (at least) writes the cache line size
122 * register as a 16-bit wide register which is wrong.
123 * We must have this setup properly for rx buffer
124 * DMA to work so force a reasonable value here if it
125 * comes up zero.
126 */
127 csz = L1_CACHE_BYTES / sizeof(u32);
128 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
129 }
130 /*
131 * The default setting of latency timer yields poor results,
132 * set it to the value used by other systems. It may be worth
133 * tweaking this setting more.
134 */
135 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
136
137 pci_set_master(pdev);
138
f0214843
JM
139 /*
140 * Disable the RETRY_TIMEOUT register (0x41) to keep
141 * PCI Tx retries from interfering with C3 CPU state.
142 */
143 pci_read_config_dword(pdev, 0x40, &val);
144 if ((val & 0x0000ff00) != 0)
145 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
146
6baff7f9
GJ
147 ret = pci_request_region(pdev, 0, "ath9k");
148 if (ret) {
149 dev_err(&pdev->dev, "PCI memory region reserve error\n");
150 ret = -ENODEV;
151 goto bad;
152 }
153
154 mem = pci_iomap(pdev, 0, 0);
155 if (!mem) {
156 printk(KERN_ERR "PCI memory map error\n") ;
157 ret = -EIO;
158 goto bad1;
159 }
160
bce048d7
JM
161 hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy) +
162 sizeof(struct ath_softc), &ath9k_ops);
db6be53c
LR
163 if (!hw) {
164 dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
165 ret = -ENOMEM;
6baff7f9
GJ
166 goto bad2;
167 }
168
169 SET_IEEE80211_DEV(hw, &pdev->dev);
170 pci_set_drvdata(pdev, hw);
171
bce048d7
JM
172 aphy = hw->priv;
173 sc = (struct ath_softc *) (aphy + 1);
174 aphy->sc = sc;
175 aphy->hw = hw;
176 sc->pri_wiphy = aphy;
6baff7f9
GJ
177 sc->hw = hw;
178 sc->dev = &pdev->dev;
179 sc->mem = mem;
180 sc->bus_ops = &ath_pci_bus_ops;
181
580171f7
LR
182 ret = ath_init_device(id->device, sc);
183 if (ret) {
184 dev_err(&pdev->dev, "failed to initialize device\n");
6baff7f9
GJ
185 goto bad3;
186 }
187
188 /* setup interrupt service routine */
189
580171f7
LR
190 ret = request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc);
191 if (ret) {
192 dev_err(&pdev->dev, "request_irq failed\n");
6baff7f9
GJ
193 goto bad4;
194 }
195
196 sc->irq = pdev->irq;
197
198 ah = sc->sc_ah;
199 printk(KERN_INFO
200 "%s: Atheros AR%s MAC/BB Rev:%x "
201 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
202 wiphy_name(hw->wiphy),
d535a42a
S
203 ath_mac_bb_name(ah->hw_version.macVersion),
204 ah->hw_version.macRev,
205 ath_rf_name((ah->hw_version.analog5GhzRev & AR_RADIO_SREV_MAJOR)),
206 ah->hw_version.phyRev,
6baff7f9
GJ
207 (unsigned long)mem, pdev->irq);
208
209 return 0;
210bad4:
211 ath_detach(sc);
212bad3:
213 ieee80211_free_hw(hw);
214bad2:
215 pci_iounmap(pdev, mem);
216bad1:
217 pci_release_region(pdev, 0);
218bad:
219 pci_disable_device(pdev);
220 return ret;
221}
222
223static void ath_pci_remove(struct pci_dev *pdev)
224{
225 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
bce048d7
JM
226 struct ath_wiphy *aphy = hw->priv;
227 struct ath_softc *sc = aphy->sc;
6baff7f9
GJ
228
229 ath_cleanup(sc);
230}
231
232#ifdef CONFIG_PM
233
234static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
235{
236 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
bce048d7
JM
237 struct ath_wiphy *aphy = hw->priv;
238 struct ath_softc *sc = aphy->sc;
6baff7f9 239
08fc5c1b 240 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
6baff7f9 241
6baff7f9
GJ
242 pci_save_state(pdev);
243 pci_disable_device(pdev);
244 pci_set_power_state(pdev, PCI_D3hot);
245
246 return 0;
247}
248
249static int ath_pci_resume(struct pci_dev *pdev)
250{
251 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
bce048d7
JM
252 struct ath_wiphy *aphy = hw->priv;
253 struct ath_softc *sc = aphy->sc;
f0214843 254 u32 val;
6baff7f9
GJ
255 int err;
256
523c36fc
S
257 pci_restore_state(pdev);
258
6baff7f9
GJ
259 err = pci_enable_device(pdev);
260 if (err)
261 return err;
523c36fc 262
f0214843
JM
263 /*
264 * Suspend/Resume resets the PCI configuration space, so we have to
265 * re-disable the RETRY_TIMEOUT register (0x41) to keep
266 * PCI Tx retries from interfering with C3 CPU state
267 */
268 pci_read_config_dword(pdev, 0x40, &val);
269 if ((val & 0x0000ff00) != 0)
270 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
6baff7f9
GJ
271
272 /* Enable LED */
08fc5c1b 273 ath9k_hw_cfg_output(sc->sc_ah, sc->sc_ah->led_pin,
6baff7f9 274 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
08fc5c1b 275 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
6baff7f9 276
6baff7f9
GJ
277 return 0;
278}
279
280#endif /* CONFIG_PM */
281
282MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
283
284static struct pci_driver ath_pci_driver = {
285 .name = "ath9k",
286 .id_table = ath_pci_id_table,
287 .probe = ath_pci_probe,
288 .remove = ath_pci_remove,
289#ifdef CONFIG_PM
290 .suspend = ath_pci_suspend,
291 .resume = ath_pci_resume,
292#endif /* CONFIG_PM */
293};
294
db0f41f5 295int ath_pci_init(void)
6baff7f9
GJ
296{
297 return pci_register_driver(&ath_pci_driver);
298}
299
300void ath_pci_exit(void)
301{
302 pci_unregister_driver(&ath_pci_driver);
303}
This page took 0.152476 seconds and 5 git commands to generate.