PageRenderTime 86ms CodeModel.GetById 38ms RepoModel.GetById 3ms app.codeStats 0ms

/drivers/net/wireless/ath/ath5k/base.h

https://bitbucket.org/wisechild/galaxy-nexus
C++ Header | 286 lines | 179 code | 41 blank | 66 comment | 2 complexity | 2ac41b3d02b40f811ab47ccadcbbbea5 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
  1. /*-
  2. * Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer,
  10. * without modification.
  11. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  12. * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
  13. * redistribution must be conditioned upon including a substantially
  14. * similar Disclaimer requirement for further binary redistribution.
  15. * 3. Neither the names of the above-listed copyright holders nor the names
  16. * of any contributors may be used to endorse or promote products derived
  17. * from this software without specific prior written permission.
  18. *
  19. * Alternatively, this software may be distributed under the terms of the
  20. * GNU General Public License ("GPL") version 2 as published by the Free
  21. * Software Foundation.
  22. *
  23. * NO WARRANTY
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  25. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  26. * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
  27. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  28. * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
  29. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  31. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  32. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  33. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  34. * THE POSSIBILITY OF SUCH DAMAGES.
  35. *
  36. */
  37. /*
  38. * Definitions for the Atheros Wireless LAN controller driver.
  39. */
  40. #ifndef _DEV_ATH_ATHVAR_H
  41. #define _DEV_ATH_ATHVAR_H
  42. #include <linux/interrupt.h>
  43. #include <linux/list.h>
  44. #include <linux/wireless.h>
  45. #include <linux/if_ether.h>
  46. #include <linux/leds.h>
  47. #include <linux/rfkill.h>
  48. #include <linux/workqueue.h>
  49. #include "ath5k.h"
  50. #include "debug.h"
  51. #include "ani.h"
  52. #include "../regd.h"
  53. #include "../ath.h"
  54. #define ATH_RXBUF 40 /* number of RX buffers */
  55. #define ATH_TXBUF 200 /* number of TX buffers */
  56. #define ATH_BCBUF 4 /* number of beacon buffers */
  57. #define ATH5K_TXQ_LEN_MAX (ATH_TXBUF / 4) /* bufs per queue */
  58. #define ATH5K_TXQ_LEN_LOW (ATH5K_TXQ_LEN_MAX / 2) /* low mark */
  59. struct ath5k_buf {
  60. struct list_head list;
  61. struct ath5k_desc *desc; /* virtual addr of desc */
  62. dma_addr_t daddr; /* physical addr of desc */
  63. struct sk_buff *skb; /* skbuff for buf */
  64. dma_addr_t skbaddr;/* physical addr of skb data */
  65. };
  66. /*
  67. * Data transmit queue state. One of these exists for each
  68. * hardware transmit queue. Packets sent to us from above
  69. * are assigned to queues based on their priority. Not all
  70. * devices support a complete set of hardware transmit queues.
  71. * For those devices the array sc_ac2q will map multiple
  72. * priorities to fewer hardware queues (typically all to one
  73. * hardware queue).
  74. */
  75. struct ath5k_txq {
  76. unsigned int qnum; /* hardware q number */
  77. u32 *link; /* link ptr in last TX desc */
  78. struct list_head q; /* transmit queue */
  79. spinlock_t lock; /* lock on q and link */
  80. bool setup;
  81. int txq_len; /* number of queued buffers */
  82. int txq_max; /* max allowed num of queued buffers */
  83. bool txq_poll_mark;
  84. unsigned int txq_stuck; /* informational counter */
  85. };
  86. #define ATH5K_LED_MAX_NAME_LEN 31
  87. /*
  88. * State for LED triggers
  89. */
  90. struct ath5k_led
  91. {
  92. char name[ATH5K_LED_MAX_NAME_LEN + 1]; /* name of the LED in sysfs */
  93. struct ath5k_softc *sc; /* driver state */
  94. struct led_classdev led_dev; /* led classdev */
  95. };
  96. /* Rfkill */
  97. struct ath5k_rfkill {
  98. /* GPIO PIN for rfkill */
  99. u16 gpio;
  100. /* polarity of rfkill GPIO PIN */
  101. bool polarity;
  102. /* RFKILL toggle tasklet */
  103. struct tasklet_struct toggleq;
  104. };
  105. /* statistics */
  106. struct ath5k_statistics {
  107. /* antenna use */
  108. unsigned int antenna_rx[5]; /* frames count per antenna RX */
  109. unsigned int antenna_tx[5]; /* frames count per antenna TX */
  110. /* frame errors */
  111. unsigned int rx_all_count; /* all RX frames, including errors */
  112. unsigned int tx_all_count; /* all TX frames, including errors */
  113. unsigned int rx_bytes_count; /* all RX bytes, including errored pks
  114. * and the MAC headers for each packet
  115. */
  116. unsigned int tx_bytes_count; /* all TX bytes, including errored pkts
  117. * and the MAC headers and padding for
  118. * each packet.
  119. */
  120. unsigned int rxerr_crc;
  121. unsigned int rxerr_phy;
  122. unsigned int rxerr_phy_code[32];
  123. unsigned int rxerr_fifo;
  124. unsigned int rxerr_decrypt;
  125. unsigned int rxerr_mic;
  126. unsigned int rxerr_proc;
  127. unsigned int rxerr_jumbo;
  128. unsigned int txerr_retry;
  129. unsigned int txerr_fifo;
  130. unsigned int txerr_filt;
  131. /* MIB counters */
  132. unsigned int ack_fail;
  133. unsigned int rts_fail;
  134. unsigned int rts_ok;
  135. unsigned int fcs_error;
  136. unsigned int beacons;
  137. unsigned int mib_intr;
  138. unsigned int rxorn_intr;
  139. unsigned int rxeol_intr;
  140. };
  141. #if CHAN_DEBUG
  142. #define ATH_CHAN_MAX (26+26+26+200+200)
  143. #else
  144. #define ATH_CHAN_MAX (14+14+14+252+20)
  145. #endif
  146. struct ath5k_vif {
  147. bool assoc; /* are we associated or not */
  148. enum nl80211_iftype opmode;
  149. int bslot;
  150. struct ath5k_buf *bbuf; /* beacon buffer */
  151. u8 lladdr[ETH_ALEN];
  152. };
  153. /* Software Carrier, keeps track of the driver state
  154. * associated with an instance of a device */
  155. struct ath5k_softc {
  156. struct pci_dev *pdev;
  157. struct device *dev; /* for dma mapping */
  158. int irq;
  159. u16 devid;
  160. void __iomem *iobase; /* address of the device */
  161. struct mutex lock; /* dev-level lock */
  162. struct ieee80211_hw *hw; /* IEEE 802.11 common */
  163. struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
  164. struct ieee80211_channel channels[ATH_CHAN_MAX];
  165. struct ieee80211_rate rates[IEEE80211_NUM_BANDS][AR5K_MAX_RATES];
  166. s8 rate_idx[IEEE80211_NUM_BANDS][AR5K_MAX_RATES];
  167. enum nl80211_iftype opmode;
  168. struct ath5k_hw *ah; /* Atheros HW */
  169. #ifdef CONFIG_ATH5K_DEBUG
  170. struct ath5k_dbg_info debug; /* debug info */
  171. #endif /* CONFIG_ATH5K_DEBUG */
  172. struct ath5k_buf *bufptr; /* allocated buffer ptr */
  173. struct ath5k_desc *desc; /* TX/RX descriptors */
  174. dma_addr_t desc_daddr; /* DMA (physical) address */
  175. size_t desc_len; /* size of TX/RX descriptors */
  176. DECLARE_BITMAP(status, 6);
  177. #define ATH_STAT_INVALID 0 /* disable hardware accesses */
  178. #define ATH_STAT_MRRETRY 1 /* multi-rate retry support */
  179. #define ATH_STAT_PROMISC 2
  180. #define ATH_STAT_LEDSOFT 3 /* enable LED gpio status */
  181. #define ATH_STAT_STARTED 4 /* opened & irqs enabled */
  182. #define ATH_STAT_2G_DISABLED 5 /* multiband radio without 2G */
  183. unsigned int filter_flags; /* HW flags, AR5K_RX_FILTER_* */
  184. struct ieee80211_channel *curchan; /* current h/w channel */
  185. u16 nvifs;
  186. enum ath5k_int imask; /* interrupt mask copy */
  187. spinlock_t irqlock;
  188. bool rx_pending; /* rx tasklet pending */
  189. bool tx_pending; /* tx tasklet pending */
  190. u8 lladdr[ETH_ALEN];
  191. u8 bssidmask[ETH_ALEN];
  192. unsigned int led_pin, /* GPIO pin for driving LED */
  193. led_on; /* pin setting for LED on */
  194. struct work_struct reset_work; /* deferred chip reset */
  195. unsigned int rxbufsize; /* rx size based on mtu */
  196. struct list_head rxbuf; /* receive buffer */
  197. spinlock_t rxbuflock;
  198. u32 *rxlink; /* link ptr in last RX desc */
  199. struct tasklet_struct rxtq; /* rx intr tasklet */
  200. struct ath5k_led rx_led; /* rx led */
  201. struct list_head txbuf; /* transmit buffer */
  202. spinlock_t txbuflock;
  203. unsigned int txbuf_len; /* buf count in txbuf list */
  204. struct ath5k_txq txqs[AR5K_NUM_TX_QUEUES]; /* tx queues */
  205. struct tasklet_struct txtq; /* tx intr tasklet */
  206. struct ath5k_led tx_led; /* tx led */
  207. struct ath5k_rfkill rf_kill;
  208. struct tasklet_struct calib; /* calibration tasklet */
  209. spinlock_t block; /* protects beacon */
  210. struct tasklet_struct beacontq; /* beacon intr tasklet */
  211. struct list_head bcbuf; /* beacon buffer */
  212. struct ieee80211_vif *bslot[ATH_BCBUF];
  213. u16 num_ap_vifs;
  214. u16 num_adhoc_vifs;
  215. unsigned int bhalq, /* SW q for outgoing beacons */
  216. bmisscount, /* missed beacon transmits */
  217. bintval, /* beacon interval in TU */
  218. bsent;
  219. unsigned int nexttbtt; /* next beacon time in TU */
  220. struct ath5k_txq *cabq; /* content after beacon */
  221. int power_level; /* Requested tx power in dbm */
  222. bool assoc; /* associate state */
  223. bool enable_beacon; /* true if beacons are on */
  224. struct ath5k_statistics stats;
  225. struct ath5k_ani_state ani_state;
  226. struct tasklet_struct ani_tasklet; /* ANI calibration */
  227. struct delayed_work tx_complete_work;
  228. struct survey_info survey; /* collected survey info */
  229. };
  230. struct ath5k_vif_iter_data {
  231. const u8 *hw_macaddr;
  232. u8 mask[ETH_ALEN];
  233. u8 active_mac[ETH_ALEN]; /* first active MAC */
  234. bool need_set_hw_addr;
  235. bool found_active;
  236. bool any_assoc;
  237. enum nl80211_iftype opmode;
  238. int n_stas;
  239. };
  240. void ath5k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif);
  241. #define ath5k_hw_hasbssidmask(_ah) \
  242. (ath5k_hw_get_capability(_ah, AR5K_CAP_BSSIDMASK, 0, NULL) == 0)
  243. #define ath5k_hw_hasveol(_ah) \
  244. (ath5k_hw_get_capability(_ah, AR5K_CAP_VEOL, 0, NULL) == 0)
  245. #endif