1 /* 2 * Misc utility routines for WL and Apps 3 * This header file housing the define and function prototype use by 4 * both the wl driver, tools & Apps. 5 * 6 * Permission to use, copy, modify, and/or distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 13 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 15 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 16 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 * 18 * $Id: bcmwifi.h,v 1.29.6.3 2010-08-03 17:47:04 Exp $ 19 */ 20 21 22 #ifndef _bcmwifi_h_ 23 #define _bcmwifi_h_ 24 25 26 27 typedef uint16 chanspec_t; 28 29 30 #define CH_UPPER_SB 0x01 31 #define CH_LOWER_SB 0x02 32 #define CH_EWA_VALID 0x04 33 #define CH_20MHZ_APART 4 34 #define CH_10MHZ_APART 2 35 #define CH_5MHZ_APART 1 36 #define CH_MAX_2G_CHANNEL 14 37 #define WLC_MAX_2G_CHANNEL CH_MAX_2G_CHANNEL 38 #define MAXCHANNEL 224 39 40 #define WL_CHANSPEC_CHAN_MASK 0x00ff 41 #define WL_CHANSPEC_CHAN_SHIFT 0 42 43 #define WL_CHANSPEC_CTL_SB_MASK 0x0300 44 #define WL_CHANSPEC_CTL_SB_SHIFT 8 45 #define WL_CHANSPEC_CTL_SB_LOWER 0x0100 46 #define WL_CHANSPEC_CTL_SB_UPPER 0x0200 47 #define WL_CHANSPEC_CTL_SB_NONE 0x0300 48 49 #define WL_CHANSPEC_BW_MASK 0x0C00 50 #define WL_CHANSPEC_BW_SHIFT 10 51 #define WL_CHANSPEC_BW_10 0x0400 52 #define WL_CHANSPEC_BW_20 0x0800 53 #define WL_CHANSPEC_BW_40 0x0C00 54 55 #define WL_CHANSPEC_BAND_MASK 0xf000 56 #define WL_CHANSPEC_BAND_SHIFT 12 57 #define WL_CHANSPEC_BAND_5G 0x1000 58 #define WL_CHANSPEC_BAND_2G 0x2000 59 #define INVCHANSPEC 255 60 61 62 #define WF_CHAN_FACTOR_2_4_G 4814 63 #define WF_CHAN_FACTOR_5_G 10000 64 #define WF_CHAN_FACTOR_4_G 8000 65 66 67 #define LOWER_20_SB(channel) (((channel) > CH_10MHZ_APART) ? ((channel) - CH_10MHZ_APART) : 0) 68 #define UPPER_20_SB(channel) (((channel) < (MAXCHANNEL - CH_10MHZ_APART)) ? \ 69 ((channel) + CH_10MHZ_APART) : 0) 70 #define CHSPEC_WLCBANDUNIT(chspec) (CHSPEC_IS5G(chspec) ? BAND_5G_INDEX : BAND_2G_INDEX) 71 #define CH20MHZ_CHSPEC(channel) (chanspec_t)((chanspec_t)(channel) | WL_CHANSPEC_BW_20 | \ 72 WL_CHANSPEC_CTL_SB_NONE | (((channel) <= CH_MAX_2G_CHANNEL) ? \ 73 WL_CHANSPEC_BAND_2G : WL_CHANSPEC_BAND_5G)) 74 #define NEXT_20MHZ_CHAN(channel) (((channel) < (MAXCHANNEL - CH_20MHZ_APART)) ? \ 75 ((channel) + CH_20MHZ_APART) : 0) 76 #define CH40MHZ_CHSPEC(channel, ctlsb) (chanspec_t) \ 77 ((channel) | (ctlsb) | WL_CHANSPEC_BW_40 | \ 78 ((channel) <= CH_MAX_2G_CHANNEL ? WL_CHANSPEC_BAND_2G : \ 79 WL_CHANSPEC_BAND_5G)) 80 #define CHSPEC_CHANNEL(chspec) ((uint8)((chspec) & WL_CHANSPEC_CHAN_MASK)) 81 #define CHSPEC_BAND(chspec) ((chspec) & WL_CHANSPEC_BAND_MASK) 82 83 84 #define CHSPEC_CTL_SB(chspec) (chspec & WL_CHANSPEC_CTL_SB_MASK) 85 #define CHSPEC_BW(chspec) (chspec & WL_CHANSPEC_BW_MASK) 86 87 #ifdef WL11N_20MHZONLY 88 89 #define CHSPEC_IS10(chspec) 0 90 #define CHSPEC_IS20(chspec) 1 91 #ifndef CHSPEC_IS40 92 #define CHSPEC_IS40(chspec) 0 93 #endif 94 95 #else 96 97 #define CHSPEC_IS10(chspec) (((chspec) & WL_CHANSPEC_BW_MASK) == WL_CHANSPEC_BW_10) 98 #define CHSPEC_IS20(chspec) (((chspec) & WL_CHANSPEC_BW_MASK) == WL_CHANSPEC_BW_20) 99 #ifndef CHSPEC_IS40 100 #define CHSPEC_IS40(chspec) (((chspec) & WL_CHANSPEC_BW_MASK) == WL_CHANSPEC_BW_40) 101 #endif 102 103 #endif 104 105 #define CHSPEC_IS20_UNCOND(chspec) (((chspec) & WL_CHANSPEC_BW_MASK) == WL_CHANSPEC_BW_20) 106 107 #define CHSPEC_IS5G(chspec) (((chspec) & WL_CHANSPEC_BAND_MASK) == WL_CHANSPEC_BAND_5G) 108 #define CHSPEC_IS2G(chspec) (((chspec) & WL_CHANSPEC_BAND_MASK) == WL_CHANSPEC_BAND_2G) 109 #define CHSPEC_SB_NONE(chspec) (((chspec) & WL_CHANSPEC_CTL_SB_MASK) == WL_CHANSPEC_CTL_SB_NONE) 110 #define CHSPEC_SB_UPPER(chspec) (((chspec) & WL_CHANSPEC_CTL_SB_MASK) == WL_CHANSPEC_CTL_SB_UPPER) 111 #define CHSPEC_SB_LOWER(chspec) (((chspec) & WL_CHANSPEC_CTL_SB_MASK) == WL_CHANSPEC_CTL_SB_LOWER) 112 #define CHSPEC_CTL_CHAN(chspec) ((CHSPEC_SB_LOWER(chspec)) ? \ 113 (LOWER_20_SB(((chspec) & WL_CHANSPEC_CHAN_MASK))) : \ 114 (UPPER_20_SB(((chspec) & WL_CHANSPEC_CHAN_MASK)))) 115 #define CHSPEC2WLC_BAND(chspec) (CHSPEC_IS5G(chspec) ? WLC_BAND_5G : WLC_BAND_2G) 116 117 #define CHANSPEC_STR_LEN 8 118 119 120 #define WLC_MAXRATE 108 121 #define WLC_RATE_1M 2 122 #define WLC_RATE_2M 4 123 #define WLC_RATE_5M5 11 124 #define WLC_RATE_11M 22 125 #define WLC_RATE_6M 12 126 #define WLC_RATE_9M 18 127 #define WLC_RATE_12M 24 128 #define WLC_RATE_18M 36 129 #define WLC_RATE_24M 48 130 #define WLC_RATE_36M 72 131 #define WLC_RATE_48M 96 132 #define WLC_RATE_54M 108 133 134 #define WLC_2G_25MHZ_OFFSET 5 135 136 137 extern char * wf_chspec_ntoa(chanspec_t chspec, char *buf); 138 139 140 extern chanspec_t wf_chspec_aton(char *a); 141 142 143 extern bool wf_chspec_malformed(chanspec_t chanspec); 144 145 146 extern uint8 wf_chspec_ctlchan(chanspec_t chspec); 147 148 149 extern chanspec_t wf_chspec_ctlchspec(chanspec_t chspec); 150 151 152 extern int wf_mhz2channel(uint freq, uint start_factor); 153 154 155 extern int wf_channel2mhz(uint channel, uint start_factor); 156 157 #endif 158