2 * Copyright (c) 2013 Eugene Krasnikov <k.eugene.e@gmail.com>
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <linux/completion.h>
21 #include <linux/in6.h>
22 #include <linux/printk.h>
23 #include <linux/spinlock.h>
24 #include <net/mac80211.h>
33 #define WLAN_NV_FILE "wlan/prima/WCNSS_qcom_wlan_nv.bin"
34 #define WCN36XX_AGGR_BUFFER_SIZE 64
36 extern unsigned int wcn36xx_dbg_mask
;
38 enum wcn36xx_debug_mask
{
39 WCN36XX_DBG_DXE
= 0x00000001,
40 WCN36XX_DBG_DXE_DUMP
= 0x00000002,
41 WCN36XX_DBG_SMD
= 0x00000004,
42 WCN36XX_DBG_SMD_DUMP
= 0x00000008,
43 WCN36XX_DBG_RX
= 0x00000010,
44 WCN36XX_DBG_RX_DUMP
= 0x00000020,
45 WCN36XX_DBG_TX
= 0x00000040,
46 WCN36XX_DBG_TX_DUMP
= 0x00000080,
47 WCN36XX_DBG_HAL
= 0x00000100,
48 WCN36XX_DBG_HAL_DUMP
= 0x00000200,
49 WCN36XX_DBG_MAC
= 0x00000400,
50 WCN36XX_DBG_BEACON
= 0x00000800,
51 WCN36XX_DBG_BEACON_DUMP
= 0x00001000,
52 WCN36XX_DBG_PMC
= 0x00002000,
53 WCN36XX_DBG_PMC_DUMP
= 0x00004000,
54 WCN36XX_DBG_TESTMODE
= 0x00008000,
55 WCN36XX_DBG_TESTMODE_DUMP
= 0x00010000,
56 WCN36XX_DBG_ANY
= 0xffffffff,
59 #define wcn36xx_err(fmt, arg...) \
60 printk(KERN_ERR pr_fmt("ERROR " fmt), ##arg)
62 #define wcn36xx_warn(fmt, arg...) \
63 printk(KERN_WARNING pr_fmt("WARNING " fmt), ##arg)
65 #define wcn36xx_info(fmt, arg...) \
66 printk(KERN_INFO pr_fmt(fmt), ##arg)
68 #define wcn36xx_dbg(mask, fmt, arg...) do { \
69 if (wcn36xx_dbg_mask & mask) \
70 printk(KERN_DEBUG pr_fmt(fmt), ##arg); \
73 #define wcn36xx_dbg_dump(mask, prefix_str, buf, len) do { \
74 if (wcn36xx_dbg_mask & mask) \
75 print_hex_dump(KERN_DEBUG, pr_fmt(prefix_str), \
76 DUMP_PREFIX_OFFSET, 32, 1, \
80 enum wcn36xx_ampdu_state
{
84 WCN36XX_AMPDU_OPERATIONAL
,
87 #define HW_VALUE_PHY_SHIFT 8
88 #define HW_VALUE_PHY(hw_value) ((hw_value) >> HW_VALUE_PHY_SHIFT)
89 #define HW_VALUE_CHANNEL(hw_value) ((hw_value) & 0xFF)
90 #define WCN36XX_HW_CHANNEL(__wcn)\
91 HW_VALUE_CHANNEL(__wcn->hw->conf.chandef.chan->hw_value)
92 #define WCN36XX_BAND(__wcn) (__wcn->hw->conf.chandef.chan->band)
93 #define WCN36XX_CENTER_FREQ(__wcn) (__wcn->hw->conf.chandef.chan->center_freq)
94 #define WCN36XX_LISTEN_INTERVAL(__wcn) (__wcn->hw->conf.listen_interval)
95 #define WCN36XX_FLAGS(__wcn) (__wcn->hw->flags)
96 #define WCN36XX_MAX_POWER(__wcn) (__wcn->hw->conf.chandef.chan->max_power)
98 #define RF_UNKNOWN 0x0000
99 #define RF_IRIS_WCN3620 0x3620
100 #define RF_IRIS_WCN3660 0x3660
101 #define RF_IRIS_WCN3680 0x3680
103 static inline void buff_to_be(void *buf
, size_t len
)
109 for (i
= 0; i
< len
; i
++)
110 to
[i
] = cpu_to_be32(from
[i
]);
119 * struct wcn36xx_vif - holds VIF related fields
121 * @bss_index: bss_index is initially set to 0xFF. bss_index is received from
122 * HW after first config_bss call and must be used in delete_bss and
126 struct list_head list
;
128 enum ani_ed_type encrypt_type
;
131 struct wcn36xx_hal_mac_ssid ssid
;
132 enum wcn36xx_hal_bss_type bss_type
;
134 /* Power management */
135 enum wcn36xx_power_state pw_state
;
138 /* Returned from WCN36XX_HAL_ADD_STA_SELF_RSP */
140 u8 self_dpu_desc_index
;
141 u8 self_ucast_dpu_sign
;
143 #if IS_ENABLED(CONFIG_IPV6)
144 /* IPv6 addresses for WoWLAN */
145 struct in6_addr target_ipv6_addrs
[WCN36XX_HAL_IPV6_OFFLOAD_ADDR_MAX
];
146 unsigned long tentative_addrs
[BITS_TO_LONGS(WCN36XX_HAL_IPV6_OFFLOAD_ADDR_MAX
)];
147 int num_target_ipv6_addrs
;
149 /* WoWLAN GTK rekey data */
151 u8 kck
[NL80211_KCK_LEN
], kek
[NL80211_KEK_LEN
];
156 struct list_head sta_list
;
162 * struct wcn36xx_sta - holds STA related fields
164 * @tid: traffic ID that is used during AMPDU and in TX BD.
165 * @sta_index: STA index is returned from HW after config_sta call and is
166 * used in both SMD channel and TX BD.
167 * @dpu_desc_index: DPU descriptor index is returned from HW after config_sta
168 * call and is used in TX BD.
169 * @bss_sta_index: STA index is returned from HW after config_bss call and is
170 * used in both SMD channel and TX BD. See table below when it is used.
171 * @bss_dpu_desc_index: DPU descriptor index is returned from HW after
172 * config_bss call and is used in TX BD.
173 * ______________________________________________
175 * |______________|_____________|_______________|
176 * | TX BD |bss_sta_index| sta_index |
177 * |______________|_____________|_______________|
178 * |all SMD calls |bss_sta_index| sta_index |
179 * |______________|_____________|_______________|
180 * |smd_delete_sta| sta_index | sta_index |
181 * |______________|_____________|_______________|
184 struct list_head list
;
185 struct wcn36xx_vif
*vif
;
192 u8 bss_dpu_desc_index
;
193 bool is_data_encrypted
;
195 struct wcn36xx_hal_supported_rates_v1 supported_rates
;
197 spinlock_t ampdu_lock
; /* protects next two fields */
198 enum wcn36xx_ampdu_state ampdu_state
[16];
199 int non_agg_frame_ct
;
202 struct wcn36xx_dxe_ch
;
204 struct wcn36xx_chan_survey
{
210 struct ieee80211_hw
*hw
;
212 struct list_head vif_list
;
215 const struct firmware
*nv
;
221 u32 fw_feat_caps
[WCN36XX_HAL_CAPS_SIZE
];
225 /* extra byte for the NULL termination */
226 u8 crm_version
[WCN36XX_HAL_VERSION_LENGTH
+ 1];
227 u8 wlan_version
[WCN36XX_HAL_VERSION_LENGTH
+ 1];
234 void __iomem
*ccu_base
;
235 void __iomem
*dxe_base
;
237 struct rpmsg_endpoint
*smd_channel
;
239 struct qcom_smem_state
*tx_enable_state
;
240 unsigned tx_enable_state_bit
;
241 struct qcom_smem_state
*tx_rings_empty_state
;
242 unsigned tx_rings_empty_state_bit
;
244 /* prevents concurrent FW reconfiguration */
245 struct mutex conf_mutex
;
248 * smd_buf must be protected with smd_mutex to garantee
249 * that all messages are sent one after another
253 struct mutex hal_mutex
;
254 struct completion hal_rsp_compl
;
255 struct workqueue_struct
*hal_ind_wq
;
256 struct work_struct hal_ind_work
;
257 spinlock_t hal_ind_lock
;
258 struct list_head hal_ind_queue
;
260 struct cfg80211_scan_request
*scan_req
;
262 u8 sw_scan_opchannel
;
265 struct ieee80211_vif
*sw_scan_vif
;
266 struct mutex scan_lock
;
270 struct wcn36xx_dxe_ch dxe_tx_l_ch
; /* TX low */
271 struct wcn36xx_dxe_ch dxe_tx_h_ch
; /* TX high */
272 struct wcn36xx_dxe_ch dxe_rx_l_ch
; /* RX low */
273 struct wcn36xx_dxe_ch dxe_rx_h_ch
; /* RX high */
275 /* For synchronization of DXE resources from BH, IRQ and WQ contexts */
280 struct wcn36xx_dxe_mem_pool mgmt_mem_pool
;
281 struct wcn36xx_dxe_mem_pool data_mem_pool
;
283 struct sk_buff
*tx_ack_skb
;
284 struct timer_list tx_ack_timer
;
286 /* For A-MSDU re-aggregation */
287 struct sk_buff_head amsdu
;
292 #ifdef CONFIG_WCN36XX_DEBUGFS
293 /* Debug file system entry */
294 struct wcn36xx_dfs_entry dfs
;
295 #endif /* CONFIG_WCN36XX_DEBUGFS */
297 struct ieee80211_supported_band
*band
;
298 struct ieee80211_channel
*channel
;
300 spinlock_t survey_lock
; /* protects chan_survey */
301 struct wcn36xx_chan_survey
*chan_survey
;
304 static inline bool wcn36xx_is_fw_version(struct wcn36xx
*wcn
,
310 return (wcn
->fw_major
== major
&&
311 wcn
->fw_minor
== minor
&&
312 wcn
->fw_version
== version
&&
313 wcn
->fw_revision
== revision
);
315 void wcn36xx_set_default_rates(struct wcn36xx_hal_supported_rates
*rates
);
316 void wcn36xx_set_default_rates_v1(struct wcn36xx_hal_supported_rates_v1
*rates
);
319 struct ieee80211_sta
*wcn36xx_priv_to_sta(struct wcn36xx_sta
*sta_priv
)
321 return container_of((void *)sta_priv
, struct ieee80211_sta
, drv_priv
);
325 struct wcn36xx_vif
*wcn36xx_vif_to_priv(struct ieee80211_vif
*vif
)
327 return (struct wcn36xx_vif
*) vif
->drv_priv
;
331 struct ieee80211_vif
*wcn36xx_priv_to_vif(struct wcn36xx_vif
*vif_priv
)
333 return container_of((void *) vif_priv
, struct ieee80211_vif
, drv_priv
);
337 struct wcn36xx_sta
*wcn36xx_sta_to_priv(struct ieee80211_sta
*sta
)
339 return (struct wcn36xx_sta
*)sta
->drv_priv
;
342 #endif /* _WCN36XX_H_ */