b43legacy.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858
  1. #ifndef B43legacy_H_
  2. #define B43legacy_H_
  3. #include <linux/hw_random.h>
  4. #include <linux/kernel.h>
  5. #include <linux/spinlock.h>
  6. #include <linux/interrupt.h>
  7. #include <linux/stringify.h>
  8. #include <linux/netdevice.h>
  9. #include <linux/pci.h>
  10. #include <linux/atomic.h>
  11. #include <linux/io.h>
  12. #include <linux/ssb/ssb.h>
  13. #include <linux/ssb/ssb_driver_chipcommon.h>
  14. #include <linux/completion.h>
  15. #include <net/mac80211.h>
  16. #include "debugfs.h"
  17. #include "leds.h"
  18. #include "rfkill.h"
  19. #include "phy.h"
  20. #define B43legacy_IRQWAIT_MAX_RETRIES 20
  21. /* MMIO offsets */
  22. #define B43legacy_MMIO_DMA0_REASON 0x20
  23. #define B43legacy_MMIO_DMA0_IRQ_MASK 0x24
  24. #define B43legacy_MMIO_DMA1_REASON 0x28
  25. #define B43legacy_MMIO_DMA1_IRQ_MASK 0x2C
  26. #define B43legacy_MMIO_DMA2_REASON 0x30
  27. #define B43legacy_MMIO_DMA2_IRQ_MASK 0x34
  28. #define B43legacy_MMIO_DMA3_REASON 0x38
  29. #define B43legacy_MMIO_DMA3_IRQ_MASK 0x3C
  30. #define B43legacy_MMIO_DMA4_REASON 0x40
  31. #define B43legacy_MMIO_DMA4_IRQ_MASK 0x44
  32. #define B43legacy_MMIO_DMA5_REASON 0x48
  33. #define B43legacy_MMIO_DMA5_IRQ_MASK 0x4C
  34. #define B43legacy_MMIO_MACCTL 0x120 /* MAC control */
  35. #define B43legacy_MMIO_MACCMD 0x124 /* MAC command */
  36. #define B43legacy_MMIO_GEN_IRQ_REASON 0x128
  37. #define B43legacy_MMIO_GEN_IRQ_MASK 0x12C
  38. #define B43legacy_MMIO_RAM_CONTROL 0x130
  39. #define B43legacy_MMIO_RAM_DATA 0x134
  40. #define B43legacy_MMIO_PS_STATUS 0x140
  41. #define B43legacy_MMIO_RADIO_HWENABLED_HI 0x158
  42. #define B43legacy_MMIO_SHM_CONTROL 0x160
  43. #define B43legacy_MMIO_SHM_DATA 0x164
  44. #define B43legacy_MMIO_SHM_DATA_UNALIGNED 0x166
  45. #define B43legacy_MMIO_XMITSTAT_0 0x170
  46. #define B43legacy_MMIO_XMITSTAT_1 0x174
  47. #define B43legacy_MMIO_REV3PLUS_TSF_LOW 0x180 /* core rev >= 3 only */
  48. #define B43legacy_MMIO_REV3PLUS_TSF_HIGH 0x184 /* core rev >= 3 only */
  49. #define B43legacy_MMIO_TSF_CFP_REP 0x188
  50. #define B43legacy_MMIO_TSF_CFP_START 0x18C
  51. /* 32-bit DMA */
  52. #define B43legacy_MMIO_DMA32_BASE0 0x200
  53. #define B43legacy_MMIO_DMA32_BASE1 0x220
  54. #define B43legacy_MMIO_DMA32_BASE2 0x240
  55. #define B43legacy_MMIO_DMA32_BASE3 0x260
  56. #define B43legacy_MMIO_DMA32_BASE4 0x280
  57. #define B43legacy_MMIO_DMA32_BASE5 0x2A0
  58. /* 64-bit DMA */
  59. #define B43legacy_MMIO_DMA64_BASE0 0x200
  60. #define B43legacy_MMIO_DMA64_BASE1 0x240
  61. #define B43legacy_MMIO_DMA64_BASE2 0x280
  62. #define B43legacy_MMIO_DMA64_BASE3 0x2C0
  63. #define B43legacy_MMIO_DMA64_BASE4 0x300
  64. #define B43legacy_MMIO_DMA64_BASE5 0x340
  65. /* PIO */
  66. #define B43legacy_MMIO_PIO1_BASE 0x300
  67. #define B43legacy_MMIO_PIO2_BASE 0x310
  68. #define B43legacy_MMIO_PIO3_BASE 0x320
  69. #define B43legacy_MMIO_PIO4_BASE 0x330
  70. #define B43legacy_MMIO_PHY_VER 0x3E0
  71. #define B43legacy_MMIO_PHY_RADIO 0x3E2
  72. #define B43legacy_MMIO_PHY0 0x3E6
  73. #define B43legacy_MMIO_ANTENNA 0x3E8
  74. #define B43legacy_MMIO_CHANNEL 0x3F0
  75. #define B43legacy_MMIO_CHANNEL_EXT 0x3F4
  76. #define B43legacy_MMIO_RADIO_CONTROL 0x3F6
  77. #define B43legacy_MMIO_RADIO_DATA_HIGH 0x3F8
  78. #define B43legacy_MMIO_RADIO_DATA_LOW 0x3FA
  79. #define B43legacy_MMIO_PHY_CONTROL 0x3FC
  80. #define B43legacy_MMIO_PHY_DATA 0x3FE
  81. #define B43legacy_MMIO_MACFILTER_CONTROL 0x420
  82. #define B43legacy_MMIO_MACFILTER_DATA 0x422
  83. #define B43legacy_MMIO_RCMTA_COUNT 0x43C /* Receive Match Transmitter Addr */
  84. #define B43legacy_MMIO_RADIO_HWENABLED_LO 0x49A
  85. #define B43legacy_MMIO_GPIO_CONTROL 0x49C
  86. #define B43legacy_MMIO_GPIO_MASK 0x49E
  87. #define B43legacy_MMIO_TSF_CFP_PRETBTT 0x612
  88. #define B43legacy_MMIO_TSF_0 0x632 /* core rev < 3 only */
  89. #define B43legacy_MMIO_TSF_1 0x634 /* core rev < 3 only */
  90. #define B43legacy_MMIO_TSF_2 0x636 /* core rev < 3 only */
  91. #define B43legacy_MMIO_TSF_3 0x638 /* core rev < 3 only */
  92. #define B43legacy_MMIO_RNG 0x65A
  93. #define B43legacy_MMIO_POWERUP_DELAY 0x6A8
  94. /* SPROM boardflags_lo values */
  95. #define B43legacy_BFL_PACTRL 0x0002
  96. #define B43legacy_BFL_RSSI 0x0008
  97. #define B43legacy_BFL_EXTLNA 0x1000
  98. /* GPIO register offset, in both ChipCommon and PCI core. */
  99. #define B43legacy_GPIO_CONTROL 0x6c
  100. /* SHM Routing */
  101. #define B43legacy_SHM_SHARED 0x0001
  102. #define B43legacy_SHM_WIRELESS 0x0002
  103. #define B43legacy_SHM_HW 0x0004
  104. #define B43legacy_SHM_UCODE 0x0300
  105. /* SHM Routing modifiers */
  106. #define B43legacy_SHM_AUTOINC_R 0x0200 /* Read Auto-increment */
  107. #define B43legacy_SHM_AUTOINC_W 0x0100 /* Write Auto-increment */
  108. #define B43legacy_SHM_AUTOINC_RW (B43legacy_SHM_AUTOINC_R | \
  109. B43legacy_SHM_AUTOINC_W)
  110. /* Misc SHM_SHARED offsets */
  111. #define B43legacy_SHM_SH_WLCOREREV 0x0016 /* 802.11 core revision */
  112. #define B43legacy_SHM_SH_HOSTFLO 0x005E /* Hostflags ucode opts (low) */
  113. #define B43legacy_SHM_SH_HOSTFHI 0x0060 /* Hostflags ucode opts (high) */
  114. /* SHM_SHARED crypto engine */
  115. #define B43legacy_SHM_SH_KEYIDXBLOCK 0x05D4 /* Key index/algorithm block */
  116. /* SHM_SHARED beacon/AP variables */
  117. #define B43legacy_SHM_SH_DTIMP 0x0012 /* DTIM period */
  118. #define B43legacy_SHM_SH_BTL0 0x0018 /* Beacon template length 0 */
  119. #define B43legacy_SHM_SH_BTL1 0x001A /* Beacon template length 1 */
  120. #define B43legacy_SHM_SH_BTSFOFF 0x001C /* Beacon TSF offset */
  121. #define B43legacy_SHM_SH_TIMPOS 0x001E /* TIM position in beacon */
  122. #define B43legacy_SHM_SH_BEACPHYCTL 0x0054 /* Beacon PHY TX control word */
  123. /* SHM_SHARED ACK/CTS control */
  124. #define B43legacy_SHM_SH_ACKCTSPHYCTL 0x0022 /* ACK/CTS PHY control word */
  125. /* SHM_SHARED probe response variables */
  126. #define B43legacy_SHM_SH_PRTLEN 0x004A /* Probe Response template length */
  127. #define B43legacy_SHM_SH_PRMAXTIME 0x0074 /* Probe Response max time */
  128. #define B43legacy_SHM_SH_PRPHYCTL 0x0188 /* Probe Resp PHY TX control */
  129. /* SHM_SHARED rate tables */
  130. #define B43legacy_SHM_SH_OFDMDIRECT 0x0480 /* Pointer to OFDM direct map */
  131. #define B43legacy_SHM_SH_OFDMBASIC 0x04A0 /* Pointer to OFDM basic rate map */
  132. #define B43legacy_SHM_SH_CCKDIRECT 0x04C0 /* Pointer to CCK direct map */
  133. #define B43legacy_SHM_SH_CCKBASIC 0x04E0 /* Pointer to CCK basic rate map */
  134. /* SHM_SHARED microcode soft registers */
  135. #define B43legacy_SHM_SH_UCODEREV 0x0000 /* Microcode revision */
  136. #define B43legacy_SHM_SH_UCODEPATCH 0x0002 /* Microcode patchlevel */
  137. #define B43legacy_SHM_SH_UCODEDATE 0x0004 /* Microcode date */
  138. #define B43legacy_SHM_SH_UCODETIME 0x0006 /* Microcode time */
  139. #define B43legacy_SHM_SH_SPUWKUP 0x0094 /* pre-wakeup for synth PU in us */
  140. #define B43legacy_SHM_SH_PRETBTT 0x0096 /* pre-TBTT in us */
  141. #define B43legacy_UCODEFLAGS_OFFSET 0x005E
  142. /* Hardware Radio Enable masks */
  143. #define B43legacy_MMIO_RADIO_HWENABLED_HI_MASK (1 << 16)
  144. #define B43legacy_MMIO_RADIO_HWENABLED_LO_MASK (1 << 4)
  145. /* HostFlags. See b43legacy_hf_read/write() */
  146. #define B43legacy_HF_SYMW 0x00000002 /* G-PHY SYM workaround */
  147. #define B43legacy_HF_GDCW 0x00000020 /* G-PHY DV cancel filter */
  148. #define B43legacy_HF_OFDMPABOOST 0x00000040 /* Enable PA boost OFDM */
  149. #define B43legacy_HF_EDCF 0x00000100 /* on if WME/MAC suspended */
  150. /* MacFilter offsets. */
  151. #define B43legacy_MACFILTER_SELF 0x0000
  152. #define B43legacy_MACFILTER_BSSID 0x0003
  153. #define B43legacy_MACFILTER_MAC 0x0010
  154. /* PHYVersioning */
  155. #define B43legacy_PHYTYPE_B 0x01
  156. #define B43legacy_PHYTYPE_G 0x02
  157. /* PHYRegisters */
  158. #define B43legacy_PHY_G_LO_CONTROL 0x0810
  159. #define B43legacy_PHY_ILT_G_CTRL 0x0472
  160. #define B43legacy_PHY_ILT_G_DATA1 0x0473
  161. #define B43legacy_PHY_ILT_G_DATA2 0x0474
  162. #define B43legacy_PHY_G_PCTL 0x0029
  163. #define B43legacy_PHY_RADIO_BITFIELD 0x0401
  164. #define B43legacy_PHY_G_CRS 0x0429
  165. #define B43legacy_PHY_NRSSILT_CTRL 0x0803
  166. #define B43legacy_PHY_NRSSILT_DATA 0x0804
  167. /* RadioRegisters */
  168. #define B43legacy_RADIOCTL_ID 0x01
  169. /* MAC Control bitfield */
  170. #define B43legacy_MACCTL_ENABLED 0x00000001 /* MAC Enabled */
  171. #define B43legacy_MACCTL_PSM_RUN 0x00000002 /* Run Microcode */
  172. #define B43legacy_MACCTL_PSM_JMP0 0x00000004 /* Microcode jump to 0 */
  173. #define B43legacy_MACCTL_SHM_ENABLED 0x00000100 /* SHM Enabled */
  174. #define B43legacy_MACCTL_IHR_ENABLED 0x00000400 /* IHR Region Enabled */
  175. #define B43legacy_MACCTL_BE 0x00010000 /* Big Endian mode */
  176. #define B43legacy_MACCTL_INFRA 0x00020000 /* Infrastructure mode */
  177. #define B43legacy_MACCTL_AP 0x00040000 /* AccessPoint mode */
  178. #define B43legacy_MACCTL_RADIOLOCK 0x00080000 /* Radio lock */
  179. #define B43legacy_MACCTL_BEACPROMISC 0x00100000 /* Beacon Promiscuous */
  180. #define B43legacy_MACCTL_KEEP_BADPLCP 0x00200000 /* Keep bad PLCP frames */
  181. #define B43legacy_MACCTL_KEEP_CTL 0x00400000 /* Keep control frames */
  182. #define B43legacy_MACCTL_KEEP_BAD 0x00800000 /* Keep bad frames (FCS) */
  183. #define B43legacy_MACCTL_PROMISC 0x01000000 /* Promiscuous mode */
  184. #define B43legacy_MACCTL_HWPS 0x02000000 /* Hardware Power Saving */
  185. #define B43legacy_MACCTL_AWAKE 0x04000000 /* Device is awake */
  186. #define B43legacy_MACCTL_TBTTHOLD 0x10000000 /* TBTT Hold */
  187. #define B43legacy_MACCTL_GMODE 0x80000000 /* G Mode */
  188. /* MAC Command bitfield */
  189. #define B43legacy_MACCMD_BEACON0_VALID 0x00000001 /* Beacon 0 in template RAM is busy/valid */
  190. #define B43legacy_MACCMD_BEACON1_VALID 0x00000002 /* Beacon 1 in template RAM is busy/valid */
  191. #define B43legacy_MACCMD_DFQ_VALID 0x00000004 /* Directed frame queue valid (IBSS PS mode, ATIM) */
  192. #define B43legacy_MACCMD_CCA 0x00000008 /* Clear channel assessment */
  193. #define B43legacy_MACCMD_BGNOISE 0x00000010 /* Background noise */
  194. /* 802.11 core specific TM State Low flags */
  195. #define B43legacy_TMSLOW_GMODE 0x20000000 /* G Mode Enable */
  196. #define B43legacy_TMSLOW_PLLREFSEL 0x00200000 /* PLL Freq Ref Select */
  197. #define B43legacy_TMSLOW_MACPHYCLKEN 0x00100000 /* MAC PHY Clock Ctrl Enbl */
  198. #define B43legacy_TMSLOW_PHYRESET 0x00080000 /* PHY Reset */
  199. #define B43legacy_TMSLOW_PHYCLKEN 0x00040000 /* PHY Clock Enable */
  200. /* 802.11 core specific TM State High flags */
  201. #define B43legacy_TMSHIGH_FCLOCK 0x00040000 /* Fast Clock Available */
  202. #define B43legacy_TMSHIGH_GPHY 0x00010000 /* G-PHY avail (rev >= 5) */
  203. #define B43legacy_UCODEFLAG_AUTODIV 0x0001
  204. /* Generic-Interrupt reasons. */
  205. #define B43legacy_IRQ_MAC_SUSPENDED 0x00000001
  206. #define B43legacy_IRQ_BEACON 0x00000002
  207. #define B43legacy_IRQ_TBTT_INDI 0x00000004 /* Target Beacon Transmit Time */
  208. #define B43legacy_IRQ_BEACON_TX_OK 0x00000008
  209. #define B43legacy_IRQ_BEACON_CANCEL 0x00000010
  210. #define B43legacy_IRQ_ATIM_END 0x00000020
  211. #define B43legacy_IRQ_PMQ 0x00000040
  212. #define B43legacy_IRQ_PIO_WORKAROUND 0x00000100
  213. #define B43legacy_IRQ_MAC_TXERR 0x00000200
  214. #define B43legacy_IRQ_PHY_TXERR 0x00000800
  215. #define B43legacy_IRQ_PMEVENT 0x00001000
  216. #define B43legacy_IRQ_TIMER0 0x00002000
  217. #define B43legacy_IRQ_TIMER1 0x00004000
  218. #define B43legacy_IRQ_DMA 0x00008000
  219. #define B43legacy_IRQ_TXFIFO_FLUSH_OK 0x00010000
  220. #define B43legacy_IRQ_CCA_MEASURE_OK 0x00020000
  221. #define B43legacy_IRQ_NOISESAMPLE_OK 0x00040000
  222. #define B43legacy_IRQ_UCODE_DEBUG 0x08000000
  223. #define B43legacy_IRQ_RFKILL 0x10000000
  224. #define B43legacy_IRQ_TX_OK 0x20000000
  225. #define B43legacy_IRQ_PHY_G_CHANGED 0x40000000
  226. #define B43legacy_IRQ_TIMEOUT 0x80000000
  227. #define B43legacy_IRQ_ALL 0xFFFFFFFF
  228. #define B43legacy_IRQ_MASKTEMPLATE (B43legacy_IRQ_MAC_SUSPENDED | \
  229. B43legacy_IRQ_TBTT_INDI | \
  230. B43legacy_IRQ_ATIM_END | \
  231. B43legacy_IRQ_PMQ | \
  232. B43legacy_IRQ_MAC_TXERR | \
  233. B43legacy_IRQ_PHY_TXERR | \
  234. B43legacy_IRQ_DMA | \
  235. B43legacy_IRQ_TXFIFO_FLUSH_OK | \
  236. B43legacy_IRQ_NOISESAMPLE_OK | \
  237. B43legacy_IRQ_UCODE_DEBUG | \
  238. B43legacy_IRQ_RFKILL | \
  239. B43legacy_IRQ_TX_OK)
  240. /* Device specific rate values.
  241. * The actual values defined here are (rate_in_mbps * 2).
  242. * Some code depends on this. Don't change it. */
  243. #define B43legacy_CCK_RATE_1MB 2
  244. #define B43legacy_CCK_RATE_2MB 4
  245. #define B43legacy_CCK_RATE_5MB 11
  246. #define B43legacy_CCK_RATE_11MB 22
  247. #define B43legacy_OFDM_RATE_6MB 12
  248. #define B43legacy_OFDM_RATE_9MB 18
  249. #define B43legacy_OFDM_RATE_12MB 24
  250. #define B43legacy_OFDM_RATE_18MB 36
  251. #define B43legacy_OFDM_RATE_24MB 48
  252. #define B43legacy_OFDM_RATE_36MB 72
  253. #define B43legacy_OFDM_RATE_48MB 96
  254. #define B43legacy_OFDM_RATE_54MB 108
  255. /* Convert a b43legacy rate value to a rate in 100kbps */
  256. #define B43legacy_RATE_TO_100KBPS(rate) (((rate) * 10) / 2)
  257. #define B43legacy_DEFAULT_SHORT_RETRY_LIMIT 7
  258. #define B43legacy_DEFAULT_LONG_RETRY_LIMIT 4
  259. #define B43legacy_PHY_TX_BADNESS_LIMIT 1000
  260. /* Max size of a security key */
  261. #define B43legacy_SEC_KEYSIZE 16
  262. /* Security algorithms. */
  263. enum {
  264. B43legacy_SEC_ALGO_NONE = 0, /* unencrypted, as of TX header. */
  265. B43legacy_SEC_ALGO_WEP40,
  266. B43legacy_SEC_ALGO_TKIP,
  267. B43legacy_SEC_ALGO_AES,
  268. B43legacy_SEC_ALGO_WEP104,
  269. B43legacy_SEC_ALGO_AES_LEGACY,
  270. };
  271. /* Core Information Registers */
  272. #define B43legacy_CIR_BASE 0xf00
  273. #define B43legacy_CIR_SBTPSFLAG (B43legacy_CIR_BASE + 0x18)
  274. #define B43legacy_CIR_SBIMSTATE (B43legacy_CIR_BASE + 0x90)
  275. #define B43legacy_CIR_SBINTVEC (B43legacy_CIR_BASE + 0x94)
  276. #define B43legacy_CIR_SBTMSTATELOW (B43legacy_CIR_BASE + 0x98)
  277. #define B43legacy_CIR_SBTMSTATEHIGH (B43legacy_CIR_BASE + 0x9c)
  278. #define B43legacy_CIR_SBIMCONFIGLOW (B43legacy_CIR_BASE + 0xa8)
  279. #define B43legacy_CIR_SB_ID_HI (B43legacy_CIR_BASE + 0xfc)
  280. /* sbtmstatehigh state flags */
  281. #define B43legacy_SBTMSTATEHIGH_SERROR 0x00000001
  282. #define B43legacy_SBTMSTATEHIGH_BUSY 0x00000004
  283. #define B43legacy_SBTMSTATEHIGH_TIMEOUT 0x00000020
  284. #define B43legacy_SBTMSTATEHIGH_G_PHY_AVAIL 0x00010000
  285. #define B43legacy_SBTMSTATEHIGH_COREFLAGS 0x1FFF0000
  286. #define B43legacy_SBTMSTATEHIGH_DMA64BIT 0x10000000
  287. #define B43legacy_SBTMSTATEHIGH_GATEDCLK 0x20000000
  288. #define B43legacy_SBTMSTATEHIGH_BISTFAILED 0x40000000
  289. #define B43legacy_SBTMSTATEHIGH_BISTCOMPLETE 0x80000000
  290. /* sbimstate flags */
  291. #define B43legacy_SBIMSTATE_IB_ERROR 0x20000
  292. #define B43legacy_SBIMSTATE_TIMEOUT 0x40000
  293. #define PFX KBUILD_MODNAME ": "
  294. #ifdef assert
  295. # undef assert
  296. #endif
  297. #ifdef CONFIG_B43LEGACY_DEBUG
  298. # define B43legacy_WARN_ON(x) WARN_ON(x)
  299. # define B43legacy_BUG_ON(expr) \
  300. do { \
  301. if (unlikely((expr))) { \
  302. printk(KERN_INFO PFX "Test (%s) failed\n", \
  303. #expr); \
  304. BUG_ON(expr); \
  305. } \
  306. } while (0)
  307. # define B43legacy_DEBUG 1
  308. #else
  309. /* This will evaluate the argument even if debugging is disabled. */
  310. static inline bool __b43legacy_warn_on_dummy(bool x) { return x; }
  311. # define B43legacy_WARN_ON(x) __b43legacy_warn_on_dummy(unlikely(!!(x)))
  312. # define B43legacy_BUG_ON(x) do { /* nothing */ } while (0)
  313. # define B43legacy_DEBUG 0
  314. #endif
  315. struct net_device;
  316. struct pci_dev;
  317. struct b43legacy_dmaring;
  318. struct b43legacy_pioqueue;
  319. /* The firmware file header */
  320. #define B43legacy_FW_TYPE_UCODE 'u'
  321. #define B43legacy_FW_TYPE_PCM 'p'
  322. #define B43legacy_FW_TYPE_IV 'i'
  323. struct b43legacy_fw_header {
  324. /* File type */
  325. u8 type;
  326. /* File format version */
  327. u8 ver;
  328. u8 __padding[2];
  329. /* Size of the data. For ucode and PCM this is in bytes.
  330. * For IV this is number-of-ivs. */
  331. __be32 size;
  332. } __packed;
  333. /* Initial Value file format */
  334. #define B43legacy_IV_OFFSET_MASK 0x7FFF
  335. #define B43legacy_IV_32BIT 0x8000
  336. struct b43legacy_iv {
  337. __be16 offset_size;
  338. union {
  339. __be16 d16;
  340. __be32 d32;
  341. } data __packed;
  342. } __packed;
  343. #define B43legacy_PHYMODE(phytype) (1 << (phytype))
  344. #define B43legacy_PHYMODE_B B43legacy_PHYMODE \
  345. ((B43legacy_PHYTYPE_B))
  346. #define B43legacy_PHYMODE_G B43legacy_PHYMODE \
  347. ((B43legacy_PHYTYPE_G))
  348. /* Value pair to measure the LocalOscillator. */
  349. struct b43legacy_lopair {
  350. s8 low;
  351. s8 high;
  352. u8 used:1;
  353. };
  354. #define B43legacy_LO_COUNT (14*4)
  355. struct b43legacy_phy {
  356. /* Possible PHYMODEs on this PHY */
  357. u8 possible_phymodes;
  358. /* GMODE bit enabled in MACCTL? */
  359. bool gmode;
  360. /* Analog Type */
  361. u8 analog;
  362. /* B43legacy_PHYTYPE_ */
  363. u8 type;
  364. /* PHY revision number. */
  365. u8 rev;
  366. u16 antenna_diversity;
  367. u16 savedpctlreg;
  368. /* Radio versioning */
  369. u16 radio_manuf; /* Radio manufacturer */
  370. u16 radio_ver; /* Radio version */
  371. u8 calibrated:1;
  372. u8 radio_rev; /* Radio revision */
  373. bool dyn_tssi_tbl; /* tssi2dbm is kmalloc()ed. */
  374. /* ACI (adjacent channel interference) flags. */
  375. bool aci_enable;
  376. bool aci_wlan_automatic;
  377. bool aci_hw_rssi;
  378. /* Radio switched on/off */
  379. bool radio_on;
  380. struct {
  381. /* Values saved when turning the radio off.
  382. * They are needed when turning it on again. */
  383. bool valid;
  384. u16 rfover;
  385. u16 rfoverval;
  386. } radio_off_context;
  387. u16 minlowsig[2];
  388. u16 minlowsigpos[2];
  389. /* LO Measurement Data.
  390. * Use b43legacy_get_lopair() to get a value.
  391. */
  392. struct b43legacy_lopair *_lo_pairs;
  393. /* TSSI to dBm table in use */
  394. const s8 *tssi2dbm;
  395. /* idle TSSI value */
  396. s8 idle_tssi;
  397. /* Target idle TSSI */
  398. int tgt_idle_tssi;
  399. /* Current idle TSSI */
  400. int cur_idle_tssi;
  401. /* LocalOscillator control values. */
  402. struct b43legacy_txpower_lo_control *lo_control;
  403. /* Values from b43legacy_calc_loopback_gain() */
  404. s16 max_lb_gain; /* Maximum Loopback gain in hdB */
  405. s16 trsw_rx_gain; /* TRSW RX gain in hdB */
  406. s16 lna_lod_gain; /* LNA lod */
  407. s16 lna_gain; /* LNA */
  408. s16 pga_gain; /* PGA */
  409. /* Desired TX power level (in dBm). This is set by the user and
  410. * adjusted in b43legacy_phy_xmitpower(). */
  411. u8 power_level;
  412. /* Values from b43legacy_calc_loopback_gain() */
  413. u16 loopback_gain[2];
  414. /* TX Power control values. */
  415. /* B/G PHY */
  416. struct {
  417. /* Current Radio Attenuation for TXpower recalculation. */
  418. u16 rfatt;
  419. /* Current Baseband Attenuation for TXpower recalculation. */
  420. u16 bbatt;
  421. /* Current TXpower control value for TXpower recalculation. */
  422. u16 txctl1;
  423. u16 txctl2;
  424. };
  425. /* A PHY */
  426. struct {
  427. u16 txpwr_offset;
  428. };
  429. /* Current Interference Mitigation mode */
  430. int interfmode;
  431. /* Stack of saved values from the Interference Mitigation code.
  432. * Each value in the stack is laid out as follows:
  433. * bit 0-11: offset
  434. * bit 12-15: register ID
  435. * bit 16-32: value
  436. * register ID is: 0x1 PHY, 0x2 Radio, 0x3 ILT
  437. */
  438. #define B43legacy_INTERFSTACK_SIZE 26
  439. u32 interfstack[B43legacy_INTERFSTACK_SIZE];
  440. /* Saved values from the NRSSI Slope calculation */
  441. s16 nrssi[2];
  442. s32 nrssislope;
  443. /* In memory nrssi lookup table. */
  444. s8 nrssi_lt[64];
  445. /* current channel */
  446. u8 channel;
  447. u16 lofcal;
  448. u16 initval;
  449. /* PHY TX errors counter. */
  450. atomic_t txerr_cnt;
  451. #if B43legacy_DEBUG
  452. /* Manual TX-power control enabled? */
  453. bool manual_txpower_control;
  454. /* PHY registers locked by b43legacy_phy_lock()? */
  455. bool phy_locked;
  456. #endif /* B43legacy_DEBUG */
  457. };
  458. /* Data structures for DMA transmission, per 80211 core. */
  459. struct b43legacy_dma {
  460. struct b43legacy_dmaring *tx_ring0;
  461. struct b43legacy_dmaring *tx_ring1;
  462. struct b43legacy_dmaring *tx_ring2;
  463. struct b43legacy_dmaring *tx_ring3;
  464. struct b43legacy_dmaring *tx_ring4;
  465. struct b43legacy_dmaring *tx_ring5;
  466. struct b43legacy_dmaring *rx_ring0;
  467. struct b43legacy_dmaring *rx_ring3; /* only on core.rev < 5 */
  468. u32 translation; /* Routing bits */
  469. };
  470. /* Data structures for PIO transmission, per 80211 core. */
  471. struct b43legacy_pio {
  472. struct b43legacy_pioqueue *queue0;
  473. struct b43legacy_pioqueue *queue1;
  474. struct b43legacy_pioqueue *queue2;
  475. struct b43legacy_pioqueue *queue3;
  476. };
  477. /* Context information for a noise calculation (Link Quality). */
  478. struct b43legacy_noise_calculation {
  479. u8 channel_at_start;
  480. bool calculation_running;
  481. u8 nr_samples;
  482. s8 samples[8][4];
  483. };
  484. struct b43legacy_stats {
  485. u8 link_noise;
  486. /* Store the last TX/RX times here for updating the leds. */
  487. unsigned long last_tx;
  488. unsigned long last_rx;
  489. };
  490. struct b43legacy_key {
  491. void *keyconf;
  492. bool enabled;
  493. u8 algorithm;
  494. };
  495. #define B43legacy_QOS_QUEUE_NUM 4
  496. struct b43legacy_wldev;
  497. /* QOS parameters for a queue. */
  498. struct b43legacy_qos_params {
  499. /* The QOS parameters */
  500. struct ieee80211_tx_queue_params p;
  501. };
  502. /* Data structure for the WLAN parts (802.11 cores) of the b43legacy chip. */
  503. struct b43legacy_wl {
  504. /* Pointer to the active wireless device on this chip */
  505. struct b43legacy_wldev *current_dev;
  506. /* Pointer to the ieee80211 hardware data structure */
  507. struct ieee80211_hw *hw;
  508. spinlock_t irq_lock; /* locks IRQ */
  509. struct mutex mutex; /* locks wireless core state */
  510. spinlock_t leds_lock; /* lock for leds */
  511. /* firmware loading work */
  512. struct work_struct firmware_load;
  513. /* We can only have one operating interface (802.11 core)
  514. * at a time. General information about this interface follows.
  515. */
  516. struct ieee80211_vif *vif;
  517. /* MAC address (can be NULL). */
  518. u8 mac_addr[ETH_ALEN];
  519. /* Current BSSID (can be NULL). */
  520. u8 bssid[ETH_ALEN];
  521. /* Interface type. (IEEE80211_IF_TYPE_XXX) */
  522. int if_type;
  523. /* Is the card operating in AP, STA or IBSS mode? */
  524. bool operating;
  525. /* filter flags */
  526. unsigned int filter_flags;
  527. /* Stats about the wireless interface */
  528. struct ieee80211_low_level_stats ieee_stats;
  529. #ifdef CONFIG_B43LEGACY_HWRNG
  530. struct hwrng rng;
  531. u8 rng_initialized;
  532. char rng_name[30 + 1];
  533. #endif
  534. /* List of all wireless devices on this chip */
  535. struct list_head devlist;
  536. u8 nr_devs;
  537. bool radiotap_enabled;
  538. bool radio_enabled;
  539. /* The beacon we are currently using (AP or IBSS mode).
  540. * This beacon stuff is protected by the irq_lock. */
  541. struct sk_buff *current_beacon;
  542. bool beacon0_uploaded;
  543. bool beacon1_uploaded;
  544. bool beacon_templates_virgin; /* Never wrote the templates? */
  545. struct work_struct beacon_update_trigger;
  546. /* The current QOS parameters for the 4 queues. */
  547. struct b43legacy_qos_params qos_params[B43legacy_QOS_QUEUE_NUM];
  548. /* Packet transmit work */
  549. struct work_struct tx_work;
  550. /* Queue of packets to be transmitted. */
  551. struct sk_buff_head tx_queue[B43legacy_QOS_QUEUE_NUM];
  552. /* Flag that implement the queues stopping. */
  553. bool tx_queue_stopped[B43legacy_QOS_QUEUE_NUM];
  554. };
  555. /* Pointers to the firmware data and meta information about it. */
  556. struct b43legacy_firmware {
  557. /* Microcode */
  558. const struct firmware *ucode;
  559. /* PCM code */
  560. const struct firmware *pcm;
  561. /* Initial MMIO values for the firmware */
  562. const struct firmware *initvals;
  563. /* Initial MMIO values for the firmware, band-specific */
  564. const struct firmware *initvals_band;
  565. /* Firmware revision */
  566. u16 rev;
  567. /* Firmware patchlevel */
  568. u16 patch;
  569. };
  570. /* Device (802.11 core) initialization status. */
  571. enum {
  572. B43legacy_STAT_UNINIT = 0, /* Uninitialized. */
  573. B43legacy_STAT_INITIALIZED = 1, /* Initialized, not yet started. */
  574. B43legacy_STAT_STARTED = 2, /* Up and running. */
  575. };
  576. #define b43legacy_status(wldev) atomic_read(&(wldev)->__init_status)
  577. #define b43legacy_set_status(wldev, stat) do { \
  578. atomic_set(&(wldev)->__init_status, (stat)); \
  579. smp_wmb(); \
  580. } while (0)
  581. /* *** --- HOW LOCKING WORKS IN B43legacy --- ***
  582. *
  583. * You should always acquire both, wl->mutex and wl->irq_lock unless:
  584. * - You don't need to acquire wl->irq_lock, if the interface is stopped.
  585. * - You don't need to acquire wl->mutex in the IRQ handler, IRQ tasklet
  586. * and packet TX path (and _ONLY_ there.)
  587. */
  588. /* Data structure for one wireless device (802.11 core) */
  589. struct b43legacy_wldev {
  590. struct ssb_device *dev;
  591. struct b43legacy_wl *wl;
  592. /* The device initialization status.
  593. * Use b43legacy_status() to query. */
  594. atomic_t __init_status;
  595. /* Saved init status for handling suspend. */
  596. int suspend_init_status;
  597. bool __using_pio; /* Using pio rather than dma. */
  598. bool bad_frames_preempt;/* Use "Bad Frames Preemption". */
  599. bool dfq_valid; /* Directed frame queue valid (IBSS PS mode, ATIM). */
  600. bool short_preamble; /* TRUE if using short preamble. */
  601. bool radio_hw_enable; /* State of radio hardware enable bit. */
  602. /* PHY/Radio device. */
  603. struct b43legacy_phy phy;
  604. union {
  605. /* DMA engines. */
  606. struct b43legacy_dma dma;
  607. /* PIO engines. */
  608. struct b43legacy_pio pio;
  609. };
  610. /* Various statistics about the physical device. */
  611. struct b43legacy_stats stats;
  612. /* The device LEDs. */
  613. struct b43legacy_led led_tx;
  614. struct b43legacy_led led_rx;
  615. struct b43legacy_led led_assoc;
  616. struct b43legacy_led led_radio;
  617. /* Reason code of the last interrupt. */
  618. u32 irq_reason;
  619. u32 dma_reason[6];
  620. /* The currently active generic-interrupt mask. */
  621. u32 irq_mask;
  622. /* Link Quality calculation context. */
  623. struct b43legacy_noise_calculation noisecalc;
  624. /* if > 0 MAC is suspended. if == 0 MAC is enabled. */
  625. int mac_suspended;
  626. /* Interrupt Service Routine tasklet (bottom-half) */
  627. struct tasklet_struct isr_tasklet;
  628. /* Periodic tasks */
  629. struct delayed_work periodic_work;
  630. unsigned int periodic_state;
  631. struct work_struct restart_work;
  632. /* encryption/decryption */
  633. u16 ktp; /* Key table pointer */
  634. u8 max_nr_keys;
  635. struct b43legacy_key key[58];
  636. /* Firmware data */
  637. struct b43legacy_firmware fw;
  638. const struct firmware *fwp; /* needed to pass fw pointer */
  639. /* completion struct for firmware loading */
  640. struct completion fw_load_complete;
  641. /* Devicelist in struct b43legacy_wl (all 802.11 cores) */
  642. struct list_head list;
  643. /* Debugging stuff follows. */
  644. #ifdef CONFIG_B43LEGACY_DEBUG
  645. struct b43legacy_dfsentry *dfsentry;
  646. #endif
  647. };
  648. static inline
  649. struct b43legacy_wl *hw_to_b43legacy_wl(struct ieee80211_hw *hw)
  650. {
  651. return hw->priv;
  652. }
  653. /* Helper function, which returns a boolean.
  654. * TRUE, if PIO is used; FALSE, if DMA is used.
  655. */
  656. #if defined(CONFIG_B43LEGACY_DMA) && defined(CONFIG_B43LEGACY_PIO)
  657. static inline
  658. int b43legacy_using_pio(struct b43legacy_wldev *dev)
  659. {
  660. return dev->__using_pio;
  661. }
  662. #elif defined(CONFIG_B43LEGACY_DMA)
  663. static inline
  664. int b43legacy_using_pio(struct b43legacy_wldev *dev)
  665. {
  666. return 0;
  667. }
  668. #elif defined(CONFIG_B43LEGACY_PIO)
  669. static inline
  670. int b43legacy_using_pio(struct b43legacy_wldev *dev)
  671. {
  672. return 1;
  673. }
  674. #else
  675. # error "Using neither DMA nor PIO? Confused..."
  676. #endif
  677. static inline
  678. struct b43legacy_wldev *dev_to_b43legacy_wldev(struct device *dev)
  679. {
  680. struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
  681. return ssb_get_drvdata(ssb_dev);
  682. }
  683. /* Is the device operating in a specified mode (IEEE80211_IF_TYPE_XXX). */
  684. static inline
  685. int b43legacy_is_mode(struct b43legacy_wl *wl, int type)
  686. {
  687. return (wl->operating &&
  688. wl->if_type == type);
  689. }
  690. static inline
  691. bool is_bcm_board_vendor(struct b43legacy_wldev *dev)
  692. {
  693. return (dev->dev->bus->boardinfo.vendor == PCI_VENDOR_ID_BROADCOM);
  694. }
  695. static inline
  696. u16 b43legacy_read16(struct b43legacy_wldev *dev, u16 offset)
  697. {
  698. return ssb_read16(dev->dev, offset);
  699. }
  700. static inline
  701. void b43legacy_write16(struct b43legacy_wldev *dev, u16 offset, u16 value)
  702. {
  703. ssb_write16(dev->dev, offset, value);
  704. }
  705. static inline
  706. u32 b43legacy_read32(struct b43legacy_wldev *dev, u16 offset)
  707. {
  708. return ssb_read32(dev->dev, offset);
  709. }
  710. static inline
  711. void b43legacy_write32(struct b43legacy_wldev *dev, u16 offset, u32 value)
  712. {
  713. ssb_write32(dev->dev, offset, value);
  714. }
  715. static inline
  716. struct b43legacy_lopair *b43legacy_get_lopair(struct b43legacy_phy *phy,
  717. u16 radio_attenuation,
  718. u16 baseband_attenuation)
  719. {
  720. return phy->_lo_pairs + (radio_attenuation
  721. + 14 * (baseband_attenuation / 2));
  722. }
  723. /* Message printing */
  724. __printf(2, 3)
  725. void b43legacyinfo(struct b43legacy_wl *wl, const char *fmt, ...);
  726. __printf(2, 3)
  727. void b43legacyerr(struct b43legacy_wl *wl, const char *fmt, ...);
  728. __printf(2, 3)
  729. void b43legacywarn(struct b43legacy_wl *wl, const char *fmt, ...);
  730. #if B43legacy_DEBUG
  731. __printf(2, 3)
  732. void b43legacydbg(struct b43legacy_wl *wl, const char *fmt, ...);
  733. #else /* DEBUG */
  734. # define b43legacydbg(wl, fmt...) do { /* nothing */ } while (0)
  735. #endif /* DEBUG */
  736. /* Macros for printing a value in Q5.2 format */
  737. #define Q52_FMT "%u.%u"
  738. #define Q52_ARG(q52) ((q52) / 4), (((q52) & 3) * 100 / 4)
  739. #endif /* B43legacy_H_ */