blob: bc562bd8889092a3a7afe2d4cb2111674dcb610e [file] [log] [blame]
Gabor Juhos09329d32009-01-14 20:17:07 +01001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 * Copyright (c) 2009 Gabor Juhos <juhosg@openwrt.org>
4 * Copyright (c) 2009 Imre Kaloz <kaloz@openwrt.org>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#include <linux/nl80211.h>
20#include <linux/platform_device.h>
Gabor Juhos9dbeb912009-01-14 20:17:08 +010021#include <linux/ath9k_platform.h>
Sujith394cf0a2009-02-09 13:26:54 +053022#include "ath9k.h"
Gabor Juhos09329d32009-01-14 20:17:07 +010023
24/* return bus cachesize in 4B word units */
25static void ath_ahb_read_cachesize(struct ath_softc *sc, int *csz)
26{
27 *csz = L1_CACHE_BYTES >> 2;
28}
29
30static void ath_ahb_cleanup(struct ath_softc *sc)
31{
32 iounmap(sc->mem);
33}
34
Sujithcbe61d82009-02-09 13:27:12 +053035static bool ath_ahb_eeprom_read(struct ath_hw *ah, u32 off, u16 *data)
Gabor Juhos9dbeb912009-01-14 20:17:08 +010036{
37 struct ath_softc *sc = ah->ah_sc;
38 struct platform_device *pdev = to_platform_device(sc->dev);
39 struct ath9k_platform_data *pdata;
40
41 pdata = (struct ath9k_platform_data *) pdev->dev.platform_data;
42 if (off >= (ARRAY_SIZE(pdata->eeprom_data))) {
43 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
44 "%s: flash read failed, offset %08x is out of range\n",
45 __func__, off);
46 return false;
47 }
48
49 *data = pdata->eeprom_data[off];
50 return true;
51}
52
Gabor Juhos09329d32009-01-14 20:17:07 +010053static struct ath_bus_ops ath_ahb_bus_ops = {
54 .read_cachesize = ath_ahb_read_cachesize,
55 .cleanup = ath_ahb_cleanup,
Gabor Juhos9dbeb912009-01-14 20:17:08 +010056
57 .eeprom_read = ath_ahb_eeprom_read,
Gabor Juhos09329d32009-01-14 20:17:07 +010058};
59
60static int ath_ahb_probe(struct platform_device *pdev)
61{
62 void __iomem *mem;
63 struct ath_softc *sc;
64 struct ieee80211_hw *hw;
65 struct resource *res;
66 int irq;
67 int ret = 0;
Sujithcbe61d82009-02-09 13:27:12 +053068 struct ath_hw *ah;
Gabor Juhos09329d32009-01-14 20:17:07 +010069
Gabor Juhos9dbeb912009-01-14 20:17:08 +010070 if (!pdev->dev.platform_data) {
71 dev_err(&pdev->dev, "no platform data specified\n");
72 ret = -EINVAL;
73 goto err_out;
74 }
75
Gabor Juhos09329d32009-01-14 20:17:07 +010076 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
77 if (res == NULL) {
78 dev_err(&pdev->dev, "no memory resource found\n");
79 ret = -ENXIO;
80 goto err_out;
81 }
82
83 mem = ioremap_nocache(res->start, res->end - res->start + 1);
84 if (mem == NULL) {
85 dev_err(&pdev->dev, "ioremap failed\n");
86 ret = -ENOMEM;
87 goto err_out;
88 }
89
90 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
91 if (res == NULL) {
92 dev_err(&pdev->dev, "no IRQ resource found\n");
93 ret = -ENXIO;
94 goto err_iounmap;
95 }
96
97 irq = res->start;
98
Jouni Malinenbce048d2009-03-03 19:23:28 +020099 hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy) +
100 sizeof(struct ath_softc), &ath9k_ops);
Gabor Juhos09329d32009-01-14 20:17:07 +0100101 if (hw == NULL) {
102 dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
103 ret = -ENOMEM;
104 goto err_iounmap;
105 }
106
107 SET_IEEE80211_DEV(hw, &pdev->dev);
108 platform_set_drvdata(pdev, hw);
109
Jouni Malinenbce048d2009-03-03 19:23:28 +0200110 aphy = hw->priv;
111 sc = (struct ath_softc *) (aphy + 1);
112 aphy->sc = sc;
113 aphy->hw = hw;
114 sc->pri_wiphy = aphy;
Gabor Juhos09329d32009-01-14 20:17:07 +0100115 sc->hw = hw;
116 sc->dev = &pdev->dev;
117 sc->mem = mem;
118 sc->bus_ops = &ath_ahb_bus_ops;
119 sc->irq = irq;
120
121 ret = ath_attach(AR5416_AR9100_DEVID, sc);
122 if (ret != 0) {
123 dev_err(&pdev->dev, "failed to attach device, err=%d\n", ret);
124 ret = -ENODEV;
125 goto err_free_hw;
126 }
127
128 ret = request_irq(irq, ath_isr, IRQF_SHARED, "ath9k", sc);
129 if (ret) {
130 dev_err(&pdev->dev, "request_irq failed, err=%d\n", ret);
131 ret = -EIO;
132 goto err_detach;
133 }
134
135 ah = sc->sc_ah;
136 printk(KERN_INFO
137 "%s: Atheros AR%s MAC/BB Rev:%x, "
138 "AR%s RF Rev:%x, mem=0x%lx, irq=%d\n",
139 wiphy_name(hw->wiphy),
Sujithd535a422009-02-09 13:27:06 +0530140 ath_mac_bb_name(ah->hw_version.macVersion),
141 ah->hw_version.macRev,
142 ath_rf_name((ah->hw_version.analog5GhzRev & AR_RADIO_SREV_MAJOR)),
143 ah->hw_version.phyRev,
Gabor Juhos09329d32009-01-14 20:17:07 +0100144 (unsigned long)mem, irq);
145
146 return 0;
147
148 err_detach:
149 ath_detach(sc);
150 err_free_hw:
151 ieee80211_free_hw(hw);
152 platform_set_drvdata(pdev, NULL);
153 err_iounmap:
154 iounmap(mem);
155 err_out:
156 return ret;
157}
158
159static int ath_ahb_remove(struct platform_device *pdev)
160{
161 struct ieee80211_hw *hw = platform_get_drvdata(pdev);
162
163 if (hw) {
Jouni Malinenbce048d2009-03-03 19:23:28 +0200164 struct ath_wiphy *aphy = hw->priv;
165 struct ath_softc *sc = aphy->sc;
Gabor Juhos09329d32009-01-14 20:17:07 +0100166
167 ath_cleanup(sc);
168 platform_set_drvdata(pdev, NULL);
169 }
170
171 return 0;
172}
173
174static struct platform_driver ath_ahb_driver = {
175 .probe = ath_ahb_probe,
176 .remove = ath_ahb_remove,
177 .driver = {
178 .name = "ath9k",
179 .owner = THIS_MODULE,
180 },
181};
182
183int ath_ahb_init(void)
184{
185 return platform_driver_register(&ath_ahb_driver);
186}
187
188void ath_ahb_exit(void)
189{
190 platform_driver_unregister(&ath_ahb_driver);
191}