base.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. * Defintions 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 "ath5k.h"
  47. #include "debug.h"
  48. #define ATH_RXBUF 40 /* number of RX buffers */
  49. #define ATH_TXBUF 200 /* number of TX buffers */
  50. #define ATH_BCBUF 1 /* number of beacon buffers */
  51. struct ath5k_buf {
  52. struct list_head list;
  53. unsigned int flags; /* tx descriptor flags */
  54. struct ath5k_desc *desc; /* virtual addr of desc */
  55. dma_addr_t daddr; /* physical addr of desc */
  56. struct sk_buff *skb; /* skbuff for buf */
  57. dma_addr_t skbaddr;/* physical addr of skb data */
  58. struct ieee80211_tx_control ctl;
  59. };
  60. /*
  61. * Data transmit queue state. One of these exists for each
  62. * hardware transmit queue. Packets sent to us from above
  63. * are assigned to queues based on their priority. Not all
  64. * devices support a complete set of hardware transmit queues.
  65. * For those devices the array sc_ac2q will map multiple
  66. * priorities to fewer hardware queues (typically all to one
  67. * hardware queue).
  68. */
  69. struct ath5k_txq {
  70. unsigned int qnum; /* hardware q number */
  71. u32 *link; /* link ptr in last TX desc */
  72. struct list_head q; /* transmit queue */
  73. spinlock_t lock; /* lock on q and link */
  74. bool setup;
  75. };
  76. #if CHAN_DEBUG
  77. #define ATH_CHAN_MAX (26+26+26+200+200)
  78. #else
  79. #define ATH_CHAN_MAX (14+14+14+252+20)
  80. #endif
  81. /* Software Carrier, keeps track of the driver state
  82. * associated with an instance of a device */
  83. struct ath5k_softc {
  84. struct pci_dev *pdev; /* for dma mapping */
  85. void __iomem *iobase; /* address of the device */
  86. struct mutex lock; /* dev-level lock */
  87. struct ieee80211_tx_queue_stats tx_stats;
  88. struct ieee80211_low_level_stats ll_stats;
  89. struct ieee80211_hw *hw; /* IEEE 802.11 common */
  90. struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
  91. struct ieee80211_channel channels[ATH_CHAN_MAX];
  92. struct ieee80211_rate rates[AR5K_MAX_RATES * IEEE80211_NUM_BANDS];
  93. enum ieee80211_if_types opmode;
  94. struct ath5k_hw *ah; /* Atheros HW */
  95. struct ieee80211_supported_band *curband;
  96. u8 a_rates;
  97. u8 b_rates;
  98. u8 g_rates;
  99. u8 xr_rates;
  100. #ifdef CONFIG_ATH5K_DEBUG
  101. struct ath5k_dbg_info debug; /* debug info */
  102. #endif /* CONFIG_ATH5K_DEBUG */
  103. struct ath5k_buf *bufptr; /* allocated buffer ptr */
  104. struct ath5k_desc *desc; /* TX/RX descriptors */
  105. dma_addr_t desc_daddr; /* DMA (physical) address */
  106. size_t desc_len; /* size of TX/RX descriptors */
  107. u16 cachelsz; /* cache line size */
  108. DECLARE_BITMAP(status, 6);
  109. #define ATH_STAT_INVALID 0 /* disable hardware accesses */
  110. #define ATH_STAT_MRRETRY 1 /* multi-rate retry support */
  111. #define ATH_STAT_PROMISC 2
  112. #define ATH_STAT_LEDBLINKING 3 /* LED blink operation active */
  113. #define ATH_STAT_LEDENDBLINK 4 /* finish LED blink operation */
  114. #define ATH_STAT_LEDSOFT 5 /* enable LED gpio status */
  115. unsigned int filter_flags; /* HW flags, AR5K_RX_FILTER_* */
  116. unsigned int curmode; /* current phy mode */
  117. struct ieee80211_channel *curchan; /* current h/w channel */
  118. struct ieee80211_vif *vif;
  119. struct {
  120. u8 rxflags; /* radiotap rx flags */
  121. u8 txflags; /* radiotap tx flags */
  122. u16 ledon; /* softled on time */
  123. u16 ledoff; /* softled off time */
  124. } hwmap[32]; /* h/w rate ix mappings */
  125. enum ath5k_int imask; /* interrupt mask copy */
  126. DECLARE_BITMAP(keymap, AR5K_KEYCACHE_SIZE); /* key use bit map */
  127. u8 bssidmask[ETH_ALEN];
  128. unsigned int led_pin, /* GPIO pin for driving LED */
  129. led_on, /* pin setting for LED on */
  130. led_off; /* off time for current blink */
  131. struct timer_list led_tim; /* led off timer */
  132. u8 led_rxrate; /* current rx rate for LED */
  133. u8 led_txrate; /* current tx rate for LED */
  134. struct tasklet_struct restq; /* reset tasklet */
  135. unsigned int rxbufsize; /* rx size based on mtu */
  136. struct list_head rxbuf; /* receive buffer */
  137. spinlock_t rxbuflock;
  138. u32 *rxlink; /* link ptr in last RX desc */
  139. struct tasklet_struct rxtq; /* rx intr tasklet */
  140. struct list_head txbuf; /* transmit buffer */
  141. spinlock_t txbuflock;
  142. unsigned int txbuf_len; /* buf count in txbuf list */
  143. struct ath5k_txq txqs[2]; /* beacon and tx */
  144. struct ath5k_txq *txq; /* beacon and tx*/
  145. struct tasklet_struct txtq; /* tx intr tasklet */
  146. struct ath5k_buf *bbuf; /* beacon buffer */
  147. unsigned int bhalq, /* SW q for outgoing beacons */
  148. bmisscount, /* missed beacon transmits */
  149. bintval, /* beacon interval in TU */
  150. bsent;
  151. unsigned int nexttbtt; /* next beacon time in TU */
  152. struct timer_list calib_tim; /* calibration timer */
  153. int power_level; /* Requested tx power in dbm */
  154. };
  155. #define ath5k_hw_hasbssidmask(_ah) \
  156. (ath5k_hw_get_capability(_ah, AR5K_CAP_BSSIDMASK, 0, NULL) == 0)
  157. #define ath5k_hw_hasveol(_ah) \
  158. (ath5k_hw_get_capability(_ah, AR5K_CAP_VEOL, 0, NULL) == 0)
  159. #endif