blob: aec33cc207fdbba47e67a6aa28a52ac19f4bfede [file] [log] [blame]
Felix Fietkaua0b907e2010-12-02 10:27:16 +01001/*
2 * Copyright (c) 2008-2009 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>
Felix Fietkaufa9bfd62011-04-13 21:56:44 +020021#include <linux/etherdevice.h>
Jonathan Bither32b92f42012-04-12 06:13:33 -040022#include <linux/export.h>
Felix Fietkaua0b907e2010-12-02 10:27:16 +010023#include <ar231x_platform.h>
24#include "ath5k.h"
25#include "debug.h"
26#include "base.h"
27#include "reg.h"
Felix Fietkaua0b907e2010-12-02 10:27:16 +010028
29/* return bus cachesize in 4B word units */
30static void ath5k_ahb_read_cachesize(struct ath_common *common, int *csz)
31{
32 *csz = L1_CACHE_BYTES >> 2;
33}
34
Wojciech Dubowikfda9b7a2011-01-11 09:00:31 +010035static bool
36ath5k_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data)
Felix Fietkaua0b907e2010-12-02 10:27:16 +010037{
Pavel Roskine0d687b2011-07-14 20:21:55 -040038 struct ath5k_hw *ah = common->priv;
39 struct platform_device *pdev = to_platform_device(ah->dev);
Felix Fietkaua0b907e2010-12-02 10:27:16 +010040 struct ar231x_board_config *bcfg = pdev->dev.platform_data;
41 u16 *eeprom, *eeprom_end;
42
43
44
45 bcfg = pdev->dev.platform_data;
46 eeprom = (u16 *) bcfg->radio;
47 eeprom_end = ((void *) bcfg->config) + BOARD_CONFIG_BUFSZ;
48
49 eeprom += off;
50 if (eeprom > eeprom_end)
Wojciech Dubowikfda9b7a2011-01-11 09:00:31 +010051 return false;
Felix Fietkaua0b907e2010-12-02 10:27:16 +010052
53 *data = *eeprom;
Wojciech Dubowikfda9b7a2011-01-11 09:00:31 +010054 return true;
Felix Fietkaua0b907e2010-12-02 10:27:16 +010055}
56
57int ath5k_hw_read_srev(struct ath5k_hw *ah)
58{
Pavel Roskine0d687b2011-07-14 20:21:55 -040059 struct platform_device *pdev = to_platform_device(ah->dev);
Felix Fietkaua0b907e2010-12-02 10:27:16 +010060 struct ar231x_board_config *bcfg = pdev->dev.platform_data;
61 ah->ah_mac_srev = bcfg->devid;
62 return 0;
63}
64
Felix Fietkaufa9bfd62011-04-13 21:56:44 +020065static int ath5k_ahb_eeprom_read_mac(struct ath5k_hw *ah, u8 *mac)
66{
Pavel Roskine0d687b2011-07-14 20:21:55 -040067 struct platform_device *pdev = to_platform_device(ah->dev);
Felix Fietkaufa9bfd62011-04-13 21:56:44 +020068 struct ar231x_board_config *bcfg = pdev->dev.platform_data;
69 u8 *cfg_mac;
70
Pavel Roskine0d687b2011-07-14 20:21:55 -040071 if (to_platform_device(ah->dev)->id == 0)
Felix Fietkaufa9bfd62011-04-13 21:56:44 +020072 cfg_mac = bcfg->config->wlan0_mac;
73 else
74 cfg_mac = bcfg->config->wlan1_mac;
75
76 memcpy(mac, cfg_mac, ETH_ALEN);
77 return 0;
78}
79
Felix Fietkaua0b907e2010-12-02 10:27:16 +010080static const struct ath_bus_ops ath_ahb_bus_ops = {
81 .ath_bus_type = ATH_AHB,
82 .read_cachesize = ath5k_ahb_read_cachesize,
83 .eeprom_read = ath5k_ahb_eeprom_read,
Felix Fietkaufa9bfd62011-04-13 21:56:44 +020084 .eeprom_read_mac = ath5k_ahb_eeprom_read_mac,
Felix Fietkaua0b907e2010-12-02 10:27:16 +010085};
86
87/*Initialization*/
88static int ath_ahb_probe(struct platform_device *pdev)
89{
90 struct ar231x_board_config *bcfg = pdev->dev.platform_data;
Pavel Roskine0d687b2011-07-14 20:21:55 -040091 struct ath5k_hw *ah;
Felix Fietkaua0b907e2010-12-02 10:27:16 +010092 struct ieee80211_hw *hw;
93 struct resource *res;
94 void __iomem *mem;
95 int irq;
96 int ret = 0;
97 u32 reg;
98
99 if (!pdev->dev.platform_data) {
100 dev_err(&pdev->dev, "no platform data specified\n");
101 ret = -EINVAL;
102 goto err_out;
103 }
104
105 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
106 if (res == NULL) {
107 dev_err(&pdev->dev, "no memory resource found\n");
108 ret = -ENXIO;
109 goto err_out;
110 }
111
Shan Wei9ac47932011-03-07 15:18:11 +0800112 mem = ioremap_nocache(res->start, resource_size(res));
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100113 if (mem == NULL) {
114 dev_err(&pdev->dev, "ioremap failed\n");
115 ret = -ENOMEM;
116 goto err_out;
117 }
118
119 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
120 if (res == NULL) {
121 dev_err(&pdev->dev, "no IRQ resource found\n");
122 ret = -ENXIO;
Jonathan Bither2db0d2b2012-04-12 07:03:09 -0400123 goto err_iounmap;
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100124 }
125
126 irq = res->start;
127
Pavel Roskine0d687b2011-07-14 20:21:55 -0400128 hw = ieee80211_alloc_hw(sizeof(struct ath5k_hw), &ath5k_hw_ops);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100129 if (hw == NULL) {
130 dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
131 ret = -ENOMEM;
Jonathan Bither2db0d2b2012-04-12 07:03:09 -0400132 goto err_iounmap;
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100133 }
134
Pavel Roskine0d687b2011-07-14 20:21:55 -0400135 ah = hw->priv;
136 ah->hw = hw;
137 ah->dev = &pdev->dev;
138 ah->iobase = mem;
139 ah->irq = irq;
140 ah->devid = bcfg->devid;
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100141
142 if (bcfg->devid >= AR5K_SREV_AR2315_R6) {
143 /* Enable WMAC AHB arbitration */
Jonathan Bithercede8b62012-02-13 21:47:45 -0500144 reg = ioread32((void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100145 reg |= AR5K_AR2315_AHB_ARB_CTL_WLAN;
Jonathan Bithercede8b62012-02-13 21:47:45 -0500146 iowrite32(reg, (void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100147
148 /* Enable global WMAC swapping */
Jonathan Bithercede8b62012-02-13 21:47:45 -0500149 reg = ioread32((void __iomem *) AR5K_AR2315_BYTESWAP);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100150 reg |= AR5K_AR2315_BYTESWAP_WMAC;
Jonathan Bithercede8b62012-02-13 21:47:45 -0500151 iowrite32(reg, (void __iomem *) AR5K_AR2315_BYTESWAP);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100152 } else {
153 /* Enable WMAC DMA access (assuming 5312 or 231x*/
154 /* TODO: check other platforms */
Jonathan Bithercede8b62012-02-13 21:47:45 -0500155 reg = ioread32((void __iomem *) AR5K_AR5312_ENABLE);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400156 if (to_platform_device(ah->dev)->id == 0)
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100157 reg |= AR5K_AR5312_ENABLE_WLAN0;
158 else
159 reg |= AR5K_AR5312_ENABLE_WLAN1;
Jonathan Bithercede8b62012-02-13 21:47:45 -0500160 iowrite32(reg, (void __iomem *) AR5K_AR5312_ENABLE);
Felix Fietkau3a9ddde2011-04-13 21:56:46 +0200161
162 /*
163 * On a dual-band AR5312, the multiband radio is only
164 * used as pass-through. Disable 2 GHz support in the
165 * driver for it
166 */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400167 if (to_platform_device(ah->dev)->id == 0 &&
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400168 (bcfg->config->flags & (BD_WLAN0 | BD_WLAN1)) ==
169 (BD_WLAN1 | BD_WLAN0))
Nick Kossifidis86f62d92011-11-25 20:40:28 +0200170 ah->ah_capabilities.cap_needs_2GHz_ovr = true;
171 else
172 ah->ah_capabilities.cap_needs_2GHz_ovr = false;
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100173 }
174
Pavel Roskinbb1f3ad2011-07-26 22:27:05 -0400175 ret = ath5k_init_ah(ah, &ath_ahb_bus_ops);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100176 if (ret != 0) {
177 dev_err(&pdev->dev, "failed to attach device, err=%d\n", ret);
178 ret = -ENODEV;
179 goto err_free_hw;
180 }
181
182 platform_set_drvdata(pdev, hw);
183
184 return 0;
185
186 err_free_hw:
187 ieee80211_free_hw(hw);
188 platform_set_drvdata(pdev, NULL);
Jonathan Bither2db0d2b2012-04-12 07:03:09 -0400189 err_iounmap:
190 iounmap(mem);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100191 err_out:
192 return ret;
193}
194
195static int ath_ahb_remove(struct platform_device *pdev)
196{
197 struct ar231x_board_config *bcfg = pdev->dev.platform_data;
198 struct ieee80211_hw *hw = platform_get_drvdata(pdev);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400199 struct ath5k_hw *ah;
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100200 u32 reg;
201
202 if (!hw)
203 return 0;
204
Pavel Roskine0d687b2011-07-14 20:21:55 -0400205 ah = hw->priv;
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100206
207 if (bcfg->devid >= AR5K_SREV_AR2315_R6) {
208 /* Disable WMAC AHB arbitration */
Jonathan Bithercede8b62012-02-13 21:47:45 -0500209 reg = ioread32((void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100210 reg &= ~AR5K_AR2315_AHB_ARB_CTL_WLAN;
Jonathan Bithercede8b62012-02-13 21:47:45 -0500211 iowrite32(reg, (void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100212 } else {
213 /*Stop DMA access */
Jonathan Bithercede8b62012-02-13 21:47:45 -0500214 reg = ioread32((void __iomem *) AR5K_AR5312_ENABLE);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400215 if (to_platform_device(ah->dev)->id == 0)
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100216 reg &= ~AR5K_AR5312_ENABLE_WLAN0;
217 else
218 reg &= ~AR5K_AR5312_ENABLE_WLAN1;
Jonathan Bithercede8b62012-02-13 21:47:45 -0500219 iowrite32(reg, (void __iomem *) AR5K_AR5312_ENABLE);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100220 }
221
Pavel Roskinbb1f3ad2011-07-26 22:27:05 -0400222 ath5k_deinit_ah(ah);
Jonathan Bither3708dc22012-04-24 05:20:15 -0400223 iounmap(ah->iobase);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100224 platform_set_drvdata(pdev, NULL);
Pavel Roskin536e5182011-06-17 17:59:02 -0400225 ieee80211_free_hw(hw);
Felix Fietkaua0b907e2010-12-02 10:27:16 +0100226
227 return 0;
228}
229
230static struct platform_driver ath_ahb_driver = {
231 .probe = ath_ahb_probe,
232 .remove = ath_ahb_remove,
233 .driver = {
234 .name = "ar231x-wmac",
235 .owner = THIS_MODULE,
236 },
237};
238
239static int __init
240ath5k_ahb_init(void)
241{
242 return platform_driver_register(&ath_ahb_driver);
243}
244
245static void __exit
246ath5k_ahb_exit(void)
247{
248 platform_driver_unregister(&ath_ahb_driver);
249}
250
251module_init(ath5k_ahb_init);
252module_exit(ath5k_ahb_exit);