blob: 242a4bc46b88e6a30255d5be17562109017f41de [file] [log] [blame]
Michael Wuf6532112007-10-14 14:43:16 -04001
2/*
3 * Linux device driver for RTL8180 / RTL8185
4 *
5 * Copyright 2007 Michael Wu <flamingice@sourmilk.net>
Andrea Merello93ba2a82013-08-26 13:53:30 +02006 * Copyright 2007 Andrea Merello <andrea.merello@gmail.com>
Michael Wuf6532112007-10-14 14:43:16 -04007 *
8 * Based on the r8180 driver, which is:
Andrea Merello93ba2a82013-08-26 13:53:30 +02009 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
Michael Wuf6532112007-10-14 14:43:16 -040010 *
11 * Thanks to Realtek for their support!
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 */
17
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000018#include <linux/interrupt.h>
Michael Wuf6532112007-10-14 14:43:16 -040019#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Michael Wuf6532112007-10-14 14:43:16 -040021#include <linux/delay.h>
22#include <linux/etherdevice.h>
23#include <linux/eeprom_93cx6.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040024#include <linux/module.h>
Michael Wuf6532112007-10-14 14:43:16 -040025#include <net/mac80211.h>
26
27#include "rtl8180.h"
John W. Linville3cfeb0c2010-12-20 15:16:53 -050028#include "rtl8225.h"
29#include "sa2400.h"
30#include "max2820.h"
31#include "grf5101.h"
Michael Wuf6532112007-10-14 14:43:16 -040032
33MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
Andrea Merello93ba2a82013-08-26 13:53:30 +020034MODULE_AUTHOR("Andrea Merello <andrea.merello@gmail.com>");
Michael Wuf6532112007-10-14 14:43:16 -040035MODULE_DESCRIPTION("RTL8180 / RTL8185 PCI wireless driver");
36MODULE_LICENSE("GPL");
37
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000038static DEFINE_PCI_DEVICE_TABLE(rtl8180_table) = {
Michael Wuf6532112007-10-14 14:43:16 -040039 /* rtl8185 */
40 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8185) },
Adrian Bassett4fcc5472008-01-23 16:38:33 +000041 { PCI_DEVICE(PCI_VENDOR_ID_BELKIN, 0x700f) },
Michael Wuf6532112007-10-14 14:43:16 -040042 { PCI_DEVICE(PCI_VENDOR_ID_BELKIN, 0x701f) },
43
44 /* rtl8180 */
45 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8180) },
46 { PCI_DEVICE(0x1799, 0x6001) },
47 { PCI_DEVICE(0x1799, 0x6020) },
48 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x3300) },
Xose Vazquez Perez29a6b502012-06-15 17:27:05 +020049 { PCI_DEVICE(0x1186, 0x3301) },
50 { PCI_DEVICE(0x1432, 0x7106) },
Michael Wuf6532112007-10-14 14:43:16 -040051 { }
52};
53
54MODULE_DEVICE_TABLE(pci, rtl8180_table);
55
Johannes Berg8318d782008-01-24 19:38:38 +010056static const struct ieee80211_rate rtl818x_rates[] = {
57 { .bitrate = 10, .hw_value = 0, },
58 { .bitrate = 20, .hw_value = 1, },
59 { .bitrate = 55, .hw_value = 2, },
60 { .bitrate = 110, .hw_value = 3, },
61 { .bitrate = 60, .hw_value = 4, },
62 { .bitrate = 90, .hw_value = 5, },
63 { .bitrate = 120, .hw_value = 6, },
64 { .bitrate = 180, .hw_value = 7, },
65 { .bitrate = 240, .hw_value = 8, },
66 { .bitrate = 360, .hw_value = 9, },
67 { .bitrate = 480, .hw_value = 10, },
68 { .bitrate = 540, .hw_value = 11, },
69};
70
71static const struct ieee80211_channel rtl818x_channels[] = {
72 { .center_freq = 2412 },
73 { .center_freq = 2417 },
74 { .center_freq = 2422 },
75 { .center_freq = 2427 },
76 { .center_freq = 2432 },
77 { .center_freq = 2437 },
78 { .center_freq = 2442 },
79 { .center_freq = 2447 },
80 { .center_freq = 2452 },
81 { .center_freq = 2457 },
82 { .center_freq = 2462 },
83 { .center_freq = 2467 },
84 { .center_freq = 2472 },
85 { .center_freq = 2484 },
86};
87
Andrea Merellofd6564f2014-03-22 18:51:20 +010088/* Queues for rtl8180/rtl8185 cards
89 *
90 * name | reg | prio
91 * BC | 7 | 3
92 * HI | 6 | 0
93 * NO | 5 | 1
94 * LO | 4 | 2
95 *
96 * The complete map for DMA kick reg using all queue is:
97 * static const int rtl8180_queues_map[RTL8180_NR_TX_QUEUES] = {6, 5, 4, 7};
98 *
99 * .. but .. Because the mac80211 needs at least 4 queues for QoS or
100 * otherwise QoS can't be done, we use just one.
101 * Beacon queue could be used, but this is not finished yet.
102 * Actual map is:
103 *
104 * name | reg | prio
105 * BC | 7 | 1 <- currently not used yet.
106 * HI | 6 | x <- not used
107 * NO | 5 | x <- not used
108 * LO | 4 | 0 <- used
109 */
110
111static const int rtl8180_queues_map[RTL8180_NR_TX_QUEUES] = {4, 7};
Johannes Berg8318d782008-01-24 19:38:38 +0100112
Michael Wuf6532112007-10-14 14:43:16 -0400113void rtl8180_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data)
114{
115 struct rtl8180_priv *priv = dev->priv;
116 int i = 10;
117 u32 buf;
118
119 buf = (data << 8) | addr;
120
121 rtl818x_iowrite32(priv, (__le32 __iomem *)&priv->map->PHY[0], buf | 0x80);
122 while (i--) {
123 rtl818x_iowrite32(priv, (__le32 __iomem *)&priv->map->PHY[0], buf);
124 if (rtl818x_ioread8(priv, &priv->map->PHY[2]) == (data & 0xFF))
125 return;
126 }
127}
128
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400129static void rtl8180_handle_rx(struct ieee80211_hw *dev)
Michael Wuf6532112007-10-14 14:43:16 -0400130{
131 struct rtl8180_priv *priv = dev->priv;
Andrea Merello21025922014-03-26 20:59:52 +0100132 struct rtl818x_rx_cmd_desc *cmd_desc;
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400133 unsigned int count = 32;
John W. Linville8b73fb82010-07-21 16:26:40 -0400134 u8 signal, agc, sq;
andrea.merello2b4db052014-02-05 22:38:05 +0100135 dma_addr_t mapping;
Michael Wuf6532112007-10-14 14:43:16 -0400136
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400137 while (count--) {
Andrea Merello21025922014-03-26 20:59:52 +0100138 void *entry = priv->rx_ring + priv->rx_idx * priv->rx_ring_sz;
Michael Wuf6532112007-10-14 14:43:16 -0400139 struct sk_buff *skb = priv->rx_buf[priv->rx_idx];
Andrea Merello21025922014-03-26 20:59:52 +0100140 u32 flags, flags2;
141 u64 tsft;
142
143 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8187SE) {
144 struct rtl8187se_rx_desc *desc = entry;
145
146 flags = le32_to_cpu(desc->flags);
147 flags2 = le32_to_cpu(desc->flags2);
148 tsft = le64_to_cpu(desc->tsft);
149 } else {
150 struct rtl8180_rx_desc *desc = entry;
151
152 flags = le32_to_cpu(desc->flags);
153 flags2 = le32_to_cpu(desc->flags2);
154 tsft = le64_to_cpu(desc->tsft);
155 }
Michael Wuf6532112007-10-14 14:43:16 -0400156
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300157 if (flags & RTL818X_RX_DESC_FLAG_OWN)
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400158 return;
Michael Wuf6532112007-10-14 14:43:16 -0400159
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300160 if (unlikely(flags & (RTL818X_RX_DESC_FLAG_DMA_FAIL |
161 RTL818X_RX_DESC_FLAG_FOF |
162 RTL818X_RX_DESC_FLAG_RX_ERR)))
Michael Wuf6532112007-10-14 14:43:16 -0400163 goto done;
164 else {
Michael Wuf6532112007-10-14 14:43:16 -0400165 struct ieee80211_rx_status rx_status = {0};
166 struct sk_buff *new_skb = dev_alloc_skb(MAX_RX_SIZE);
167
168 if (unlikely(!new_skb))
169 goto done;
170
andrea.merello2b4db052014-02-05 22:38:05 +0100171 mapping = pci_map_single(priv->pdev,
172 skb_tail_pointer(new_skb),
173 MAX_RX_SIZE, PCI_DMA_FROMDEVICE);
174
175 if (pci_dma_mapping_error(priv->pdev, mapping)) {
176 kfree_skb(new_skb);
177 dev_err(&priv->pdev->dev, "RX DMA map error\n");
178
179 goto done;
180 }
181
Michael Wuf6532112007-10-14 14:43:16 -0400182 pci_unmap_single(priv->pdev,
183 *((dma_addr_t *)skb->cb),
184 MAX_RX_SIZE, PCI_DMA_FROMDEVICE);
185 skb_put(skb, flags & 0xFFF);
186
187 rx_status.antenna = (flags2 >> 15) & 1;
Johannes Berg8318d782008-01-24 19:38:38 +0100188 rx_status.rate_idx = (flags >> 20) & 0xF;
John W. Linville8b73fb82010-07-21 16:26:40 -0400189 agc = (flags2 >> 17) & 0x7F;
Andrea Merello6caefd12014-03-08 18:36:37 +0100190
191 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8185) {
John W. Linville8b73fb82010-07-21 16:26:40 -0400192 if (rx_status.rate_idx > 3)
193 signal = 90 - clamp_t(u8, agc, 25, 90);
194 else
195 signal = 95 - clamp_t(u8, agc, 30, 95);
Andrea Merello21025922014-03-26 20:59:52 +0100196 } else if (priv->chip_family ==
197 RTL818X_CHIP_FAMILY_RTL8180) {
John W. Linville8b73fb82010-07-21 16:26:40 -0400198 sq = flags2 & 0xff;
199 signal = priv->rf->calc_rssi(agc, sq);
Andrea Merello21025922014-03-26 20:59:52 +0100200 } else {
201 /* TODO: rtl8187se rssi */
202 signal = 10;
John W. Linville8b73fb82010-07-21 16:26:40 -0400203 }
John W. Linville8b749642010-07-19 16:35:20 -0400204 rx_status.signal = signal;
Karl Beldan675a0b02013-03-25 16:26:57 +0100205 rx_status.freq = dev->conf.chandef.chan->center_freq;
206 rx_status.band = dev->conf.chandef.chan->band;
Andrea Merello21025922014-03-26 20:59:52 +0100207 rx_status.mactime = tsft;
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800208 rx_status.flag |= RX_FLAG_MACTIME_START;
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300209 if (flags & RTL818X_RX_DESC_FLAG_CRC32_ERR)
Michael Wuf6532112007-10-14 14:43:16 -0400210 rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
211
Johannes Bergf1d58c22009-06-17 13:13:00 +0200212 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400213 ieee80211_rx_irqsafe(dev, skb);
Michael Wuf6532112007-10-14 14:43:16 -0400214
215 skb = new_skb;
216 priv->rx_buf[priv->rx_idx] = skb;
andrea.merello2b4db052014-02-05 22:38:05 +0100217 *((dma_addr_t *) skb->cb) = mapping;
Michael Wuf6532112007-10-14 14:43:16 -0400218 }
219
220 done:
Andrea Merello21025922014-03-26 20:59:52 +0100221 cmd_desc = entry;
222 cmd_desc->rx_buf = cpu_to_le32(*((dma_addr_t *)skb->cb));
223 cmd_desc->flags = cpu_to_le32(RTL818X_RX_DESC_FLAG_OWN |
Michael Wuf6532112007-10-14 14:43:16 -0400224 MAX_RX_SIZE);
225 if (priv->rx_idx == 31)
Andrea Merello21025922014-03-26 20:59:52 +0100226 cmd_desc->flags |=
227 cpu_to_le32(RTL818X_RX_DESC_FLAG_EOR);
Michael Wuf6532112007-10-14 14:43:16 -0400228 priv->rx_idx = (priv->rx_idx + 1) % 32;
229 }
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400230}
Michael Wuf6532112007-10-14 14:43:16 -0400231
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400232static void rtl8180_handle_tx(struct ieee80211_hw *dev, unsigned int prio)
233{
234 struct rtl8180_priv *priv = dev->priv;
235 struct rtl8180_tx_ring *ring = &priv->tx_ring[prio];
Michael Wuf6532112007-10-14 14:43:16 -0400236
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400237 while (skb_queue_len(&ring->queue)) {
238 struct rtl8180_tx_desc *entry = &ring->desc[ring->idx];
239 struct sk_buff *skb;
240 struct ieee80211_tx_info *info;
241 u32 flags = le32_to_cpu(entry->flags);
242
243 if (flags & RTL818X_TX_DESC_FLAG_OWN)
244 return;
245
246 ring->idx = (ring->idx + 1) % ring->entries;
247 skb = __skb_dequeue(&ring->queue);
248 pci_unmap_single(priv->pdev, le32_to_cpu(entry->tx_buf),
249 skb->len, PCI_DMA_TODEVICE);
250
251 info = IEEE80211_SKB_CB(skb);
252 ieee80211_tx_info_clear_status(info);
253
254 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK) &&
255 (flags & RTL818X_TX_DESC_FLAG_TX_OK))
256 info->flags |= IEEE80211_TX_STAT_ACK;
257
258 info->status.rates[0].count = (flags & 0xFF) + 1;
259 info->status.rates[1].idx = -1;
260
261 ieee80211_tx_status_irqsafe(dev, skb);
262 if (ring->entries - skb_queue_len(&ring->queue) == 2)
263 ieee80211_wake_queue(dev, prio);
Michael Wuf6532112007-10-14 14:43:16 -0400264 }
265}
266
Andrea Merelloa373ebc2014-03-26 21:00:06 +0100267static irqreturn_t rtl8187se_interrupt(int irq, void *dev_id)
268{
269 struct ieee80211_hw *dev = dev_id;
270 struct rtl8180_priv *priv = dev->priv;
271 u32 reg;
272 unsigned long flags;
273 static int desc_err;
274
275 spin_lock_irqsave(&priv->lock, flags);
276 /* Note: 32-bit interrupt status */
277 reg = rtl818x_ioread32(priv, &priv->map->INT_STATUS_SE);
278 if (unlikely(reg == 0xFFFFFFFF)) {
279 spin_unlock_irqrestore(&priv->lock, flags);
280 return IRQ_HANDLED;
281 }
282
283 rtl818x_iowrite32(priv, &priv->map->INT_STATUS_SE, reg);
284
285 if (reg & IMR_TIMEOUT1)
286 rtl818x_iowrite32(priv, &priv->map->INT_TIMEOUT, 0);
287
288 if (reg & (IMR_TBDOK | IMR_TBDER))
289 rtl8180_handle_tx(dev, 4);
290
291 if (reg & (IMR_TVODOK | IMR_TVODER))
292 rtl8180_handle_tx(dev, 0);
293
294 if (reg & (IMR_TVIDOK | IMR_TVIDER))
295 rtl8180_handle_tx(dev, 1);
296
297 if (reg & (IMR_TBEDOK | IMR_TBEDER))
298 rtl8180_handle_tx(dev, 2);
299
300 if (reg & (IMR_TBKDOK | IMR_TBKDER))
301 rtl8180_handle_tx(dev, 3);
302
303 if (reg & (IMR_ROK | IMR_RER | RTL818X_INT_SE_RX_DU | IMR_RQOSOK))
304 rtl8180_handle_rx(dev);
305 /* The interface sometimes generates several RX DMA descriptor errors
306 * at startup. Do not report these.
307 */
308 if ((reg & RTL818X_INT_SE_RX_DU) && desc_err++ > 2)
309 if (net_ratelimit())
310 wiphy_err(dev->wiphy, "No RX DMA Descriptor avail\n");
311
312 spin_unlock_irqrestore(&priv->lock, flags);
313 return IRQ_HANDLED;
314}
315
Michael Wuf6532112007-10-14 14:43:16 -0400316static irqreturn_t rtl8180_interrupt(int irq, void *dev_id)
317{
318 struct ieee80211_hw *dev = dev_id;
319 struct rtl8180_priv *priv = dev->priv;
320 u16 reg;
321
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400322 spin_lock(&priv->lock);
Michael Wuf6532112007-10-14 14:43:16 -0400323 reg = rtl818x_ioread16(priv, &priv->map->INT_STATUS);
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400324 if (unlikely(reg == 0xFFFF)) {
325 spin_unlock(&priv->lock);
Michael Wuf6532112007-10-14 14:43:16 -0400326 return IRQ_HANDLED;
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400327 }
Michael Wuf6532112007-10-14 14:43:16 -0400328
329 rtl818x_iowrite16(priv, &priv->map->INT_STATUS, reg);
330
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400331 if (reg & (RTL818X_INT_TXB_OK | RTL818X_INT_TXB_ERR))
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400332 rtl8180_handle_tx(dev, 1);
333
334 if (reg & (RTL818X_INT_TXL_OK | RTL818X_INT_TXL_ERR))
335 rtl8180_handle_tx(dev, 0);
336
337 if (reg & (RTL818X_INT_RX_OK | RTL818X_INT_RX_ERR))
338 rtl8180_handle_rx(dev);
339
340 spin_unlock(&priv->lock);
Michael Wuf6532112007-10-14 14:43:16 -0400341
342 return IRQ_HANDLED;
343}
344
Thomas Huehn36323f82012-07-23 21:33:42 +0200345static void rtl8180_tx(struct ieee80211_hw *dev,
346 struct ieee80211_tx_control *control,
347 struct sk_buff *skb)
Michael Wuf6532112007-10-14 14:43:16 -0400348{
Johannes Berge039fa42008-05-15 12:55:29 +0200349 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
John W. Linville51e080d2010-05-06 16:26:23 -0400350 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Michael Wuf6532112007-10-14 14:43:16 -0400351 struct rtl8180_priv *priv = dev->priv;
352 struct rtl8180_tx_ring *ring;
353 struct rtl8180_tx_desc *entry;
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400354 unsigned long flags;
Andrea Merellofd6564f2014-03-22 18:51:20 +0100355 unsigned int idx, prio, hw_prio;
Michael Wuf6532112007-10-14 14:43:16 -0400356 dma_addr_t mapping;
357 u32 tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +0200358 u8 rc_flags;
Michael Wuf6532112007-10-14 14:43:16 -0400359 u16 plcp_len = 0;
360 __le16 rts_duration = 0;
361
Johannes Berge2530082008-05-17 00:57:14 +0200362 prio = skb_get_queue_mapping(skb);
Michael Wuf6532112007-10-14 14:43:16 -0400363 ring = &priv->tx_ring[prio];
364
365 mapping = pci_map_single(priv->pdev, skb->data,
366 skb->len, PCI_DMA_TODEVICE);
367
andrea.merello348f7d42014-02-05 22:38:06 +0100368 if (pci_dma_mapping_error(priv->pdev, mapping)) {
369 kfree_skb(skb);
370 dev_err(&priv->pdev->dev, "TX DMA mapping error\n");
371 return;
372
373 }
374
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300375 tx_flags = RTL818X_TX_DESC_FLAG_OWN | RTL818X_TX_DESC_FLAG_FS |
376 RTL818X_TX_DESC_FLAG_LS |
Johannes Berge039fa42008-05-15 12:55:29 +0200377 (ieee80211_get_tx_rate(dev, info)->hw_value << 24) |
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200378 skb->len;
Michael Wuf6532112007-10-14 14:43:16 -0400379
Andrea Merello6caefd12014-03-08 18:36:37 +0100380 if (priv->chip_family != RTL818X_CHIP_FAMILY_RTL8180)
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300381 tx_flags |= RTL818X_TX_DESC_FLAG_DMA |
382 RTL818X_TX_DESC_FLAG_NO_ENC;
Michael Wuf6532112007-10-14 14:43:16 -0400383
Johannes Berge6a98542008-10-21 12:40:02 +0200384 rc_flags = info->control.rates[0].flags;
385 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300386 tx_flags |= RTL818X_TX_DESC_FLAG_RTS;
Johannes Berge039fa42008-05-15 12:55:29 +0200387 tx_flags |= ieee80211_get_rts_cts_rate(dev, info)->hw_value << 19;
Johannes Berge6a98542008-10-21 12:40:02 +0200388 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300389 tx_flags |= RTL818X_TX_DESC_FLAG_CTS;
Johannes Berge039fa42008-05-15 12:55:29 +0200390 tx_flags |= ieee80211_get_rts_cts_rate(dev, info)->hw_value << 19;
Johannes Bergaa68cbf2008-02-18 14:20:30 +0100391 }
Michael Wuf6532112007-10-14 14:43:16 -0400392
Johannes Berge6a98542008-10-21 12:40:02 +0200393 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS)
Johannes Berg32bfd352007-12-19 01:31:26 +0100394 rts_duration = ieee80211_rts_duration(dev, priv->vif, skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +0200395 info);
Michael Wuf6532112007-10-14 14:43:16 -0400396
Andrea Merello6caefd12014-03-08 18:36:37 +0100397 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8180) {
Michael Wuf6532112007-10-14 14:43:16 -0400398 unsigned int remainder;
399
400 plcp_len = DIV_ROUND_UP(16 * (skb->len + 4),
Johannes Berge039fa42008-05-15 12:55:29 +0200401 (ieee80211_get_tx_rate(dev, info)->bitrate * 2) / 10);
Michael Wuf6532112007-10-14 14:43:16 -0400402 remainder = (16 * (skb->len + 4)) %
Johannes Berge039fa42008-05-15 12:55:29 +0200403 ((ieee80211_get_tx_rate(dev, info)->bitrate * 2) / 10);
Roel Kluin35a0ace2009-06-22 17:42:21 +0200404 if (remainder <= 6)
Michael Wuf6532112007-10-14 14:43:16 -0400405 plcp_len |= 1 << 15;
406 }
407
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400408 spin_lock_irqsave(&priv->lock, flags);
John W. Linville51e080d2010-05-06 16:26:23 -0400409
410 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
411 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
412 priv->seqno += 0x10;
413 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
414 hdr->seq_ctrl |= cpu_to_le16(priv->seqno);
415 }
416
Michael Wuf6532112007-10-14 14:43:16 -0400417 idx = (ring->idx + skb_queue_len(&ring->queue)) % ring->entries;
418 entry = &ring->desc[idx];
419
420 entry->rts_duration = rts_duration;
421 entry->plcp_len = cpu_to_le16(plcp_len);
422 entry->tx_buf = cpu_to_le32(mapping);
423 entry->frame_len = cpu_to_le32(skb->len);
Johannes Berge6a98542008-10-21 12:40:02 +0200424 entry->flags2 = info->control.rates[1].idx >= 0 ?
Felix Fietkau870abdf2008-10-05 18:04:24 +0200425 ieee80211_get_alt_retry_rate(dev, info, 0)->bitrate << 4 : 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200426 entry->retry_limit = info->control.rates[0].count;
andrea merello4c552a52014-02-18 02:10:45 +0100427
428 /* We must be sure that tx_flags is written last because the HW
429 * looks at it to check if the rest of data is valid or not
430 */
431 wmb();
Michael Wuf6532112007-10-14 14:43:16 -0400432 entry->flags = cpu_to_le32(tx_flags);
andrea merelloc24782e2014-02-18 02:10:46 +0100433 /* We must be sure this has been written before followings HW
434 * register write, because this write will made the HW attempts
435 * to DMA the just-written data
436 */
437 wmb();
438
Michael Wuf6532112007-10-14 14:43:16 -0400439 __skb_queue_tail(&ring->queue, skb);
440 if (ring->entries - skb_queue_len(&ring->queue) < 2)
John W. Linvilled10e2e02010-04-27 16:57:38 -0400441 ieee80211_stop_queue(dev, prio);
John W. Linville51e080d2010-05-06 16:26:23 -0400442
John W. Linvillea6d27d2a2010-10-07 11:31:56 -0400443 spin_unlock_irqrestore(&priv->lock, flags);
Michael Wuf6532112007-10-14 14:43:16 -0400444
Andrea Merellofd6564f2014-03-22 18:51:20 +0100445 hw_prio = rtl8180_queues_map[prio];
446
447 rtl818x_iowrite8(priv, &priv->map->TX_DMA_POLLING,
448 (1 << hw_prio) | /* ring to poll */
449 (1<<1) | (1<<2));/* stopped rings */
Michael Wuf6532112007-10-14 14:43:16 -0400450}
451
452void rtl8180_set_anaparam(struct rtl8180_priv *priv, u32 anaparam)
453{
454 u8 reg;
455
456 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
457 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
458 rtl818x_iowrite8(priv, &priv->map->CONFIG3,
459 reg | RTL818X_CONFIG3_ANAPARAM_WRITE);
460 rtl818x_iowrite32(priv, &priv->map->ANAPARAM, anaparam);
461 rtl818x_iowrite8(priv, &priv->map->CONFIG3,
462 reg & ~RTL818X_CONFIG3_ANAPARAM_WRITE);
463 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
464}
465
Andrea Merello516a0932014-03-15 18:29:36 +0100466static void rtl8180_conf_basic_rates(struct ieee80211_hw *dev,
467 u32 rates_mask)
468{
469 struct rtl8180_priv *priv = dev->priv;
470
471 u8 max, min;
472 u16 reg;
473
474 max = fls(rates_mask) - 1;
475 min = ffs(rates_mask) - 1;
476
477 switch (priv->chip_family) {
478
479 case RTL818X_CHIP_FAMILY_RTL8180:
480 /* in 8180 this is NOT a BITMAP */
481 reg = rtl818x_ioread16(priv, &priv->map->BRSR);
482 reg &= ~3;
483 reg |= max;
484 rtl818x_iowrite16(priv, &priv->map->BRSR, reg);
Andrea Merello516a0932014-03-15 18:29:36 +0100485 break;
486
487 case RTL818X_CHIP_FAMILY_RTL8185:
488 /* in 8185 this is a BITMAP */
489 rtl818x_iowrite16(priv, &priv->map->BRSR, rates_mask);
490 rtl818x_iowrite8(priv, &priv->map->RESP_RATE, (max << 4) | min);
491 break;
Andrea Merellod209f3b2014-03-26 20:59:25 +0100492
493 case RTL818X_CHIP_FAMILY_RTL8187SE:
494 /* in 8187se this is a BITMAP */
495 rtl818x_iowrite16(priv, &priv->map->BRSR_8187SE, rates_mask);
496 break;
Andrea Merello516a0932014-03-15 18:29:36 +0100497 }
498}
499
Michael Wuf6532112007-10-14 14:43:16 -0400500static int rtl8180_init_hw(struct ieee80211_hw *dev)
501{
502 struct rtl8180_priv *priv = dev->priv;
503 u16 reg;
504
505 rtl818x_iowrite8(priv, &priv->map->CMD, 0);
506 rtl818x_ioread8(priv, &priv->map->CMD);
507 msleep(10);
508
509 /* reset */
510 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
511 rtl818x_ioread8(priv, &priv->map->CMD);
512
513 reg = rtl818x_ioread8(priv, &priv->map->CMD);
514 reg &= (1 << 1);
515 reg |= RTL818X_CMD_RESET;
516 rtl818x_iowrite8(priv, &priv->map->CMD, RTL818X_CMD_RESET);
517 rtl818x_ioread8(priv, &priv->map->CMD);
518 msleep(200);
519
520 /* check success of reset */
521 if (rtl818x_ioread8(priv, &priv->map->CMD) & RTL818X_CMD_RESET) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700522 wiphy_err(dev->wiphy, "reset timeout!\n");
Michael Wuf6532112007-10-14 14:43:16 -0400523 return -ETIMEDOUT;
524 }
525
526 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_LOAD);
527 rtl818x_ioread8(priv, &priv->map->CMD);
528 msleep(200);
529
530 if (rtl818x_ioread8(priv, &priv->map->CONFIG3) & (1 << 3)) {
531 /* For cardbus */
532 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
533 reg |= 1 << 1;
534 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
535 reg = rtl818x_ioread16(priv, &priv->map->FEMR);
536 reg |= (1 << 15) | (1 << 14) | (1 << 4);
537 rtl818x_iowrite16(priv, &priv->map->FEMR, reg);
538 }
539
540 rtl818x_iowrite8(priv, &priv->map->MSR, 0);
541
Andrea Merello6caefd12014-03-08 18:36:37 +0100542 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8180)
Michael Wuf6532112007-10-14 14:43:16 -0400543 rtl8180_set_anaparam(priv, priv->anaparam);
544
545 rtl818x_iowrite32(priv, &priv->map->RDSAR, priv->rx_ring_dma);
Andrea Merellofd6564f2014-03-22 18:51:20 +0100546 rtl818x_iowrite32(priv, &priv->map->TBDA, priv->tx_ring[1].dma);
Michael Wuf6532112007-10-14 14:43:16 -0400547 rtl818x_iowrite32(priv, &priv->map->TLPDA, priv->tx_ring[0].dma);
548
549 /* TODO: necessary? specs indicate not */
550 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
551 reg = rtl818x_ioread8(priv, &priv->map->CONFIG2);
552 rtl818x_iowrite8(priv, &priv->map->CONFIG2, reg & ~(1 << 3));
Andrea Merello6caefd12014-03-08 18:36:37 +0100553 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8185) {
Michael Wuf6532112007-10-14 14:43:16 -0400554 reg = rtl818x_ioread8(priv, &priv->map->CONFIG2);
555 rtl818x_iowrite8(priv, &priv->map->CONFIG2, reg | (1 << 4));
556 }
557 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
558
559 /* TODO: set CONFIG5 for calibrating AGC on rtl8180 + philips radio? */
560
561 /* TODO: turn off hw wep on rtl8180 */
562
563 rtl818x_iowrite32(priv, &priv->map->INT_TIMEOUT, 0);
564
Andrea Merello6caefd12014-03-08 18:36:37 +0100565 if (priv->chip_family != RTL818X_CHIP_FAMILY_RTL8180) {
Michael Wuf6532112007-10-14 14:43:16 -0400566 rtl818x_iowrite8(priv, &priv->map->WPA_CONF, 0);
567 rtl818x_iowrite8(priv, &priv->map->RATE_FALLBACK, 0x81);
Michael Wuf6532112007-10-14 14:43:16 -0400568
569 /* TODO: set ClkRun enable? necessary? */
570 reg = rtl818x_ioread8(priv, &priv->map->GP_ENABLE);
571 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, reg & ~(1 << 6));
572 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
573 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
574 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg | (1 << 2));
575 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
576 } else {
Michael Wuf6532112007-10-14 14:43:16 -0400577 rtl818x_iowrite8(priv, &priv->map->SECURITY, 0);
578
579 rtl818x_iowrite8(priv, &priv->map->PHY_DELAY, 0x6);
580 rtl818x_iowrite8(priv, &priv->map->CARRIER_SENSE_COUNTER, 0x4C);
581 }
582
583 priv->rf->init(dev);
Andrea Merello516a0932014-03-15 18:29:36 +0100584
585 /* default basic rates are 1,2 Mbps for rtl8180. 1,2,6,9,12,18,24 Mbps
586 * otherwise. bitmask 0x3 and 0x01f3 respectively.
587 * NOTE: currenty rtl8225 RF code changes basic rates, so we need to do
588 * this after rf init.
589 * TODO: try to find out whether RF code really needs to do this..
590 */
591 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8180)
592 rtl8180_conf_basic_rates(dev, 0x3);
593 else
594 rtl8180_conf_basic_rates(dev, 0x1f3);
595
Michael Wuf6532112007-10-14 14:43:16 -0400596 return 0;
597}
598
599static int rtl8180_init_rx_ring(struct ieee80211_hw *dev)
600{
601 struct rtl8180_priv *priv = dev->priv;
Andrea Merello21025922014-03-26 20:59:52 +0100602 struct rtl818x_rx_cmd_desc *entry;
Michael Wuf6532112007-10-14 14:43:16 -0400603 int i;
604
Andrea Merello21025922014-03-26 20:59:52 +0100605 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8187SE)
606 priv->rx_ring_sz = sizeof(struct rtl8187se_rx_desc);
607 else
608 priv->rx_ring_sz = sizeof(struct rtl8180_rx_desc);
609
Michael Wuf6532112007-10-14 14:43:16 -0400610 priv->rx_ring = pci_alloc_consistent(priv->pdev,
Andrea Merello21025922014-03-26 20:59:52 +0100611 priv->rx_ring_sz * 32,
Michael Wuf6532112007-10-14 14:43:16 -0400612 &priv->rx_ring_dma);
613
614 if (!priv->rx_ring || (unsigned long)priv->rx_ring & 0xFF) {
Joe Perches5db55842010-08-11 19:11:19 -0700615 wiphy_err(dev->wiphy, "Cannot allocate RX ring\n");
Michael Wuf6532112007-10-14 14:43:16 -0400616 return -ENOMEM;
617 }
618
Andrea Merello21025922014-03-26 20:59:52 +0100619 memset(priv->rx_ring, 0, priv->rx_ring_sz * 32);
Michael Wuf6532112007-10-14 14:43:16 -0400620 priv->rx_idx = 0;
621
622 for (i = 0; i < 32; i++) {
623 struct sk_buff *skb = dev_alloc_skb(MAX_RX_SIZE);
624 dma_addr_t *mapping;
Andrea Merello21025922014-03-26 20:59:52 +0100625 entry = priv->rx_ring + priv->rx_ring_sz*i;
andrea merello4da18bb2014-02-18 02:10:43 +0100626 if (!skb) {
627 wiphy_err(dev->wiphy, "Cannot allocate RX skb\n");
628 return -ENOMEM;
629 }
Michael Wuf6532112007-10-14 14:43:16 -0400630 priv->rx_buf[i] = skb;
631 mapping = (dma_addr_t *)skb->cb;
632 *mapping = pci_map_single(priv->pdev, skb_tail_pointer(skb),
633 MAX_RX_SIZE, PCI_DMA_FROMDEVICE);
andrea merelloec1da082014-02-22 17:57:23 +0100634
635 if (pci_dma_mapping_error(priv->pdev, *mapping)) {
636 kfree_skb(skb);
637 wiphy_err(dev->wiphy, "Cannot map DMA for RX skb\n");
638 return -ENOMEM;
639 }
640
Michael Wuf6532112007-10-14 14:43:16 -0400641 entry->rx_buf = cpu_to_le32(*mapping);
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300642 entry->flags = cpu_to_le32(RTL818X_RX_DESC_FLAG_OWN |
Michael Wuf6532112007-10-14 14:43:16 -0400643 MAX_RX_SIZE);
644 }
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300645 entry->flags |= cpu_to_le32(RTL818X_RX_DESC_FLAG_EOR);
Michael Wuf6532112007-10-14 14:43:16 -0400646 return 0;
647}
648
649static void rtl8180_free_rx_ring(struct ieee80211_hw *dev)
650{
651 struct rtl8180_priv *priv = dev->priv;
652 int i;
653
654 for (i = 0; i < 32; i++) {
655 struct sk_buff *skb = priv->rx_buf[i];
656 if (!skb)
657 continue;
658
659 pci_unmap_single(priv->pdev,
660 *((dma_addr_t *)skb->cb),
661 MAX_RX_SIZE, PCI_DMA_FROMDEVICE);
662 kfree_skb(skb);
663 }
664
Andrea Merello21025922014-03-26 20:59:52 +0100665 pci_free_consistent(priv->pdev, priv->rx_ring_sz * 32,
Michael Wuf6532112007-10-14 14:43:16 -0400666 priv->rx_ring, priv->rx_ring_dma);
667 priv->rx_ring = NULL;
668}
669
670static int rtl8180_init_tx_ring(struct ieee80211_hw *dev,
671 unsigned int prio, unsigned int entries)
672{
673 struct rtl8180_priv *priv = dev->priv;
674 struct rtl8180_tx_desc *ring;
675 dma_addr_t dma;
676 int i;
677
678 ring = pci_alloc_consistent(priv->pdev, sizeof(*ring) * entries, &dma);
679 if (!ring || (unsigned long)ring & 0xFF) {
Joe Perches5db55842010-08-11 19:11:19 -0700680 wiphy_err(dev->wiphy, "Cannot allocate TX ring (prio = %d)\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -0700681 prio);
Michael Wuf6532112007-10-14 14:43:16 -0400682 return -ENOMEM;
683 }
684
685 memset(ring, 0, sizeof(*ring)*entries);
686 priv->tx_ring[prio].desc = ring;
687 priv->tx_ring[prio].dma = dma;
688 priv->tx_ring[prio].idx = 0;
689 priv->tx_ring[prio].entries = entries;
690 skb_queue_head_init(&priv->tx_ring[prio].queue);
691
692 for (i = 0; i < entries; i++)
693 ring[i].next_tx_desc =
694 cpu_to_le32((u32)dma + ((i + 1) % entries) * sizeof(*ring));
695
696 return 0;
697}
698
699static void rtl8180_free_tx_ring(struct ieee80211_hw *dev, unsigned int prio)
700{
701 struct rtl8180_priv *priv = dev->priv;
702 struct rtl8180_tx_ring *ring = &priv->tx_ring[prio];
703
704 while (skb_queue_len(&ring->queue)) {
705 struct rtl8180_tx_desc *entry = &ring->desc[ring->idx];
706 struct sk_buff *skb = __skb_dequeue(&ring->queue);
707
708 pci_unmap_single(priv->pdev, le32_to_cpu(entry->tx_buf),
709 skb->len, PCI_DMA_TODEVICE);
Michael Wuf6532112007-10-14 14:43:16 -0400710 kfree_skb(skb);
711 ring->idx = (ring->idx + 1) % ring->entries;
712 }
713
714 pci_free_consistent(priv->pdev, sizeof(*ring->desc)*ring->entries,
715 ring->desc, ring->dma);
716 ring->desc = NULL;
717}
718
719static int rtl8180_start(struct ieee80211_hw *dev)
720{
721 struct rtl8180_priv *priv = dev->priv;
722 int ret, i;
723 u32 reg;
724
725 ret = rtl8180_init_rx_ring(dev);
726 if (ret)
727 return ret;
728
Andrea Merellofd6564f2014-03-22 18:51:20 +0100729 for (i = 0; i < (dev->queues + 1); i++)
Michael Wuf6532112007-10-14 14:43:16 -0400730 if ((ret = rtl8180_init_tx_ring(dev, i, 16)))
731 goto err_free_rings;
732
733 ret = rtl8180_init_hw(dev);
734 if (ret)
735 goto err_free_rings;
736
Andrea Merelloa373ebc2014-03-26 21:00:06 +0100737 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8187SE) {
738 ret = request_irq(priv->pdev->irq, rtl8187se_interrupt,
Michael Wuf6532112007-10-14 14:43:16 -0400739 IRQF_SHARED, KBUILD_MODNAME, dev);
Andrea Merelloa373ebc2014-03-26 21:00:06 +0100740 } else {
741 ret = request_irq(priv->pdev->irq, rtl8180_interrupt,
742 IRQF_SHARED, KBUILD_MODNAME, dev);
743 }
744
Michael Wuf6532112007-10-14 14:43:16 -0400745 if (ret) {
Joe Perches5db55842010-08-11 19:11:19 -0700746 wiphy_err(dev->wiphy, "failed to register IRQ handler\n");
Michael Wuf6532112007-10-14 14:43:16 -0400747 goto err_free_rings;
748 }
749
750 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0xFFFF);
751
752 rtl818x_iowrite32(priv, &priv->map->MAR[0], ~0);
753 rtl818x_iowrite32(priv, &priv->map->MAR[1], ~0);
754
755 reg = RTL818X_RX_CONF_ONLYERLPKT |
756 RTL818X_RX_CONF_RX_AUTORESETPHY |
757 RTL818X_RX_CONF_MGMT |
758 RTL818X_RX_CONF_DATA |
759 (7 << 8 /* MAX RX DMA */) |
760 RTL818X_RX_CONF_BROADCAST |
761 RTL818X_RX_CONF_NICMAC;
762
Andrea Merello6caefd12014-03-08 18:36:37 +0100763 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8185)
Michael Wuf6532112007-10-14 14:43:16 -0400764 reg |= RTL818X_RX_CONF_CSDM1 | RTL818X_RX_CONF_CSDM2;
765 else {
766 reg |= (priv->rfparam & RF_PARAM_CARRIERSENSE1)
767 ? RTL818X_RX_CONF_CSDM1 : 0;
768 reg |= (priv->rfparam & RF_PARAM_CARRIERSENSE2)
769 ? RTL818X_RX_CONF_CSDM2 : 0;
770 }
771
772 priv->rx_conf = reg;
773 rtl818x_iowrite32(priv, &priv->map->RX_CONF, reg);
774
Andrea Merello6caefd12014-03-08 18:36:37 +0100775 if (priv->chip_family != RTL818X_CHIP_FAMILY_RTL8180) {
Michael Wuf6532112007-10-14 14:43:16 -0400776 reg = rtl818x_ioread8(priv, &priv->map->CW_CONF);
andrea merello14c76152014-02-18 02:10:44 +0100777
778 /* CW is not on per-packet basis.
779 * in rtl8185 the CW_VALUE reg is used.
780 */
andrea merello6f7343d2014-01-21 20:16:43 +0100781 reg &= ~RTL818X_CW_CONF_PERPACKET_CW;
andrea merello14c76152014-02-18 02:10:44 +0100782 /* retry limit IS on per-packet basis.
783 * the short and long retry limit in TX_CONF
784 * reg are ignored
785 */
andrea merello6f7343d2014-01-21 20:16:43 +0100786 reg |= RTL818X_CW_CONF_PERPACKET_RETRY;
Michael Wuf6532112007-10-14 14:43:16 -0400787 rtl818x_iowrite8(priv, &priv->map->CW_CONF, reg);
788
789 reg = rtl818x_ioread8(priv, &priv->map->TX_AGC_CTL);
andrea merello14c76152014-02-18 02:10:44 +0100790 /* TX antenna and TX gain are not on per-packet basis.
791 * TX Antenna is selected by ANTSEL reg (RX in BB regs).
792 * TX gain is selected with CCK_TX_AGC and OFDM_TX_AGC regs
793 */
andrea merello6f7343d2014-01-21 20:16:43 +0100794 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_GAIN;
795 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_ANTSEL;
Michael Wuf6532112007-10-14 14:43:16 -0400796 reg |= RTL818X_TX_AGC_CTL_FEEDBACK_ANT;
797 rtl818x_iowrite8(priv, &priv->map->TX_AGC_CTL, reg);
798
799 /* disable early TX */
800 rtl818x_iowrite8(priv, (u8 __iomem *)priv->map + 0xec, 0x3f);
801 }
802
803 reg = rtl818x_ioread32(priv, &priv->map->TX_CONF);
804 reg |= (6 << 21 /* MAX TX DMA */) |
805 RTL818X_TX_CONF_NO_ICV;
806
Andrea Merello6caefd12014-03-08 18:36:37 +0100807
808
809 if (priv->chip_family != RTL818X_CHIP_FAMILY_RTL8180)
Michael Wuf6532112007-10-14 14:43:16 -0400810 reg &= ~RTL818X_TX_CONF_PROBE_DTS;
811 else
812 reg &= ~RTL818X_TX_CONF_HW_SEQNUM;
813
andrea merelloe74075a2014-02-18 02:10:40 +0100814 reg &= ~RTL818X_TX_CONF_DISCW;
815
Michael Wuf6532112007-10-14 14:43:16 -0400816 /* different meaning, same value on both rtl8185 and rtl8180 */
817 reg &= ~RTL818X_TX_CONF_SAT_HWPLCP;
818
819 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
820
821 reg = rtl818x_ioread8(priv, &priv->map->CMD);
822 reg |= RTL818X_CMD_RX_ENABLE;
823 reg |= RTL818X_CMD_TX_ENABLE;
824 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
825
Michael Wuf6532112007-10-14 14:43:16 -0400826 return 0;
827
828 err_free_rings:
829 rtl8180_free_rx_ring(dev);
Andrea Merellofd6564f2014-03-22 18:51:20 +0100830 for (i = 0; i < (dev->queues + 1); i++)
Michael Wuf6532112007-10-14 14:43:16 -0400831 if (priv->tx_ring[i].desc)
832 rtl8180_free_tx_ring(dev, i);
833
834 return ret;
835}
836
837static void rtl8180_stop(struct ieee80211_hw *dev)
838{
839 struct rtl8180_priv *priv = dev->priv;
840 u8 reg;
841 int i;
842
Michael Wuf6532112007-10-14 14:43:16 -0400843 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
844
845 reg = rtl818x_ioread8(priv, &priv->map->CMD);
846 reg &= ~RTL818X_CMD_TX_ENABLE;
847 reg &= ~RTL818X_CMD_RX_ENABLE;
848 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
849
850 priv->rf->stop(dev);
851
852 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
853 reg = rtl818x_ioread8(priv, &priv->map->CONFIG4);
854 rtl818x_iowrite8(priv, &priv->map->CONFIG4, reg | RTL818X_CONFIG4_VCOOFF);
855 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
856
857 free_irq(priv->pdev->irq, dev);
858
859 rtl8180_free_rx_ring(dev);
Andrea Merellofd6564f2014-03-22 18:51:20 +0100860 for (i = 0; i < (dev->queues + 1); i++)
Michael Wuf6532112007-10-14 14:43:16 -0400861 rtl8180_free_tx_ring(dev, i);
862}
863
Eliad Peller37a41b42011-09-21 14:06:11 +0300864static u64 rtl8180_get_tsf(struct ieee80211_hw *dev,
865 struct ieee80211_vif *vif)
John W. Linvillec809e862010-05-06 16:49:40 -0400866{
867 struct rtl8180_priv *priv = dev->priv;
868
869 return rtl818x_ioread32(priv, &priv->map->TSFT[0]) |
870 (u64)(rtl818x_ioread32(priv, &priv->map->TSFT[1])) << 32;
871}
872
John W. Linvillea3275e22010-06-24 11:08:37 -0400873static void rtl8180_beacon_work(struct work_struct *work)
John W. Linvillec809e862010-05-06 16:49:40 -0400874{
875 struct rtl8180_vif *vif_priv =
876 container_of(work, struct rtl8180_vif, beacon_work.work);
877 struct ieee80211_vif *vif =
878 container_of((void *)vif_priv, struct ieee80211_vif, drv_priv);
879 struct ieee80211_hw *dev = vif_priv->dev;
880 struct ieee80211_mgmt *mgmt;
881 struct sk_buff *skb;
John W. Linvillec809e862010-05-06 16:49:40 -0400882
883 /* don't overflow the tx ring */
884 if (ieee80211_queue_stopped(dev, 0))
885 goto resched;
886
887 /* grab a fresh beacon */
888 skb = ieee80211_beacon_get(dev, vif);
John W. Linville8f1d2d22010-08-05 13:46:27 -0400889 if (!skb)
890 goto resched;
John W. Linvillec809e862010-05-06 16:49:40 -0400891
892 /*
893 * update beacon timestamp w/ TSF value
894 * TODO: make hardware update beacon timestamp
895 */
896 mgmt = (struct ieee80211_mgmt *)skb->data;
Eliad Peller37a41b42011-09-21 14:06:11 +0300897 mgmt->u.beacon.timestamp = cpu_to_le64(rtl8180_get_tsf(dev, vif));
John W. Linvillec809e862010-05-06 16:49:40 -0400898
899 /* TODO: use actual beacon queue */
900 skb_set_queue_mapping(skb, 0);
901
Thomas Huehn36323f82012-07-23 21:33:42 +0200902 rtl8180_tx(dev, NULL, skb);
John W. Linvillec809e862010-05-06 16:49:40 -0400903
904resched:
905 /*
906 * schedule next beacon
907 * TODO: use hardware support for beacon timing
908 */
909 schedule_delayed_work(&vif_priv->beacon_work,
910 usecs_to_jiffies(1024 * vif->bss_conf.beacon_int));
911}
912
Michael Wuf6532112007-10-14 14:43:16 -0400913static int rtl8180_add_interface(struct ieee80211_hw *dev,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100914 struct ieee80211_vif *vif)
Michael Wuf6532112007-10-14 14:43:16 -0400915{
916 struct rtl8180_priv *priv = dev->priv;
John W. Linvillec809e862010-05-06 16:49:40 -0400917 struct rtl8180_vif *vif_priv;
Michael Wuf6532112007-10-14 14:43:16 -0400918
John W. Linville643aab62009-12-22 18:13:04 -0500919 /*
920 * We only support one active interface at a time.
921 */
922 if (priv->vif)
923 return -EBUSY;
Michael Wuf6532112007-10-14 14:43:16 -0400924
Johannes Berg1ed32e42009-12-23 13:15:45 +0100925 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200926 case NL80211_IFTYPE_STATION:
John W. Linvillec809e862010-05-06 16:49:40 -0400927 case NL80211_IFTYPE_ADHOC:
Michael Wuf6532112007-10-14 14:43:16 -0400928 break;
929 default:
930 return -EOPNOTSUPP;
931 }
932
Johannes Berg1ed32e42009-12-23 13:15:45 +0100933 priv->vif = vif;
Johannes Berg32bfd352007-12-19 01:31:26 +0100934
John W. Linvillec809e862010-05-06 16:49:40 -0400935 /* Initialize driver private area */
936 vif_priv = (struct rtl8180_vif *)&vif->drv_priv;
937 vif_priv->dev = dev;
938 INIT_DELAYED_WORK(&vif_priv->beacon_work, rtl8180_beacon_work);
939 vif_priv->enable_beacon = false;
940
Michael Wuf6532112007-10-14 14:43:16 -0400941 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
942 rtl818x_iowrite32(priv, (__le32 __iomem *)&priv->map->MAC[0],
Johannes Berg1ed32e42009-12-23 13:15:45 +0100943 le32_to_cpu(*(__le32 *)vif->addr));
Michael Wuf6532112007-10-14 14:43:16 -0400944 rtl818x_iowrite16(priv, (__le16 __iomem *)&priv->map->MAC[4],
Johannes Berg1ed32e42009-12-23 13:15:45 +0100945 le16_to_cpu(*(__le16 *)(vif->addr + 4)));
Michael Wuf6532112007-10-14 14:43:16 -0400946 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
947
948 return 0;
949}
950
951static void rtl8180_remove_interface(struct ieee80211_hw *dev,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100952 struct ieee80211_vif *vif)
Michael Wuf6532112007-10-14 14:43:16 -0400953{
954 struct rtl8180_priv *priv = dev->priv;
Johannes Berg32bfd352007-12-19 01:31:26 +0100955 priv->vif = NULL;
Michael Wuf6532112007-10-14 14:43:16 -0400956}
957
Johannes Berge8975582008-10-09 12:18:51 +0200958static int rtl8180_config(struct ieee80211_hw *dev, u32 changed)
Michael Wuf6532112007-10-14 14:43:16 -0400959{
960 struct rtl8180_priv *priv = dev->priv;
Johannes Berge8975582008-10-09 12:18:51 +0200961 struct ieee80211_conf *conf = &dev->conf;
Michael Wuf6532112007-10-14 14:43:16 -0400962
963 priv->rf->set_chan(dev, conf);
964
965 return 0;
966}
967
Andrea Merello9069af72014-03-15 18:29:37 +0100968static int rtl8180_conf_tx(struct ieee80211_hw *dev,
969 struct ieee80211_vif *vif, u16 queue,
970 const struct ieee80211_tx_queue_params *params)
971{
972 struct rtl8180_priv *priv = dev->priv;
973 u8 cw_min, cw_max;
974
975 /* nothing to do ? */
976 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8180)
977 return 0;
978
979 cw_min = fls(params->cw_min);
980 cw_max = fls(params->cw_max);
981
982 rtl818x_iowrite8(priv, &priv->map->CW_VAL, (cw_max << 4) | cw_min);
983
984 return 0;
985}
986
987static void rtl8180_conf_erp(struct ieee80211_hw *dev,
988 struct ieee80211_bss_conf *info)
989{
990 struct rtl8180_priv *priv = dev->priv;
991 u8 sifs, difs;
992 int eifs;
993 u8 hw_eifs;
994
995 /* TODO: should we do something ? */
996 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8180)
997 return;
998
999 /* I _hope_ this means 10uS for the HW.
1000 * In reference code it is 0x22 for
1001 * both rtl8187L and rtl8187SE
1002 */
1003 sifs = 0x22;
1004
1005 if (info->use_short_slot)
1006 priv->slot_time = 9;
1007 else
1008 priv->slot_time = 20;
1009
1010 /* 10 is SIFS time in uS */
1011 difs = 10 + 2 * priv->slot_time;
1012 eifs = 10 + difs + priv->ack_time;
1013
1014 /* HW should use 4uS units for EIFS (I'm sure for rtl8185)*/
1015 hw_eifs = DIV_ROUND_UP(eifs, 4);
1016
1017
1018 rtl818x_iowrite8(priv, &priv->map->SLOT, priv->slot_time);
1019 rtl818x_iowrite8(priv, &priv->map->SIFS, sifs);
1020 rtl818x_iowrite8(priv, &priv->map->DIFS, difs);
1021
1022 /* from reference code. set ack timeout reg = eifs reg */
1023 rtl818x_iowrite8(priv, &priv->map->CARRIER_SENSE_COUNTER, hw_eifs);
1024
1025 /* rtl8187/rtl8185 HW bug. After EIFS is elapsed,
1026 * the HW still wait for DIFS.
1027 * HW uses 4uS units for EIFS.
1028 */
1029 hw_eifs = DIV_ROUND_UP(eifs - difs, 4);
1030
1031 rtl818x_iowrite8(priv, &priv->map->EIFS, hw_eifs);
1032}
1033
John W. Linvilleda81ded2008-11-12 14:37:11 -05001034static void rtl8180_bss_info_changed(struct ieee80211_hw *dev,
1035 struct ieee80211_vif *vif,
1036 struct ieee80211_bss_conf *info,
1037 u32 changed)
1038{
1039 struct rtl8180_priv *priv = dev->priv;
John W. Linvillec809e862010-05-06 16:49:40 -04001040 struct rtl8180_vif *vif_priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001041 int i;
John W. Linville0f956e72010-07-29 21:50:29 -04001042 u8 reg;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001043
John W. Linvillec809e862010-05-06 16:49:40 -04001044 vif_priv = (struct rtl8180_vif *)&vif->drv_priv;
1045
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001046 if (changed & BSS_CHANGED_BSSID) {
1047 for (i = 0; i < ETH_ALEN; i++)
1048 rtl818x_iowrite8(priv, &priv->map->BSSID[i],
1049 info->bssid[i]);
1050
John W. Linville0f956e72010-07-29 21:50:29 -04001051 if (is_valid_ether_addr(info->bssid)) {
1052 if (vif->type == NL80211_IFTYPE_ADHOC)
1053 reg = RTL818X_MSR_ADHOC;
1054 else
1055 reg = RTL818X_MSR_INFRA;
1056 } else
1057 reg = RTL818X_MSR_NO_LINK;
1058 rtl818x_iowrite8(priv, &priv->map->MSR, reg);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001059 }
John W. Linvilleda81ded2008-11-12 14:37:11 -05001060
Andrea Merello516a0932014-03-15 18:29:36 +01001061 if (changed & BSS_CHANGED_BASIC_RATES)
1062 rtl8180_conf_basic_rates(dev, info->basic_rates);
1063
Andrea Merello9069af72014-03-15 18:29:37 +01001064 if (changed & (BSS_CHANGED_ERP_SLOT | BSS_CHANGED_ERP_PREAMBLE)) {
1065
1066 /* when preamble changes, acktime duration changes, and erp must
1067 * be recalculated. ACK time is calculated at lowest rate.
1068 * Since mac80211 include SIFS time we remove it (-10)
1069 */
1070 priv->ack_time =
1071 le16_to_cpu(ieee80211_generic_frame_duration(dev,
1072 priv->vif,
1073 IEEE80211_BAND_2GHZ, 10,
1074 &priv->rates[0])) - 10;
1075
1076 rtl8180_conf_erp(dev, info);
1077 }
John W. Linvillec809e862010-05-06 16:49:40 -04001078
1079 if (changed & BSS_CHANGED_BEACON_ENABLED)
1080 vif_priv->enable_beacon = info->enable_beacon;
1081
1082 if (changed & (BSS_CHANGED_BEACON_ENABLED | BSS_CHANGED_BEACON)) {
1083 cancel_delayed_work_sync(&vif_priv->beacon_work);
1084 if (vif_priv->enable_beacon)
1085 schedule_work(&vif_priv->beacon_work.work);
1086 }
John W. Linvilleda81ded2008-11-12 14:37:11 -05001087}
1088
Jiri Pirko22bedad32010-04-01 21:22:57 +00001089static u64 rtl8180_prepare_multicast(struct ieee80211_hw *dev,
1090 struct netdev_hw_addr_list *mc_list)
Johannes Berg3ac64be2009-08-17 16:16:53 +02001091{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001092 return netdev_hw_addr_list_count(mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +02001093}
1094
Michael Wuf6532112007-10-14 14:43:16 -04001095static void rtl8180_configure_filter(struct ieee80211_hw *dev,
1096 unsigned int changed_flags,
1097 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001098 u64 multicast)
Michael Wuf6532112007-10-14 14:43:16 -04001099{
1100 struct rtl8180_priv *priv = dev->priv;
1101
1102 if (changed_flags & FIF_FCSFAIL)
1103 priv->rx_conf ^= RTL818X_RX_CONF_FCS;
1104 if (changed_flags & FIF_CONTROL)
1105 priv->rx_conf ^= RTL818X_RX_CONF_CTRL;
1106 if (changed_flags & FIF_OTHER_BSS)
1107 priv->rx_conf ^= RTL818X_RX_CONF_MONITOR;
Johannes Berg3ac64be2009-08-17 16:16:53 +02001108 if (*total_flags & FIF_ALLMULTI || multicast > 0)
Michael Wuf6532112007-10-14 14:43:16 -04001109 priv->rx_conf |= RTL818X_RX_CONF_MULTICAST;
1110 else
1111 priv->rx_conf &= ~RTL818X_RX_CONF_MULTICAST;
1112
1113 *total_flags = 0;
1114
1115 if (priv->rx_conf & RTL818X_RX_CONF_FCS)
1116 *total_flags |= FIF_FCSFAIL;
1117 if (priv->rx_conf & RTL818X_RX_CONF_CTRL)
1118 *total_flags |= FIF_CONTROL;
1119 if (priv->rx_conf & RTL818X_RX_CONF_MONITOR)
1120 *total_flags |= FIF_OTHER_BSS;
1121 if (priv->rx_conf & RTL818X_RX_CONF_MULTICAST)
1122 *total_flags |= FIF_ALLMULTI;
1123
1124 rtl818x_iowrite32(priv, &priv->map->RX_CONF, priv->rx_conf);
1125}
1126
1127static const struct ieee80211_ops rtl8180_ops = {
1128 .tx = rtl8180_tx,
1129 .start = rtl8180_start,
1130 .stop = rtl8180_stop,
1131 .add_interface = rtl8180_add_interface,
1132 .remove_interface = rtl8180_remove_interface,
1133 .config = rtl8180_config,
John W. Linvilleda81ded2008-11-12 14:37:11 -05001134 .bss_info_changed = rtl8180_bss_info_changed,
Andrea Merello9069af72014-03-15 18:29:37 +01001135 .conf_tx = rtl8180_conf_tx,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001136 .prepare_multicast = rtl8180_prepare_multicast,
Michael Wuf6532112007-10-14 14:43:16 -04001137 .configure_filter = rtl8180_configure_filter,
John W. Linvilled2bb8e02010-01-26 16:22:20 -05001138 .get_tsf = rtl8180_get_tsf,
Michael Wuf6532112007-10-14 14:43:16 -04001139};
1140
1141static void rtl8180_eeprom_register_read(struct eeprom_93cx6 *eeprom)
1142{
Andrea Merello7d4b8292014-03-15 18:29:38 +01001143 struct rtl8180_priv *priv = eeprom->data;
Michael Wuf6532112007-10-14 14:43:16 -04001144 u8 reg = rtl818x_ioread8(priv, &priv->map->EEPROM_CMD);
1145
1146 eeprom->reg_data_in = reg & RTL818X_EEPROM_CMD_WRITE;
1147 eeprom->reg_data_out = reg & RTL818X_EEPROM_CMD_READ;
1148 eeprom->reg_data_clock = reg & RTL818X_EEPROM_CMD_CK;
1149 eeprom->reg_chip_select = reg & RTL818X_EEPROM_CMD_CS;
1150}
1151
1152static void rtl8180_eeprom_register_write(struct eeprom_93cx6 *eeprom)
1153{
Andrea Merello7d4b8292014-03-15 18:29:38 +01001154 struct rtl8180_priv *priv = eeprom->data;
Michael Wuf6532112007-10-14 14:43:16 -04001155 u8 reg = 2 << 6;
1156
1157 if (eeprom->reg_data_in)
1158 reg |= RTL818X_EEPROM_CMD_WRITE;
1159 if (eeprom->reg_data_out)
1160 reg |= RTL818X_EEPROM_CMD_READ;
1161 if (eeprom->reg_data_clock)
1162 reg |= RTL818X_EEPROM_CMD_CK;
1163 if (eeprom->reg_chip_select)
1164 reg |= RTL818X_EEPROM_CMD_CS;
1165
1166 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, reg);
1167 rtl818x_ioread8(priv, &priv->map->EEPROM_CMD);
1168 udelay(10);
1169}
1170
Andrea Merello7d4b8292014-03-15 18:29:38 +01001171static void rtl8180_eeprom_read(struct rtl8180_priv *priv)
1172{
1173 struct eeprom_93cx6 eeprom;
1174 int eeprom_cck_table_adr;
1175 u16 eeprom_val;
1176 int i;
1177
1178 eeprom.data = priv;
1179 eeprom.register_read = rtl8180_eeprom_register_read;
1180 eeprom.register_write = rtl8180_eeprom_register_write;
1181 if (rtl818x_ioread32(priv, &priv->map->RX_CONF) & (1 << 6))
1182 eeprom.width = PCI_EEPROM_WIDTH_93C66;
1183 else
1184 eeprom.width = PCI_EEPROM_WIDTH_93C46;
1185
1186 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
1187 RTL818X_EEPROM_CMD_PROGRAM);
1188 rtl818x_ioread8(priv, &priv->map->EEPROM_CMD);
1189 udelay(10);
1190
1191 eeprom_93cx6_read(&eeprom, 0x06, &eeprom_val);
1192 eeprom_val &= 0xFF;
1193 priv->rf_type = eeprom_val;
1194
1195 eeprom_93cx6_read(&eeprom, 0x17, &eeprom_val);
1196 priv->csthreshold = eeprom_val >> 8;
1197
1198 eeprom_93cx6_multiread(&eeprom, 0x7, (__le16 *)priv->mac_addr, 3);
1199
1200 eeprom_cck_table_adr = 0x10;
1201
1202 /* CCK TX power */
1203 for (i = 0; i < 14; i += 2) {
1204 u16 txpwr;
1205 eeprom_93cx6_read(&eeprom, eeprom_cck_table_adr + (i >> 1),
1206 &txpwr);
1207 priv->channels[i].hw_value = txpwr & 0xFF;
1208 priv->channels[i + 1].hw_value = txpwr >> 8;
1209 }
1210
1211 /* OFDM TX power */
1212 if (priv->chip_family != RTL818X_CHIP_FAMILY_RTL8180) {
1213 for (i = 0; i < 14; i += 2) {
1214 u16 txpwr;
1215 eeprom_93cx6_read(&eeprom, 0x20 + (i >> 1), &txpwr);
1216 priv->channels[i].hw_value |= (txpwr & 0xFF) << 8;
1217 priv->channels[i + 1].hw_value |= txpwr & 0xFF00;
1218 }
1219 }
1220
1221 if (priv->chip_family == RTL818X_CHIP_FAMILY_RTL8180) {
1222 __le32 anaparam;
1223 eeprom_93cx6_multiread(&eeprom, 0xD, (__le16 *)&anaparam, 2);
1224 priv->anaparam = le32_to_cpu(anaparam);
1225 eeprom_93cx6_read(&eeprom, 0x19, &priv->rfparam);
1226 }
1227
1228 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
1229 RTL818X_EEPROM_CMD_NORMAL);
1230}
1231
Bill Pembertonfb4e8992012-12-03 09:56:40 -05001232static int rtl8180_probe(struct pci_dev *pdev,
Michael Wuf6532112007-10-14 14:43:16 -04001233 const struct pci_device_id *id)
1234{
1235 struct ieee80211_hw *dev;
1236 struct rtl8180_priv *priv;
1237 unsigned long mem_addr, mem_len;
1238 unsigned int io_addr, io_len;
Andrea Merello7d4b8292014-03-15 18:29:38 +01001239 int err;
Michael Wuf6532112007-10-14 14:43:16 -04001240 const char *chip_name, *rf_name = NULL;
1241 u32 reg;
Michael Wuf6532112007-10-14 14:43:16 -04001242
1243 err = pci_enable_device(pdev);
1244 if (err) {
1245 printk(KERN_ERR "%s (rtl8180): Cannot enable new PCI device\n",
1246 pci_name(pdev));
1247 return err;
1248 }
1249
1250 err = pci_request_regions(pdev, KBUILD_MODNAME);
1251 if (err) {
1252 printk(KERN_ERR "%s (rtl8180): Cannot obtain PCI resources\n",
1253 pci_name(pdev));
1254 return err;
1255 }
1256
1257 io_addr = pci_resource_start(pdev, 0);
1258 io_len = pci_resource_len(pdev, 0);
1259 mem_addr = pci_resource_start(pdev, 1);
1260 mem_len = pci_resource_len(pdev, 1);
1261
1262 if (mem_len < sizeof(struct rtl818x_csr) ||
1263 io_len < sizeof(struct rtl818x_csr)) {
1264 printk(KERN_ERR "%s (rtl8180): Too short PCI resources\n",
1265 pci_name(pdev));
1266 err = -ENOMEM;
1267 goto err_free_reg;
1268 }
1269
John W. Linville9e385c52010-05-10 14:24:34 -04001270 if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) ||
1271 (err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))) {
Michael Wuf6532112007-10-14 14:43:16 -04001272 printk(KERN_ERR "%s (rtl8180): No suitable DMA available\n",
1273 pci_name(pdev));
1274 goto err_free_reg;
1275 }
1276
1277 pci_set_master(pdev);
1278
1279 dev = ieee80211_alloc_hw(sizeof(*priv), &rtl8180_ops);
1280 if (!dev) {
1281 printk(KERN_ERR "%s (rtl8180): ieee80211 alloc failed\n",
1282 pci_name(pdev));
1283 err = -ENOMEM;
1284 goto err_free_reg;
1285 }
1286
1287 priv = dev->priv;
1288 priv->pdev = pdev;
1289
Johannes Berge6a98542008-10-21 12:40:02 +02001290 dev->max_rates = 2;
Michael Wuf6532112007-10-14 14:43:16 -04001291 SET_IEEE80211_DEV(dev, &pdev->dev);
1292 pci_set_drvdata(pdev, dev);
1293
1294 priv->map = pci_iomap(pdev, 1, mem_len);
1295 if (!priv->map)
1296 priv->map = pci_iomap(pdev, 0, io_len);
1297
1298 if (!priv->map) {
1299 printk(KERN_ERR "%s (rtl8180): Cannot map device memory\n",
1300 pci_name(pdev));
1301 goto err_free_dev;
1302 }
1303
Johannes Berg8318d782008-01-24 19:38:38 +01001304 BUILD_BUG_ON(sizeof(priv->channels) != sizeof(rtl818x_channels));
1305 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(rtl818x_rates));
1306
Michael Wuf6532112007-10-14 14:43:16 -04001307 memcpy(priv->channels, rtl818x_channels, sizeof(rtl818x_channels));
1308 memcpy(priv->rates, rtl818x_rates, sizeof(rtl818x_rates));
Johannes Berg8318d782008-01-24 19:38:38 +01001309
1310 priv->band.band = IEEE80211_BAND_2GHZ;
1311 priv->band.channels = priv->channels;
1312 priv->band.n_channels = ARRAY_SIZE(rtl818x_channels);
1313 priv->band.bitrates = priv->rates;
1314 priv->band.n_bitrates = 4;
1315 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
1316
Michael Wuf6532112007-10-14 14:43:16 -04001317 dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
Bruno Randolf566bfe52008-05-08 19:15:40 +02001318 IEEE80211_HW_RX_INCLUDES_FCS |
1319 IEEE80211_HW_SIGNAL_UNSPEC;
John W. Linvillec809e862010-05-06 16:49:40 -04001320 dev->vif_data_size = sizeof(struct rtl8180_vif);
1321 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
1322 BIT(NL80211_IFTYPE_ADHOC);
Bruno Randolf566bfe52008-05-08 19:15:40 +02001323 dev->max_signal = 65;
Michael Wuf6532112007-10-14 14:43:16 -04001324
1325 reg = rtl818x_ioread32(priv, &priv->map->TX_CONF);
1326 reg &= RTL818X_TX_CONF_HWVER_MASK;
1327 switch (reg) {
1328 case RTL818X_TX_CONF_R8180_ABCD:
1329 chip_name = "RTL8180";
Andrea Merello6caefd12014-03-08 18:36:37 +01001330 priv->chip_family = RTL818X_CHIP_FAMILY_RTL8180;
Michael Wuf6532112007-10-14 14:43:16 -04001331 break;
Andrea Merello6caefd12014-03-08 18:36:37 +01001332
Michael Wuf6532112007-10-14 14:43:16 -04001333 case RTL818X_TX_CONF_R8180_F:
1334 chip_name = "RTL8180vF";
Andrea Merello6caefd12014-03-08 18:36:37 +01001335 priv->chip_family = RTL818X_CHIP_FAMILY_RTL8180;
Michael Wuf6532112007-10-14 14:43:16 -04001336 break;
Andrea Merello6caefd12014-03-08 18:36:37 +01001337
Michael Wuf6532112007-10-14 14:43:16 -04001338 case RTL818X_TX_CONF_R8185_ABC:
1339 chip_name = "RTL8185";
Andrea Merello6caefd12014-03-08 18:36:37 +01001340 priv->chip_family = RTL818X_CHIP_FAMILY_RTL8185;
Michael Wuf6532112007-10-14 14:43:16 -04001341 break;
Andrea Merello6caefd12014-03-08 18:36:37 +01001342
Michael Wuf6532112007-10-14 14:43:16 -04001343 case RTL818X_TX_CONF_R8185_D:
1344 chip_name = "RTL8185vD";
Andrea Merello6caefd12014-03-08 18:36:37 +01001345 priv->chip_family = RTL818X_CHIP_FAMILY_RTL8185;
Michael Wuf6532112007-10-14 14:43:16 -04001346 break;
1347 default:
1348 printk(KERN_ERR "%s (rtl8180): Unknown chip! (0x%x)\n",
1349 pci_name(pdev), reg >> 25);
1350 goto err_iounmap;
1351 }
1352
Andrea Merellofd6564f2014-03-22 18:51:20 +01001353 /* we declare to MAC80211 all the queues except for beacon queue
1354 * that will be eventually handled by DRV.
1355 * TX rings are arranged in such a way that lower is the IDX,
1356 * higher is the priority, in order to achieve direct mapping
1357 * with mac80211, however the beacon queue is an exception and it
1358 * is mapped on the highst tx ring IDX.
1359 */
1360 dev->queues = RTL8180_NR_TX_QUEUES - 1;
1361
Andrea Merello6caefd12014-03-08 18:36:37 +01001362 if (priv->chip_family != RTL818X_CHIP_FAMILY_RTL8180) {
Johannes Berg8318d782008-01-24 19:38:38 +01001363 priv->band.n_bitrates = ARRAY_SIZE(rtl818x_rates);
Michael Wuf6532112007-10-14 14:43:16 -04001364 pci_try_set_mwi(pdev);
1365 }
1366
Andrea Merello7d4b8292014-03-15 18:29:38 +01001367 rtl8180_eeprom_read(priv);
Michael Wuf6532112007-10-14 14:43:16 -04001368
Andrea Merello7d4b8292014-03-15 18:29:38 +01001369 switch (priv->rf_type) {
Michael Wuf6532112007-10-14 14:43:16 -04001370 case 1: rf_name = "Intersil";
1371 break;
1372 case 2: rf_name = "RFMD";
1373 break;
1374 case 3: priv->rf = &sa2400_rf_ops;
1375 break;
1376 case 4: priv->rf = &max2820_rf_ops;
1377 break;
1378 case 5: priv->rf = &grf5101_rf_ops;
1379 break;
1380 case 9: priv->rf = rtl8180_detect_rf(dev);
1381 break;
1382 case 10:
1383 rf_name = "RTL8255";
1384 break;
1385 default:
1386 printk(KERN_ERR "%s (rtl8180): Unknown RF! (0x%x)\n",
Andrea Merello7d4b8292014-03-15 18:29:38 +01001387 pci_name(pdev), priv->rf_type);
Michael Wuf6532112007-10-14 14:43:16 -04001388 goto err_iounmap;
1389 }
1390
1391 if (!priv->rf) {
1392 printk(KERN_ERR "%s (rtl8180): %s RF frontend not supported!\n",
1393 pci_name(pdev), rf_name);
1394 goto err_iounmap;
1395 }
1396
Andrea Merello7d4b8292014-03-15 18:29:38 +01001397 if (!is_valid_ether_addr(priv->mac_addr)) {
Michael Wuf6532112007-10-14 14:43:16 -04001398 printk(KERN_WARNING "%s (rtl8180): Invalid hwaddr! Using"
1399 " randomly generated MAC addr\n", pci_name(pdev));
Andrea Merello7d4b8292014-03-15 18:29:38 +01001400 eth_random_addr(priv->mac_addr);
Michael Wuf6532112007-10-14 14:43:16 -04001401 }
Andrea Merello7d4b8292014-03-15 18:29:38 +01001402 SET_IEEE80211_PERM_ADDR(dev, priv->mac_addr);
Michael Wuf6532112007-10-14 14:43:16 -04001403
1404 spin_lock_init(&priv->lock);
1405
1406 err = ieee80211_register_hw(dev);
1407 if (err) {
1408 printk(KERN_ERR "%s (rtl8180): Cannot register device\n",
1409 pci_name(pdev));
1410 goto err_iounmap;
1411 }
1412
Joe Perchesc96c31e2010-07-26 14:39:58 -07001413 wiphy_info(dev->wiphy, "hwaddr %pm, %s + %s\n",
Andrea Merello7d4b8292014-03-15 18:29:38 +01001414 priv->mac_addr, chip_name, priv->rf->name);
Michael Wuf6532112007-10-14 14:43:16 -04001415
1416 return 0;
1417
1418 err_iounmap:
andrea merello0269da22014-02-18 02:10:41 +01001419 pci_iounmap(pdev, priv->map);
Michael Wuf6532112007-10-14 14:43:16 -04001420
1421 err_free_dev:
Michael Wuf6532112007-10-14 14:43:16 -04001422 ieee80211_free_hw(dev);
1423
1424 err_free_reg:
1425 pci_release_regions(pdev);
1426 pci_disable_device(pdev);
1427 return err;
1428}
1429
Bill Pembertonfb4e8992012-12-03 09:56:40 -05001430static void rtl8180_remove(struct pci_dev *pdev)
Michael Wuf6532112007-10-14 14:43:16 -04001431{
1432 struct ieee80211_hw *dev = pci_get_drvdata(pdev);
1433 struct rtl8180_priv *priv;
1434
1435 if (!dev)
1436 return;
1437
1438 ieee80211_unregister_hw(dev);
1439
1440 priv = dev->priv;
1441
1442 pci_iounmap(pdev, priv->map);
1443 pci_release_regions(pdev);
1444 pci_disable_device(pdev);
1445 ieee80211_free_hw(dev);
1446}
1447
1448#ifdef CONFIG_PM
1449static int rtl8180_suspend(struct pci_dev *pdev, pm_message_t state)
1450{
1451 pci_save_state(pdev);
1452 pci_set_power_state(pdev, pci_choose_state(pdev, state));
1453 return 0;
1454}
1455
1456static int rtl8180_resume(struct pci_dev *pdev)
1457{
1458 pci_set_power_state(pdev, PCI_D0);
1459 pci_restore_state(pdev);
1460 return 0;
1461}
1462
1463#endif /* CONFIG_PM */
1464
1465static struct pci_driver rtl8180_driver = {
1466 .name = KBUILD_MODNAME,
1467 .id_table = rtl8180_table,
1468 .probe = rtl8180_probe,
Bill Pembertonfb4e8992012-12-03 09:56:40 -05001469 .remove = rtl8180_remove,
Michael Wuf6532112007-10-14 14:43:16 -04001470#ifdef CONFIG_PM
1471 .suspend = rtl8180_suspend,
1472 .resume = rtl8180_resume,
1473#endif /* CONFIG_PM */
1474};
1475
Axel Lin5b0a3b72012-04-14 10:38:36 +08001476module_pci_driver(rtl8180_driver);