txrx.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940
  1. /*
  2. * Common code for mac80211 Prism54 drivers
  3. *
  4. * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
  5. * Copyright (c) 2007-2009, Christian Lamparter <chunkeey@web.de>
  6. * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
  7. *
  8. * Based on:
  9. * - the islsm (softmac prism54) driver, which is:
  10. * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
  11. * - stlc45xx driver
  12. * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. */
  18. #include <linux/export.h>
  19. #include <linux/firmware.h>
  20. #include <linux/etherdevice.h>
  21. #include <asm/div64.h>
  22. #include <net/mac80211.h>
  23. #include "p54.h"
  24. #include "lmac.h"
  25. #ifdef P54_MM_DEBUG
  26. static void p54_dump_tx_queue(struct p54_common *priv)
  27. {
  28. unsigned long flags;
  29. struct ieee80211_tx_info *info;
  30. struct p54_tx_info *range;
  31. struct sk_buff *skb;
  32. struct p54_hdr *hdr;
  33. unsigned int i = 0;
  34. u32 prev_addr;
  35. u32 largest_hole = 0, free;
  36. spin_lock_irqsave(&priv->tx_queue.lock, flags);
  37. wiphy_debug(priv->hw->wiphy, "/ --- tx queue dump (%d entries) ---\n",
  38. skb_queue_len(&priv->tx_queue));
  39. prev_addr = priv->rx_start;
  40. skb_queue_walk(&priv->tx_queue, skb) {
  41. info = IEEE80211_SKB_CB(skb);
  42. range = (void *) info->rate_driver_data;
  43. hdr = (void *) skb->data;
  44. free = range->start_addr - prev_addr;
  45. wiphy_debug(priv->hw->wiphy,
  46. "| [%02d] => [skb:%p skb_len:0x%04x "
  47. "hdr:{flags:%02x len:%04x req_id:%04x type:%02x} "
  48. "mem:{start:%04x end:%04x, free:%d}]\n",
  49. i++, skb, skb->len,
  50. le16_to_cpu(hdr->flags), le16_to_cpu(hdr->len),
  51. le32_to_cpu(hdr->req_id), le16_to_cpu(hdr->type),
  52. range->start_addr, range->end_addr, free);
  53. prev_addr = range->end_addr;
  54. largest_hole = max(largest_hole, free);
  55. }
  56. free = priv->rx_end - prev_addr;
  57. largest_hole = max(largest_hole, free);
  58. wiphy_debug(priv->hw->wiphy,
  59. "\\ --- [free: %d], largest free block: %d ---\n",
  60. free, largest_hole);
  61. spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
  62. }
  63. #endif /* P54_MM_DEBUG */
  64. /*
  65. * So, the firmware is somewhat stupid and doesn't know what places in its
  66. * memory incoming data should go to. By poking around in the firmware, we
  67. * can find some unused memory to upload our packets to. However, data that we
  68. * want the card to TX needs to stay intact until the card has told us that
  69. * it is done with it. This function finds empty places we can upload to and
  70. * marks allocated areas as reserved if necessary. p54_find_and_unlink_skb or
  71. * p54_free_skb frees allocated areas.
  72. */
  73. static int p54_assign_address(struct p54_common *priv, struct sk_buff *skb)
  74. {
  75. struct sk_buff *entry, *target_skb = NULL;
  76. struct ieee80211_tx_info *info;
  77. struct p54_tx_info *range;
  78. struct p54_hdr *data = (void *) skb->data;
  79. unsigned long flags;
  80. u32 last_addr = priv->rx_start;
  81. u32 target_addr = priv->rx_start;
  82. u16 len = priv->headroom + skb->len + priv->tailroom + 3;
  83. info = IEEE80211_SKB_CB(skb);
  84. range = (void *) info->rate_driver_data;
  85. len = (range->extra_len + len) & ~0x3;
  86. spin_lock_irqsave(&priv->tx_queue.lock, flags);
  87. if (unlikely(skb_queue_len(&priv->tx_queue) == 32)) {
  88. /*
  89. * The tx_queue is now really full.
  90. *
  91. * TODO: check if the device has crashed and reset it.
  92. */
  93. spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
  94. return -EBUSY;
  95. }
  96. skb_queue_walk(&priv->tx_queue, entry) {
  97. u32 hole_size;
  98. info = IEEE80211_SKB_CB(entry);
  99. range = (void *) info->rate_driver_data;
  100. hole_size = range->start_addr - last_addr;
  101. if (!target_skb && hole_size >= len) {
  102. target_skb = entry->prev;
  103. hole_size -= len;
  104. target_addr = last_addr;
  105. break;
  106. }
  107. last_addr = range->end_addr;
  108. }
  109. if (unlikely(!target_skb)) {
  110. if (priv->rx_end - last_addr >= len) {
  111. target_skb = priv->tx_queue.prev;
  112. if (!skb_queue_empty(&priv->tx_queue)) {
  113. info = IEEE80211_SKB_CB(target_skb);
  114. range = (void *)info->rate_driver_data;
  115. target_addr = range->end_addr;
  116. }
  117. } else {
  118. spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
  119. return -ENOSPC;
  120. }
  121. }
  122. info = IEEE80211_SKB_CB(skb);
  123. range = (void *) info->rate_driver_data;
  124. range->start_addr = target_addr;
  125. range->end_addr = target_addr + len;
  126. data->req_id = cpu_to_le32(target_addr + priv->headroom);
  127. if (IS_DATA_FRAME(skb) &&
  128. unlikely(GET_HW_QUEUE(skb) == P54_QUEUE_BEACON))
  129. priv->beacon_req_id = data->req_id;
  130. __skb_queue_after(&priv->tx_queue, target_skb, skb);
  131. spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
  132. return 0;
  133. }
  134. static void p54_tx_pending(struct p54_common *priv)
  135. {
  136. struct sk_buff *skb;
  137. int ret;
  138. skb = skb_dequeue(&priv->tx_pending);
  139. if (unlikely(!skb))
  140. return ;
  141. ret = p54_assign_address(priv, skb);
  142. if (unlikely(ret))
  143. skb_queue_head(&priv->tx_pending, skb);
  144. else
  145. priv->tx(priv->hw, skb);
  146. }
  147. static void p54_wake_queues(struct p54_common *priv)
  148. {
  149. unsigned long flags;
  150. unsigned int i;
  151. if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
  152. return ;
  153. p54_tx_pending(priv);
  154. spin_lock_irqsave(&priv->tx_stats_lock, flags);
  155. for (i = 0; i < priv->hw->queues; i++) {
  156. if (priv->tx_stats[i + P54_QUEUE_DATA].len <
  157. priv->tx_stats[i + P54_QUEUE_DATA].limit)
  158. ieee80211_wake_queue(priv->hw, i);
  159. }
  160. spin_unlock_irqrestore(&priv->tx_stats_lock, flags);
  161. }
  162. static int p54_tx_qos_accounting_alloc(struct p54_common *priv,
  163. struct sk_buff *skb,
  164. const u16 p54_queue)
  165. {
  166. struct p54_tx_queue_stats *queue;
  167. unsigned long flags;
  168. if (WARN_ON(p54_queue >= P54_QUEUE_NUM))
  169. return -EINVAL;
  170. queue = &priv->tx_stats[p54_queue];
  171. spin_lock_irqsave(&priv->tx_stats_lock, flags);
  172. if (unlikely(queue->len >= queue->limit && IS_QOS_QUEUE(p54_queue))) {
  173. spin_unlock_irqrestore(&priv->tx_stats_lock, flags);
  174. return -ENOSPC;
  175. }
  176. queue->len++;
  177. queue->count++;
  178. if (unlikely(queue->len == queue->limit && IS_QOS_QUEUE(p54_queue))) {
  179. u16 ac_queue = p54_queue - P54_QUEUE_DATA;
  180. ieee80211_stop_queue(priv->hw, ac_queue);
  181. }
  182. spin_unlock_irqrestore(&priv->tx_stats_lock, flags);
  183. return 0;
  184. }
  185. static void p54_tx_qos_accounting_free(struct p54_common *priv,
  186. struct sk_buff *skb)
  187. {
  188. if (IS_DATA_FRAME(skb)) {
  189. unsigned long flags;
  190. spin_lock_irqsave(&priv->tx_stats_lock, flags);
  191. priv->tx_stats[GET_HW_QUEUE(skb)].len--;
  192. spin_unlock_irqrestore(&priv->tx_stats_lock, flags);
  193. if (unlikely(GET_HW_QUEUE(skb) == P54_QUEUE_BEACON)) {
  194. if (priv->beacon_req_id == GET_REQ_ID(skb)) {
  195. /* this is the active beacon set anymore */
  196. priv->beacon_req_id = 0;
  197. }
  198. complete(&priv->beacon_comp);
  199. }
  200. }
  201. p54_wake_queues(priv);
  202. }
  203. void p54_free_skb(struct ieee80211_hw *dev, struct sk_buff *skb)
  204. {
  205. struct p54_common *priv = dev->priv;
  206. if (unlikely(!skb))
  207. return ;
  208. skb_unlink(skb, &priv->tx_queue);
  209. p54_tx_qos_accounting_free(priv, skb);
  210. ieee80211_free_txskb(dev, skb);
  211. }
  212. EXPORT_SYMBOL_GPL(p54_free_skb);
  213. static struct sk_buff *p54_find_and_unlink_skb(struct p54_common *priv,
  214. const __le32 req_id)
  215. {
  216. struct sk_buff *entry;
  217. unsigned long flags;
  218. spin_lock_irqsave(&priv->tx_queue.lock, flags);
  219. skb_queue_walk(&priv->tx_queue, entry) {
  220. struct p54_hdr *hdr = (struct p54_hdr *) entry->data;
  221. if (hdr->req_id == req_id) {
  222. __skb_unlink(entry, &priv->tx_queue);
  223. spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
  224. p54_tx_qos_accounting_free(priv, entry);
  225. return entry;
  226. }
  227. }
  228. spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
  229. return NULL;
  230. }
  231. void p54_tx(struct p54_common *priv, struct sk_buff *skb)
  232. {
  233. skb_queue_tail(&priv->tx_pending, skb);
  234. p54_tx_pending(priv);
  235. }
  236. static int p54_rssi_to_dbm(struct p54_common *priv, int rssi)
  237. {
  238. if (priv->rxhw != 5) {
  239. return ((rssi * priv->cur_rssi->mul) / 64 +
  240. priv->cur_rssi->add) / 4;
  241. } else {
  242. /*
  243. * TODO: find the correct formula
  244. */
  245. return rssi / 2 - 110;
  246. }
  247. }
  248. /*
  249. * Even if the firmware is capable of dealing with incoming traffic,
  250. * while dozing, we have to prepared in case mac80211 uses PS-POLL
  251. * to retrieve outstanding frames from our AP.
  252. * (see comment in net/mac80211/mlme.c @ line 1993)
  253. */
  254. static void p54_pspoll_workaround(struct p54_common *priv, struct sk_buff *skb)
  255. {
  256. struct ieee80211_hdr *hdr = (void *) skb->data;
  257. struct ieee80211_tim_ie *tim_ie;
  258. u8 *tim;
  259. u8 tim_len;
  260. bool new_psm;
  261. /* only beacons have a TIM IE */
  262. if (!ieee80211_is_beacon(hdr->frame_control))
  263. return;
  264. if (!priv->aid)
  265. return;
  266. /* only consider beacons from the associated BSSID */
  267. if (!ether_addr_equal_64bits(hdr->addr3, priv->bssid))
  268. return;
  269. tim = p54_find_ie(skb, WLAN_EID_TIM);
  270. if (!tim)
  271. return;
  272. tim_len = tim[1];
  273. tim_ie = (struct ieee80211_tim_ie *) &tim[2];
  274. new_psm = ieee80211_check_tim(tim_ie, tim_len, priv->aid);
  275. if (new_psm != priv->powersave_override) {
  276. priv->powersave_override = new_psm;
  277. p54_set_ps(priv);
  278. }
  279. }
  280. static int p54_rx_data(struct p54_common *priv, struct sk_buff *skb)
  281. {
  282. struct p54_rx_data *hdr = (struct p54_rx_data *) skb->data;
  283. struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
  284. u16 freq = le16_to_cpu(hdr->freq);
  285. size_t header_len = sizeof(*hdr);
  286. u32 tsf32;
  287. u8 rate = hdr->rate & 0xf;
  288. /*
  289. * If the device is in a unspecified state we have to
  290. * ignore all data frames. Else we could end up with a
  291. * nasty crash.
  292. */
  293. if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
  294. return 0;
  295. if (!(hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_IN_FCS_GOOD)))
  296. return 0;
  297. if (hdr->decrypt_status == P54_DECRYPT_OK)
  298. rx_status->flag |= RX_FLAG_DECRYPTED;
  299. if ((hdr->decrypt_status == P54_DECRYPT_FAIL_MICHAEL) ||
  300. (hdr->decrypt_status == P54_DECRYPT_FAIL_TKIP))
  301. rx_status->flag |= RX_FLAG_MMIC_ERROR;
  302. rx_status->signal = p54_rssi_to_dbm(priv, hdr->rssi);
  303. if (hdr->rate & 0x10)
  304. rx_status->flag |= RX_FLAG_SHORTPRE;
  305. if (priv->hw->conf.chandef.chan->band == IEEE80211_BAND_5GHZ)
  306. rx_status->rate_idx = (rate < 4) ? 0 : rate - 4;
  307. else
  308. rx_status->rate_idx = rate;
  309. rx_status->freq = freq;
  310. rx_status->band = priv->hw->conf.chandef.chan->band;
  311. rx_status->antenna = hdr->antenna;
  312. tsf32 = le32_to_cpu(hdr->tsf32);
  313. if (tsf32 < priv->tsf_low32)
  314. priv->tsf_high32++;
  315. rx_status->mactime = ((u64)priv->tsf_high32) << 32 | tsf32;
  316. priv->tsf_low32 = tsf32;
  317. /* LMAC API Page 10/29 - s_lm_data_in - clock
  318. * "usec accurate timestamp of hardware clock
  319. * at end of frame (before OFDM SIFS EOF padding"
  320. */
  321. rx_status->flag |= RX_FLAG_MACTIME_END;
  322. if (hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN))
  323. header_len += hdr->align[0];
  324. skb_pull(skb, header_len);
  325. skb_trim(skb, le16_to_cpu(hdr->len));
  326. if (unlikely(priv->hw->conf.flags & IEEE80211_CONF_PS))
  327. p54_pspoll_workaround(priv, skb);
  328. ieee80211_rx_irqsafe(priv->hw, skb);
  329. ieee80211_queue_delayed_work(priv->hw, &priv->work,
  330. msecs_to_jiffies(P54_STATISTICS_UPDATE));
  331. return -1;
  332. }
  333. static void p54_rx_frame_sent(struct p54_common *priv, struct sk_buff *skb)
  334. {
  335. struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
  336. struct p54_frame_sent *payload = (struct p54_frame_sent *) hdr->data;
  337. struct ieee80211_tx_info *info;
  338. struct p54_hdr *entry_hdr;
  339. struct p54_tx_data *entry_data;
  340. struct sk_buff *entry;
  341. unsigned int pad = 0, frame_len;
  342. int count, idx;
  343. entry = p54_find_and_unlink_skb(priv, hdr->req_id);
  344. if (unlikely(!entry))
  345. return ;
  346. frame_len = entry->len;
  347. info = IEEE80211_SKB_CB(entry);
  348. entry_hdr = (struct p54_hdr *) entry->data;
  349. entry_data = (struct p54_tx_data *) entry_hdr->data;
  350. priv->stats.dot11ACKFailureCount += payload->tries - 1;
  351. /*
  352. * Frames in P54_QUEUE_FWSCAN and P54_QUEUE_BEACON are
  353. * generated by the driver. Therefore tx_status is bogus
  354. * and we don't want to confuse the mac80211 stack.
  355. */
  356. if (unlikely(entry_data->hw_queue < P54_QUEUE_FWSCAN)) {
  357. dev_kfree_skb_any(entry);
  358. return ;
  359. }
  360. /*
  361. * Clear manually, ieee80211_tx_info_clear_status would
  362. * clear the counts too and we need them.
  363. */
  364. memset(&info->status.ack_signal, 0,
  365. sizeof(struct ieee80211_tx_info) -
  366. offsetof(struct ieee80211_tx_info, status.ack_signal));
  367. BUILD_BUG_ON(offsetof(struct ieee80211_tx_info,
  368. status.ack_signal) != 20);
  369. if (entry_hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN))
  370. pad = entry_data->align[0];
  371. /* walk through the rates array and adjust the counts */
  372. count = payload->tries;
  373. for (idx = 0; idx < 4; idx++) {
  374. if (count >= info->status.rates[idx].count) {
  375. count -= info->status.rates[idx].count;
  376. } else if (count > 0) {
  377. info->status.rates[idx].count = count;
  378. count = 0;
  379. } else {
  380. info->status.rates[idx].idx = -1;
  381. info->status.rates[idx].count = 0;
  382. }
  383. }
  384. if (!(info->flags & IEEE80211_TX_CTL_NO_ACK) &&
  385. !(payload->status & P54_TX_FAILED))
  386. info->flags |= IEEE80211_TX_STAT_ACK;
  387. if (payload->status & P54_TX_PSM_CANCELLED)
  388. info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
  389. info->status.ack_signal = p54_rssi_to_dbm(priv,
  390. (int)payload->ack_rssi);
  391. /* Undo all changes to the frame. */
  392. switch (entry_data->key_type) {
  393. case P54_CRYPTO_TKIPMICHAEL: {
  394. u8 *iv = (u8 *)(entry_data->align + pad +
  395. entry_data->crypt_offset);
  396. /* Restore the original TKIP IV. */
  397. iv[2] = iv[0];
  398. iv[0] = iv[1];
  399. iv[1] = (iv[0] | 0x20) & 0x7f; /* WEPSeed - 8.3.2.2 */
  400. frame_len -= 12; /* remove TKIP_MMIC + TKIP_ICV */
  401. break;
  402. }
  403. case P54_CRYPTO_AESCCMP:
  404. frame_len -= 8; /* remove CCMP_MIC */
  405. break;
  406. case P54_CRYPTO_WEP:
  407. frame_len -= 4; /* remove WEP_ICV */
  408. break;
  409. }
  410. skb_trim(entry, frame_len);
  411. skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data));
  412. ieee80211_tx_status_irqsafe(priv->hw, entry);
  413. }
  414. static void p54_rx_eeprom_readback(struct p54_common *priv,
  415. struct sk_buff *skb)
  416. {
  417. struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
  418. struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data;
  419. struct sk_buff *tmp;
  420. if (!priv->eeprom)
  421. return ;
  422. if (priv->fw_var >= 0x509) {
  423. memcpy(priv->eeprom, eeprom->v2.data,
  424. le16_to_cpu(eeprom->v2.len));
  425. } else {
  426. memcpy(priv->eeprom, eeprom->v1.data,
  427. le16_to_cpu(eeprom->v1.len));
  428. }
  429. priv->eeprom = NULL;
  430. tmp = p54_find_and_unlink_skb(priv, hdr->req_id);
  431. dev_kfree_skb_any(tmp);
  432. complete(&priv->eeprom_comp);
  433. }
  434. static void p54_rx_stats(struct p54_common *priv, struct sk_buff *skb)
  435. {
  436. struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
  437. struct p54_statistics *stats = (struct p54_statistics *) hdr->data;
  438. struct sk_buff *tmp;
  439. struct ieee80211_channel *chan;
  440. unsigned int i, rssi, tx, cca, dtime, dtotal, dcca, dtx, drssi, unit;
  441. u32 tsf32;
  442. if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
  443. return ;
  444. tsf32 = le32_to_cpu(stats->tsf32);
  445. if (tsf32 < priv->tsf_low32)
  446. priv->tsf_high32++;
  447. priv->tsf_low32 = tsf32;
  448. priv->stats.dot11RTSFailureCount = le32_to_cpu(stats->rts_fail);
  449. priv->stats.dot11RTSSuccessCount = le32_to_cpu(stats->rts_success);
  450. priv->stats.dot11FCSErrorCount = le32_to_cpu(stats->rx_bad_fcs);
  451. priv->noise = p54_rssi_to_dbm(priv, le32_to_cpu(stats->noise));
  452. /*
  453. * STSW450X LMAC API page 26 - 3.8 Statistics
  454. * "The exact measurement period can be derived from the
  455. * timestamp member".
  456. */
  457. dtime = tsf32 - priv->survey_raw.timestamp;
  458. /*
  459. * STSW450X LMAC API page 26 - 3.8.1 Noise histogram
  460. * The LMAC samples RSSI, CCA and transmit state at regular
  461. * periods (typically 8 times per 1k [as in 1024] usec).
  462. */
  463. cca = le32_to_cpu(stats->sample_cca);
  464. tx = le32_to_cpu(stats->sample_tx);
  465. rssi = 0;
  466. for (i = 0; i < ARRAY_SIZE(stats->sample_noise); i++)
  467. rssi += le32_to_cpu(stats->sample_noise[i]);
  468. dcca = cca - priv->survey_raw.cached_cca;
  469. drssi = rssi - priv->survey_raw.cached_rssi;
  470. dtx = tx - priv->survey_raw.cached_tx;
  471. dtotal = dcca + drssi + dtx;
  472. /*
  473. * update statistics when more than a second is over since the
  474. * last call, or when a update is badly needed.
  475. */
  476. if (dtotal && (priv->update_stats || dtime >= USEC_PER_SEC) &&
  477. dtime >= dtotal) {
  478. priv->survey_raw.timestamp = tsf32;
  479. priv->update_stats = false;
  480. unit = dtime / dtotal;
  481. if (dcca) {
  482. priv->survey_raw.cca += dcca * unit;
  483. priv->survey_raw.cached_cca = cca;
  484. }
  485. if (dtx) {
  486. priv->survey_raw.tx += dtx * unit;
  487. priv->survey_raw.cached_tx = tx;
  488. }
  489. if (drssi) {
  490. priv->survey_raw.rssi += drssi * unit;
  491. priv->survey_raw.cached_rssi = rssi;
  492. }
  493. /* 1024 usec / 8 times = 128 usec / time */
  494. if (!(priv->phy_ps || priv->phy_idle))
  495. priv->survey_raw.active += dtotal * unit;
  496. else
  497. priv->survey_raw.active += (dcca + dtx) * unit;
  498. }
  499. chan = priv->curchan;
  500. if (chan) {
  501. struct survey_info *survey = &priv->survey[chan->hw_value];
  502. survey->noise = clamp(priv->noise, -128, 127);
  503. survey->time = priv->survey_raw.active;
  504. survey->time_tx = priv->survey_raw.tx;
  505. survey->time_busy = priv->survey_raw.tx +
  506. priv->survey_raw.cca;
  507. do_div(survey->time, 1024);
  508. do_div(survey->time_tx, 1024);
  509. do_div(survey->time_busy, 1024);
  510. }
  511. tmp = p54_find_and_unlink_skb(priv, hdr->req_id);
  512. dev_kfree_skb_any(tmp);
  513. complete(&priv->stat_comp);
  514. }
  515. static void p54_rx_trap(struct p54_common *priv, struct sk_buff *skb)
  516. {
  517. struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
  518. struct p54_trap *trap = (struct p54_trap *) hdr->data;
  519. u16 event = le16_to_cpu(trap->event);
  520. u16 freq = le16_to_cpu(trap->frequency);
  521. switch (event) {
  522. case P54_TRAP_BEACON_TX:
  523. break;
  524. case P54_TRAP_RADAR:
  525. wiphy_info(priv->hw->wiphy, "radar (freq:%d MHz)\n", freq);
  526. break;
  527. case P54_TRAP_NO_BEACON:
  528. if (priv->vif)
  529. ieee80211_beacon_loss(priv->vif);
  530. break;
  531. case P54_TRAP_SCAN:
  532. break;
  533. case P54_TRAP_TBTT:
  534. break;
  535. case P54_TRAP_TIMER:
  536. break;
  537. case P54_TRAP_FAA_RADIO_OFF:
  538. wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
  539. break;
  540. case P54_TRAP_FAA_RADIO_ON:
  541. wiphy_rfkill_set_hw_state(priv->hw->wiphy, false);
  542. break;
  543. default:
  544. wiphy_info(priv->hw->wiphy, "received event:%x freq:%d\n",
  545. event, freq);
  546. break;
  547. }
  548. }
  549. static int p54_rx_control(struct p54_common *priv, struct sk_buff *skb)
  550. {
  551. struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
  552. switch (le16_to_cpu(hdr->type)) {
  553. case P54_CONTROL_TYPE_TXDONE:
  554. p54_rx_frame_sent(priv, skb);
  555. break;
  556. case P54_CONTROL_TYPE_TRAP:
  557. p54_rx_trap(priv, skb);
  558. break;
  559. case P54_CONTROL_TYPE_BBP:
  560. break;
  561. case P54_CONTROL_TYPE_STAT_READBACK:
  562. p54_rx_stats(priv, skb);
  563. break;
  564. case P54_CONTROL_TYPE_EEPROM_READBACK:
  565. p54_rx_eeprom_readback(priv, skb);
  566. break;
  567. default:
  568. wiphy_debug(priv->hw->wiphy,
  569. "not handling 0x%02x type control frame\n",
  570. le16_to_cpu(hdr->type));
  571. break;
  572. }
  573. return 0;
  574. }
  575. /* returns zero if skb can be reused */
  576. int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb)
  577. {
  578. struct p54_common *priv = dev->priv;
  579. u16 type = le16_to_cpu(*((__le16 *)skb->data));
  580. if (type & P54_HDR_FLAG_CONTROL)
  581. return p54_rx_control(priv, skb);
  582. else
  583. return p54_rx_data(priv, skb);
  584. }
  585. EXPORT_SYMBOL_GPL(p54_rx);
  586. static void p54_tx_80211_header(struct p54_common *priv, struct sk_buff *skb,
  587. struct ieee80211_tx_info *info,
  588. struct ieee80211_sta *sta,
  589. u8 *queue, u32 *extra_len, u16 *flags, u16 *aid,
  590. bool *burst_possible)
  591. {
  592. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  593. if (ieee80211_is_data_qos(hdr->frame_control))
  594. *burst_possible = true;
  595. else
  596. *burst_possible = false;
  597. if (!(info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ))
  598. *flags |= P54_HDR_FLAG_DATA_OUT_SEQNR;
  599. if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER)
  600. *flags |= P54_HDR_FLAG_DATA_OUT_NOCANCEL;
  601. if (info->flags & IEEE80211_TX_CTL_CLEAR_PS_FILT)
  602. *flags |= P54_HDR_FLAG_DATA_OUT_NOCANCEL;
  603. *queue = skb_get_queue_mapping(skb) + P54_QUEUE_DATA;
  604. switch (priv->mode) {
  605. case NL80211_IFTYPE_MONITOR:
  606. /*
  607. * We have to set P54_HDR_FLAG_DATA_OUT_PROMISC for
  608. * every frame in promiscuous/monitor mode.
  609. * see STSW45x0C LMAC API - page 12.
  610. */
  611. *aid = 0;
  612. *flags |= P54_HDR_FLAG_DATA_OUT_PROMISC;
  613. break;
  614. case NL80211_IFTYPE_STATION:
  615. *aid = 1;
  616. break;
  617. case NL80211_IFTYPE_AP:
  618. case NL80211_IFTYPE_ADHOC:
  619. case NL80211_IFTYPE_MESH_POINT:
  620. if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
  621. *aid = 0;
  622. *queue = P54_QUEUE_CAB;
  623. return;
  624. }
  625. if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) {
  626. if (ieee80211_is_probe_resp(hdr->frame_control)) {
  627. *aid = 0;
  628. *flags |= P54_HDR_FLAG_DATA_OUT_TIMESTAMP |
  629. P54_HDR_FLAG_DATA_OUT_NOCANCEL;
  630. return;
  631. } else if (ieee80211_is_beacon(hdr->frame_control)) {
  632. *aid = 0;
  633. if (info->flags & IEEE80211_TX_CTL_INJECTED) {
  634. /*
  635. * Injecting beacons on top of a AP is
  636. * not a good idea... nevertheless,
  637. * it should be doable.
  638. */
  639. return;
  640. }
  641. *flags |= P54_HDR_FLAG_DATA_OUT_TIMESTAMP;
  642. *queue = P54_QUEUE_BEACON;
  643. *extra_len = IEEE80211_MAX_TIM_LEN;
  644. return;
  645. }
  646. }
  647. if (sta)
  648. *aid = sta->aid;
  649. break;
  650. }
  651. }
  652. static u8 p54_convert_algo(u32 cipher)
  653. {
  654. switch (cipher) {
  655. case WLAN_CIPHER_SUITE_WEP40:
  656. case WLAN_CIPHER_SUITE_WEP104:
  657. return P54_CRYPTO_WEP;
  658. case WLAN_CIPHER_SUITE_TKIP:
  659. return P54_CRYPTO_TKIPMICHAEL;
  660. case WLAN_CIPHER_SUITE_CCMP:
  661. return P54_CRYPTO_AESCCMP;
  662. default:
  663. return 0;
  664. }
  665. }
  666. void p54_tx_80211(struct ieee80211_hw *dev,
  667. struct ieee80211_tx_control *control,
  668. struct sk_buff *skb)
  669. {
  670. struct p54_common *priv = dev->priv;
  671. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  672. struct p54_tx_info *p54info;
  673. struct p54_hdr *hdr;
  674. struct p54_tx_data *txhdr;
  675. unsigned int padding, len, extra_len = 0;
  676. int i, j, ridx;
  677. u16 hdr_flags = 0, aid = 0;
  678. u8 rate, queue = 0, crypt_offset = 0;
  679. u8 cts_rate = 0x20;
  680. u8 rc_flags;
  681. u8 calculated_tries[4];
  682. u8 nrates = 0, nremaining = 8;
  683. bool burst_allowed = false;
  684. p54_tx_80211_header(priv, skb, info, control->sta, &queue, &extra_len,
  685. &hdr_flags, &aid, &burst_allowed);
  686. if (p54_tx_qos_accounting_alloc(priv, skb, queue)) {
  687. ieee80211_free_txskb(dev, skb);
  688. return;
  689. }
  690. padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3;
  691. len = skb->len;
  692. if (info->control.hw_key) {
  693. crypt_offset = ieee80211_get_hdrlen_from_skb(skb);
  694. if (info->control.hw_key->cipher == WLAN_CIPHER_SUITE_TKIP) {
  695. u8 *iv = (u8 *)(skb->data + crypt_offset);
  696. /*
  697. * The firmware excepts that the IV has to have
  698. * this special format
  699. */
  700. iv[1] = iv[0];
  701. iv[0] = iv[2];
  702. iv[2] = 0;
  703. }
  704. }
  705. txhdr = (struct p54_tx_data *) skb_push(skb, sizeof(*txhdr) + padding);
  706. hdr = (struct p54_hdr *) skb_push(skb, sizeof(*hdr));
  707. if (padding)
  708. hdr_flags |= P54_HDR_FLAG_DATA_ALIGN;
  709. hdr->type = cpu_to_le16(aid);
  710. hdr->rts_tries = info->control.rates[0].count;
  711. /*
  712. * we register the rates in perfect order, and
  713. * RTS/CTS won't happen on 5 GHz
  714. */
  715. cts_rate = info->control.rts_cts_rate_idx;
  716. memset(&txhdr->rateset, 0, sizeof(txhdr->rateset));
  717. /* see how many rates got used */
  718. for (i = 0; i < dev->max_rates; i++) {
  719. if (info->control.rates[i].idx < 0)
  720. break;
  721. nrates++;
  722. }
  723. /* limit tries to 8/nrates per rate */
  724. for (i = 0; i < nrates; i++) {
  725. /*
  726. * The magic expression here is equivalent to 8/nrates for
  727. * all values that matter, but avoids division and jumps.
  728. * Note that nrates can only take the values 1 through 4.
  729. */
  730. calculated_tries[i] = min_t(int, ((15 >> nrates) | 1) + 1,
  731. info->control.rates[i].count);
  732. nremaining -= calculated_tries[i];
  733. }
  734. /* if there are tries left, distribute from back to front */
  735. for (i = nrates - 1; nremaining > 0 && i >= 0; i--) {
  736. int tmp = info->control.rates[i].count - calculated_tries[i];
  737. if (tmp <= 0)
  738. continue;
  739. /* RC requested more tries at this rate */
  740. tmp = min_t(int, tmp, nremaining);
  741. calculated_tries[i] += tmp;
  742. nremaining -= tmp;
  743. }
  744. ridx = 0;
  745. for (i = 0; i < nrates && ridx < 8; i++) {
  746. /* we register the rates in perfect order */
  747. rate = info->control.rates[i].idx;
  748. if (info->band == IEEE80211_BAND_5GHZ)
  749. rate += 4;
  750. /* store the count we actually calculated for TX status */
  751. info->control.rates[i].count = calculated_tries[i];
  752. rc_flags = info->control.rates[i].flags;
  753. if (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) {
  754. rate |= 0x10;
  755. cts_rate |= 0x10;
  756. }
  757. if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
  758. burst_allowed = false;
  759. rate |= 0x40;
  760. } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
  761. rate |= 0x20;
  762. burst_allowed = false;
  763. }
  764. for (j = 0; j < calculated_tries[i] && ridx < 8; j++) {
  765. txhdr->rateset[ridx] = rate;
  766. ridx++;
  767. }
  768. }
  769. if (burst_allowed)
  770. hdr_flags |= P54_HDR_FLAG_DATA_OUT_BURST;
  771. /* TODO: enable bursting */
  772. hdr->flags = cpu_to_le16(hdr_flags);
  773. hdr->tries = ridx;
  774. txhdr->rts_rate_idx = 0;
  775. if (info->control.hw_key) {
  776. txhdr->key_type = p54_convert_algo(info->control.hw_key->cipher);
  777. txhdr->key_len = min((u8)16, info->control.hw_key->keylen);
  778. memcpy(txhdr->key, info->control.hw_key->key, txhdr->key_len);
  779. if (info->control.hw_key->cipher == WLAN_CIPHER_SUITE_TKIP) {
  780. /* reserve space for the MIC key */
  781. len += 8;
  782. memcpy(skb_put(skb, 8), &(info->control.hw_key->key
  783. [NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY]), 8);
  784. }
  785. /* reserve some space for ICV */
  786. len += info->control.hw_key->icv_len;
  787. memset(skb_put(skb, info->control.hw_key->icv_len), 0,
  788. info->control.hw_key->icv_len);
  789. } else {
  790. txhdr->key_type = 0;
  791. txhdr->key_len = 0;
  792. }
  793. txhdr->crypt_offset = crypt_offset;
  794. txhdr->hw_queue = queue;
  795. txhdr->backlog = priv->tx_stats[queue].len - 1;
  796. memset(txhdr->durations, 0, sizeof(txhdr->durations));
  797. txhdr->tx_antenna = 2 & priv->tx_diversity_mask;
  798. if (priv->rxhw == 5) {
  799. txhdr->longbow.cts_rate = cts_rate;
  800. txhdr->longbow.output_power = cpu_to_le16(priv->output_power);
  801. } else {
  802. txhdr->normal.output_power = priv->output_power;
  803. txhdr->normal.cts_rate = cts_rate;
  804. }
  805. if (padding)
  806. txhdr->align[0] = padding;
  807. hdr->len = cpu_to_le16(len);
  808. /* modifies skb->cb and with it info, so must be last! */
  809. p54info = (void *) info->rate_driver_data;
  810. p54info->extra_len = extra_len;
  811. p54_tx(priv, skb);
  812. }