blob: 8b288141d4c145c836b35dbd893f5c42a6a9e16a [file] [log] [blame]
Gabor Juhos6baff7f2009-01-14 20:17:06 +01001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Gabor Juhos6baff7f2009-01-14 20:17:06 +01003 *
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>
Sujith394cf0a2009-02-09 13:26:54 +053019#include "ath9k.h"
Gabor Juhos6baff7f2009-01-14 20:17:06 +010020
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 */
Vivek Natarajanac88b6e2009-07-23 10:59:57 +053028 { PCI_VDEVICE(ATHEROS, 0x002D) }, /* PCI */
29 { PCI_VDEVICE(ATHEROS, 0x002E) }, /* PCI-E */
Gabor Juhos6baff7f2009-01-14 20:17:06 +010030 { 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
Vasanthakumar Thiagarajanf0209792009-09-07 17:46:50 +053038 pci_read_config_byte(to_pci_dev(sc->dev), PCI_CACHE_LINE_SIZE, &u8tmp);
Gabor Juhos6baff7f2009-01-14 20:17:06 +010039 *csz = (int)u8tmp;
40
41 /*
42 * This check was put in to avoid "unplesant" consequences if
43 * the bootrom has not fully initialized all PCI devices.
44 * Sometimes the cache line size register is not set
45 */
46
47 if (*csz == 0)
48 *csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
49}
50
51static void ath_pci_cleanup(struct ath_softc *sc)
52{
53 struct pci_dev *pdev = to_pci_dev(sc->dev);
54
55 pci_iounmap(pdev, sc->mem);
Gabor Juhos6baff7f2009-01-14 20:17:06 +010056 pci_disable_device(pdev);
Sujithdb0f41f2009-02-20 15:13:26 +053057 pci_release_region(pdev, 0);
Gabor Juhos6baff7f2009-01-14 20:17:06 +010058}
59
Sujithcbe61d82009-02-09 13:27:12 +053060static bool ath_pci_eeprom_read(struct ath_hw *ah, u32 off, u16 *data)
Gabor Juhos9dbeb912009-01-14 20:17:08 +010061{
62 (void)REG_READ(ah, AR5416_EEPROM_OFFSET + (off << AR5416_EEPROM_S));
63
64 if (!ath9k_hw_wait(ah,
65 AR_EEPROM_STATUS_DATA,
66 AR_EEPROM_STATUS_DATA_BUSY |
Sujith0caa7b12009-02-16 13:23:20 +053067 AR_EEPROM_STATUS_DATA_PROT_ACCESS, 0,
68 AH_WAIT_TIMEOUT)) {
Gabor Juhos9dbeb912009-01-14 20:17:08 +010069 return false;
70 }
71
72 *data = MS(REG_READ(ah, AR_EEPROM_STATUS_DATA),
73 AR_EEPROM_STATUS_DATA_VAL);
74
75 return true;
76}
77
Gabor Juhos6baff7f2009-01-14 20:17:06 +010078static struct ath_bus_ops ath_pci_bus_ops = {
79 .read_cachesize = ath_pci_read_cachesize,
80 .cleanup = ath_pci_cleanup,
Gabor Juhos9dbeb912009-01-14 20:17:08 +010081 .eeprom_read = ath_pci_eeprom_read,
Gabor Juhos6baff7f2009-01-14 20:17:06 +010082};
83
84static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
85{
86 void __iomem *mem;
Jouni Malinenbce048d2009-03-03 19:23:28 +020087 struct ath_wiphy *aphy;
Gabor Juhos6baff7f2009-01-14 20:17:06 +010088 struct ath_softc *sc;
89 struct ieee80211_hw *hw;
90 u8 csz;
Jouni Malinenf0214842009-06-16 11:59:23 +030091 u32 val;
Gabor Juhos6baff7f2009-01-14 20:17:06 +010092 int ret = 0;
Sujithcbe61d82009-02-09 13:27:12 +053093 struct ath_hw *ah;
Gabor Juhos6baff7f2009-01-14 20:17:06 +010094
95 if (pci_enable_device(pdev))
96 return -EIO;
97
Yang Hongyange9304382009-04-13 14:40:14 -070098 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Gabor Juhos6baff7f2009-01-14 20:17:06 +010099
100 if (ret) {
101 printk(KERN_ERR "ath9k: 32-bit DMA not available\n");
102 goto bad;
103 }
104
Yang Hongyange9304382009-04-13 14:40:14 -0700105 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100106
107 if (ret) {
108 printk(KERN_ERR "ath9k: 32-bit DMA consistent "
109 "DMA enable failed\n");
110 goto bad;
111 }
112
113 /*
114 * Cache line size is used to size and align various
115 * structures used to communicate with the hardware.
116 */
117 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz);
118 if (csz == 0) {
119 /*
120 * Linux 2.4.18 (at least) writes the cache line size
121 * register as a 16-bit wide register which is wrong.
122 * We must have this setup properly for rx buffer
123 * DMA to work so force a reasonable value here if it
124 * comes up zero.
125 */
126 csz = L1_CACHE_BYTES / sizeof(u32);
127 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
128 }
129 /*
130 * The default setting of latency timer yields poor results,
131 * set it to the value used by other systems. It may be worth
132 * tweaking this setting more.
133 */
134 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8);
135
136 pci_set_master(pdev);
137
Jouni Malinenf0214842009-06-16 11:59:23 +0300138 /*
139 * Disable the RETRY_TIMEOUT register (0x41) to keep
140 * PCI Tx retries from interfering with C3 CPU state.
141 */
142 pci_read_config_dword(pdev, 0x40, &val);
143 if ((val & 0x0000ff00) != 0)
144 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
145
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100146 ret = pci_request_region(pdev, 0, "ath9k");
147 if (ret) {
148 dev_err(&pdev->dev, "PCI memory region reserve error\n");
149 ret = -ENODEV;
150 goto bad;
151 }
152
153 mem = pci_iomap(pdev, 0, 0);
154 if (!mem) {
155 printk(KERN_ERR "PCI memory map error\n") ;
156 ret = -EIO;
157 goto bad1;
158 }
159
Jouni Malinenbce048d2009-03-03 19:23:28 +0200160 hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy) +
161 sizeof(struct ath_softc), &ath9k_ops);
Luis R. Rodriguezdb6be532009-09-02 16:34:57 -0700162 if (!hw) {
163 dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
164 ret = -ENOMEM;
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100165 goto bad2;
166 }
167
168 SET_IEEE80211_DEV(hw, &pdev->dev);
169 pci_set_drvdata(pdev, hw);
170
Jouni Malinenbce048d2009-03-03 19:23:28 +0200171 aphy = hw->priv;
172 sc = (struct ath_softc *) (aphy + 1);
173 aphy->sc = sc;
174 aphy->hw = hw;
175 sc->pri_wiphy = aphy;
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100176 sc->hw = hw;
177 sc->dev = &pdev->dev;
178 sc->mem = mem;
179 sc->bus_ops = &ath_pci_bus_ops;
180
Luis R. Rodriguez580171f2009-09-02 17:02:18 -0700181 ret = ath_init_device(id->device, sc);
182 if (ret) {
183 dev_err(&pdev->dev, "failed to initialize device\n");
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100184 goto bad3;
185 }
186
187 /* setup interrupt service routine */
188
Luis R. Rodriguezfc548af2009-09-02 17:06:21 -0700189 ret = request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath9k", sc);
Luis R. Rodriguez580171f2009-09-02 17:02:18 -0700190 if (ret) {
191 dev_err(&pdev->dev, "request_irq failed\n");
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100192 goto bad4;
193 }
194
195 sc->irq = pdev->irq;
196
197 ah = sc->sc_ah;
198 printk(KERN_INFO
199 "%s: Atheros AR%s MAC/BB Rev:%x "
200 "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
201 wiphy_name(hw->wiphy),
Sujithd535a422009-02-09 13:27:06 +0530202 ath_mac_bb_name(ah->hw_version.macVersion),
203 ah->hw_version.macRev,
204 ath_rf_name((ah->hw_version.analog5GhzRev & AR_RADIO_SREV_MAJOR)),
205 ah->hw_version.phyRev,
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100206 (unsigned long)mem, pdev->irq);
207
208 return 0;
209bad4:
210 ath_detach(sc);
211bad3:
212 ieee80211_free_hw(hw);
213bad2:
214 pci_iounmap(pdev, mem);
215bad1:
216 pci_release_region(pdev, 0);
217bad:
218 pci_disable_device(pdev);
219 return ret;
220}
221
222static void ath_pci_remove(struct pci_dev *pdev)
223{
224 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
Jouni Malinenbce048d2009-03-03 19:23:28 +0200225 struct ath_wiphy *aphy = hw->priv;
226 struct ath_softc *sc = aphy->sc;
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100227
228 ath_cleanup(sc);
229}
230
231#ifdef CONFIG_PM
232
233static int ath_pci_suspend(struct pci_dev *pdev, pm_message_t state)
234{
235 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
Jouni Malinenbce048d2009-03-03 19:23:28 +0200236 struct ath_wiphy *aphy = hw->priv;
237 struct ath_softc *sc = aphy->sc;
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100238
Vivek Natarajan08fc5c12009-08-14 11:30:52 +0530239 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100240
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100241 pci_save_state(pdev);
242 pci_disable_device(pdev);
243 pci_set_power_state(pdev, PCI_D3hot);
244
245 return 0;
246}
247
248static int ath_pci_resume(struct pci_dev *pdev)
249{
250 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
Jouni Malinenbce048d2009-03-03 19:23:28 +0200251 struct ath_wiphy *aphy = hw->priv;
252 struct ath_softc *sc = aphy->sc;
Jouni Malinenf0214842009-06-16 11:59:23 +0300253 u32 val;
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100254 int err;
255
Sujith523c36f2009-08-13 09:34:35 +0530256 pci_restore_state(pdev);
257
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100258 err = pci_enable_device(pdev);
259 if (err)
260 return err;
Sujith523c36f2009-08-13 09:34:35 +0530261
Jouni Malinenf0214842009-06-16 11:59:23 +0300262 /*
263 * Suspend/Resume resets the PCI configuration space, so we have to
264 * re-disable the RETRY_TIMEOUT register (0x41) to keep
265 * PCI Tx retries from interfering with C3 CPU state
266 */
267 pci_read_config_dword(pdev, 0x40, &val);
268 if ((val & 0x0000ff00) != 0)
269 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100270
271 /* Enable LED */
Vivek Natarajan08fc5c12009-08-14 11:30:52 +0530272 ath9k_hw_cfg_output(sc->sc_ah, sc->sc_ah->led_pin,
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100273 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Vivek Natarajan08fc5c12009-08-14 11:30:52 +0530274 ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1);
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100275
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100276 return 0;
277}
278
279#endif /* CONFIG_PM */
280
281MODULE_DEVICE_TABLE(pci, ath_pci_id_table);
282
283static struct pci_driver ath_pci_driver = {
284 .name = "ath9k",
285 .id_table = ath_pci_id_table,
286 .probe = ath_pci_probe,
287 .remove = ath_pci_remove,
288#ifdef CONFIG_PM
289 .suspend = ath_pci_suspend,
290 .resume = ath_pci_resume,
291#endif /* CONFIG_PM */
292};
293
Sujithdb0f41f2009-02-20 15:13:26 +0530294int ath_pci_init(void)
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100295{
296 return pci_register_driver(&ath_pci_driver);
297}
298
299void ath_pci_exit(void)
300{
301 pci_unregister_driver(&ath_pci_driver);
302}