blob: 1d23badb5453db39cb6367825e79303c0b72556b [file] [log] [blame]
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001/* ////////////////////////////////////////////////////////////////////////// */
2/* */
3/* Copyright (c) Atmel Corporation. All rights reserved. */
4/* */
5/* Module Name: wilc_wlan.c */
6/* */
7/* */
8/* //////////////////////////////////////////////////////////////////////////// */
9
10#include "wilc_wlan_if.h"
Tony Cho60bd1002015-10-12 16:56:04 +090011#include "wilc_wfi_netdevice.h"
Glen Lee17e8f162015-10-02 14:22:07 +090012#include "wilc_wlan_cfg.h"
Johnny Kimc5c77ba2015-05-11 14:30:56 +090013
14/********************************************
15 *
16 * Global
17 *
18 ********************************************/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090019extern wilc_hif_func_t hif_sdio;
20extern wilc_hif_func_t hif_spi;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090021extern void WILC_WFI_mgmt_rx(u8 *buff, u32 size);
22u32 wilc_get_chipid(u8 update);
Dean Lee72ed4dc2015-06-12 14:11:44 +090023u16 Set_machw_change_vir_if(bool bValue);
Johnny Kimc5c77ba2015-05-11 14:30:56 +090024
Johnny Kimc5c77ba2015-05-11 14:30:56 +090025
26
27typedef struct {
28 int quit;
29
30 /**
31 * input interface functions
32 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090033 wilc_wlan_io_func_t io_func;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090034
35 /**
36 * host interface functions
37 **/
38 wilc_hif_func_t hif_func;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090039
40 /**
41 * configuration interface functions
42 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090043 int cfg_frame_in_use;
44 wilc_cfg_frame_t cfg_frame;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090045 u32 cfg_frame_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090046 int cfg_seq_no;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090047
48 /**
49 * RX buffer
50 **/
51 #ifdef MEMORY_STATIC
Chaehyun Lim51e825f2015-09-15 14:06:14 +090052 u8 *rx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090053 u32 rx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090054 #endif
55 /**
56 * TX buffer
57 **/
Chaehyun Lim51e825f2015-09-15 14:06:14 +090058 u8 *tx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090059 u32 tx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090060
61 /**
62 * TX queue
63 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090064
Johnny Kimc5c77ba2015-05-11 14:30:56 +090065 unsigned long txq_spinlock_flags;
66
67 struct txq_entry_t *txq_head;
68 struct txq_entry_t *txq_tail;
69 int txq_entries;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090070 int txq_exit;
71
72 /**
73 * RX queue
74 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090075 struct rxq_entry_t *rxq_head;
76 struct rxq_entry_t *rxq_tail;
77 int rxq_entries;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090078 int rxq_exit;
79
80
81} wilc_wlan_dev_t;
82
83static wilc_wlan_dev_t g_wlan;
84
Chaehyun Lim9af382b2015-09-16 20:11:27 +090085static inline void chip_allow_sleep(void);
86static inline void chip_wakeup(void);
Johnny Kimc5c77ba2015-05-11 14:30:56 +090087/********************************************
88 *
89 * Debug
90 *
91 ********************************************/
92
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090093static u32 dbgflag = N_INIT | N_ERR | N_INTR | N_TXQ | N_RXQ;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090094
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090095static void wilc_debug(u32 flag, char *fmt, ...)
Johnny Kimc5c77ba2015-05-11 14:30:56 +090096{
97 char buf[256];
98 va_list args;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090099
100 if (flag & dbgflag) {
101 va_start(args, fmt);
Hari Prasath Gujulan Elango81053222015-06-22 13:13:58 +0000102 vsprintf(buf, fmt, args);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900103 va_end(args);
104
Glen Leeef2b7842015-09-24 18:14:55 +0900105 linux_wlan_dbg(buf);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900106 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900107}
108
109static CHIP_PS_STATE_T genuChipPSstate = CHIP_WAKEDUP;
110
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900111/*acquire_bus() and release_bus() are made static inline functions*/
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900112/*as a temporary workaround to fix a problem of receiving*/
113/*unknown interrupt from FW*/
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900114static inline void acquire_bus(BUS_ACQUIRE_T acquire)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900115{
116
Glen Lee187f1ef2015-09-24 18:15:01 +0900117 mutex_lock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900118 #ifndef WILC_OPTIMIZE_SLEEP_INT
119 if (genuChipPSstate != CHIP_WAKEDUP)
120 #endif
121 {
122 if (acquire == ACQUIRE_AND_WAKEUP)
123 chip_wakeup();
124 }
125
126}
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900127static inline void release_bus(BUS_RELEASE_T release)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900128{
129 #ifdef WILC_OPTIMIZE_SLEEP_INT
130 if (release == RELEASE_ALLOW_SLEEP)
131 chip_allow_sleep();
132 #endif
Glen Lee187f1ef2015-09-24 18:15:01 +0900133 mutex_unlock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900134}
135/********************************************
136 *
137 * Queue
138 *
139 ********************************************/
140
141static void wilc_wlan_txq_remove(struct txq_entry_t *tqe)
142{
143
144 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900145 if (tqe == p->txq_head) {
146
147 p->txq_head = tqe->next;
148 if (p->txq_head)
149 p->txq_head->prev = NULL;
150
151
152 } else if (tqe == p->txq_tail) {
153 p->txq_tail = (tqe->prev);
154 if (p->txq_tail)
155 p->txq_tail->next = NULL;
156 } else {
157 tqe->prev->next = tqe->next;
158 tqe->next->prev = tqe->prev;
159 }
160 p->txq_entries -= 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900161
162}
163
164static struct txq_entry_t *wilc_wlan_txq_remove_from_head(void)
165{
166 struct txq_entry_t *tqe;
167 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
168 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900169
Glen Lee85e57562015-09-24 18:14:56 +0900170 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900171 if (p->txq_head) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900172 tqe = p->txq_head;
173 p->txq_head = tqe->next;
174 if (p->txq_head) {
175 p->txq_head->prev = NULL;
176 }
177 p->txq_entries -= 1;
178
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900179
180
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900181
182 } else {
183 tqe = NULL;
184 }
Glen Lee85e57562015-09-24 18:14:56 +0900185 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900186 return tqe;
187}
188
189static void wilc_wlan_txq_add_to_tail(struct txq_entry_t *tqe)
190{
191 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
192 unsigned long flags;
Glen Lee85e57562015-09-24 18:14:56 +0900193 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900194
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900195 if (p->txq_head == NULL) {
196 tqe->next = NULL;
197 tqe->prev = NULL;
198 p->txq_head = tqe;
199 p->txq_tail = tqe;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900200 } else {
201 tqe->next = NULL;
202 tqe->prev = p->txq_tail;
203 p->txq_tail->next = tqe;
204 p->txq_tail = tqe;
205 }
206 p->txq_entries += 1;
207 PRINT_D(TX_DBG, "Number of entries in TxQ = %d\n", p->txq_entries);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900208
Glen Lee85e57562015-09-24 18:14:56 +0900209 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900210
211 /**
212 * wake up TX queue
213 **/
214 PRINT_D(TX_DBG, "Wake the txq_handling\n");
215
Glen Lee5cd63632015-09-24 18:14:58 +0900216 up(&g_linux_wlan->txq_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900217}
218
219static int wilc_wlan_txq_add_to_head(struct txq_entry_t *tqe)
220{
221 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
222 unsigned long flags;
Glen Leeb002e202015-09-24 18:15:05 +0900223 if (linux_wlan_lock_timeout(&g_linux_wlan->txq_add_to_head_cs,
224 CFG_PKTS_TIMEOUT))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900225 return -1;
226
Glen Lee85e57562015-09-24 18:14:56 +0900227 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900228
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900229 if (p->txq_head == NULL) {
230 tqe->next = NULL;
231 tqe->prev = NULL;
232 p->txq_head = tqe;
233 p->txq_tail = tqe;
234 } else {
235 tqe->next = p->txq_head;
236 tqe->prev = NULL;
237 p->txq_head->prev = tqe;
238 p->txq_head = tqe;
239 }
240 p->txq_entries += 1;
241 PRINT_D(TX_DBG, "Number of entries in TxQ = %d\n", p->txq_entries);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900242
Glen Lee85e57562015-09-24 18:14:56 +0900243 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Glen Leed5a63a82015-09-24 18:15:00 +0900244 up(&g_linux_wlan->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900245
246
247 /**
248 * wake up TX queue
249 **/
Glen Lee5cd63632015-09-24 18:14:58 +0900250 up(&g_linux_wlan->txq_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900251 PRINT_D(TX_DBG, "Wake up the txq_handler\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900252
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900253 return 0;
254
255}
256
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900257u32 Statisitcs_totalAcks = 0, Statisitcs_DroppedAcks = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900258
259#ifdef TCP_ACK_FILTER
260struct Ack_session_info;
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530261struct Ack_session_info {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900262 u32 Ack_seq_num;
263 u32 Bigger_Ack_num;
Chaehyun Limec53adf2015-09-15 14:06:15 +0900264 u16 src_port;
265 u16 dst_port;
266 u16 status;
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530267};
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900268
269typedef struct {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900270 u32 ack_num;
271 u32 Session_index;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900272 struct txq_entry_t *txqe;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900273} Pending_Acks_info_t /*Ack_info_t*/;
274
275
276
277
278struct Ack_session_info *Free_head;
279struct Ack_session_info *Alloc_head;
280
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900281#define NOT_TCP_ACK (-1)
282
283#define MAX_TCP_SESSION 25
284#define MAX_PENDING_ACKS 256
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530285struct Ack_session_info Acks_keep_track_info[2 * MAX_TCP_SESSION];
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900286Pending_Acks_info_t Pending_Acks_info[MAX_PENDING_ACKS];
287
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900288u32 PendingAcks_arrBase;
289u32 Opened_TCP_session;
290u32 Pending_Acks;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900291
292
293
Chaehyun Limfed16f22015-09-17 16:48:43 +0900294static inline int Init_TCP_tracking(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900295{
296
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900297 return 0;
298
299}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900300static inline int add_TCP_track_session(u32 src_prt, u32 dst_prt, u32 seq)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900301{
302 Acks_keep_track_info[Opened_TCP_session].Ack_seq_num = seq;
303 Acks_keep_track_info[Opened_TCP_session].Bigger_Ack_num = 0;
304 Acks_keep_track_info[Opened_TCP_session].src_port = src_prt;
305 Acks_keep_track_info[Opened_TCP_session].dst_port = dst_prt;
306 Opened_TCP_session++;
307
308 PRINT_D(TCP_ENH, "TCP Session %d to Ack %d\n", Opened_TCP_session, seq);
309 return 0;
310}
311
Chaehyun Limfed16f22015-09-17 16:48:43 +0900312static inline int Update_TCP_track_session(u32 index, u32 Ack)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900313{
314
315 if (Ack > Acks_keep_track_info[index].Bigger_Ack_num) {
316 Acks_keep_track_info[index].Bigger_Ack_num = Ack;
317 }
318 return 0;
319
320}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900321static inline int add_TCP_Pending_Ack(u32 Ack, u32 Session_index, struct txq_entry_t *txqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900322{
323 Statisitcs_totalAcks++;
324 if (Pending_Acks < MAX_PENDING_ACKS) {
325 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].ack_num = Ack;
326 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].txqe = txqe;
327 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].Session_index = Session_index;
328 txqe->tcp_PendingAck_index = PendingAcks_arrBase + Pending_Acks;
329 Pending_Acks++;
330
331 } else {
332
333 }
334 return 0;
335}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900336static inline int remove_TCP_related(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900337{
338 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
339 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900340
Glen Lee85e57562015-09-24 18:14:56 +0900341 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900342
Glen Lee85e57562015-09-24 18:14:56 +0900343 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900344 return 0;
345}
346
Chaehyun Limfed16f22015-09-17 16:48:43 +0900347static inline int tcp_process(struct txq_entry_t *tqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900348{
349 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900350 u8 *eth_hdr_ptr;
351 u8 *buffer = tqe->buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900352 unsigned short h_proto;
353 int i;
354 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
355 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900356
Glen Lee85e57562015-09-24 18:14:56 +0900357 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900358
359 eth_hdr_ptr = &buffer[0];
360 h_proto = ntohs(*((unsigned short *)&eth_hdr_ptr[12]));
361 if (h_proto == 0x0800) { /* IP */
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900362 u8 *ip_hdr_ptr;
363 u8 protocol;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900364
365 ip_hdr_ptr = &buffer[ETHERNET_HDR_LEN];
366 protocol = ip_hdr_ptr[9];
367
368
369 if (protocol == 0x06) {
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900370 u8 *tcp_hdr_ptr;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900371 u32 IHL, Total_Length, Data_offset;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900372
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900373 tcp_hdr_ptr = &ip_hdr_ptr[IP_HDR_LEN];
374 IHL = (ip_hdr_ptr[0] & 0xf) << 2;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900375 Total_Length = (((u32)ip_hdr_ptr[2]) << 8) + ((u32)ip_hdr_ptr[3]);
376 Data_offset = (((u32)tcp_hdr_ptr[12] & 0xf0) >> 2);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900377 if (Total_Length == (IHL + Data_offset)) { /*we want to recognize the clear Acks(packet only carry Ack infos not with data) so data size must be equal zero*/
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900378 u32 seq_no, Ack_no;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900379
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900380 seq_no = (((u32)tcp_hdr_ptr[4]) << 24) + (((u32)tcp_hdr_ptr[5]) << 16) + (((u32)tcp_hdr_ptr[6]) << 8) + ((u32)tcp_hdr_ptr[7]);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900381
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900382 Ack_no = (((u32)tcp_hdr_ptr[8]) << 24) + (((u32)tcp_hdr_ptr[9]) << 16) + (((u32)tcp_hdr_ptr[10]) << 8) + ((u32)tcp_hdr_ptr[11]);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900383
384
385 for (i = 0; i < Opened_TCP_session; i++) {
386 if (Acks_keep_track_info[i].Ack_seq_num == seq_no) {
387 Update_TCP_track_session(i, Ack_no);
388 break;
389 }
390 }
391 if (i == Opened_TCP_session) {
392 add_TCP_track_session(0, 0, seq_no);
393 }
394 add_TCP_Pending_Ack(Ack_no, i, tqe);
395
396
397 }
398
399 } else {
400 ret = 0;
401 }
402 } else {
403 ret = 0;
404 }
Glen Lee85e57562015-09-24 18:14:56 +0900405 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900406 return ret;
407}
408
409
410static int wilc_wlan_txq_filter_dup_tcp_ack(void)
411{
412
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900413 u32 i = 0;
414 u32 Dropped = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900415 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
416
Glen Lee85e57562015-09-24 18:14:56 +0900417 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900418 for (i = PendingAcks_arrBase; i < (PendingAcks_arrBase + Pending_Acks); i++) {
419 if (Pending_Acks_info[i].ack_num < Acks_keep_track_info[Pending_Acks_info[i].Session_index].Bigger_Ack_num) {
420 struct txq_entry_t *tqe;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900421
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530422 PRINT_D(TCP_ENH, "DROP ACK: %u\n", Pending_Acks_info[i].ack_num);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900423 tqe = Pending_Acks_info[i].txqe;
424 if (tqe) {
425 wilc_wlan_txq_remove(tqe);
426 Statisitcs_DroppedAcks++;
427 tqe->status = 1; /* mark the packet send */
428 if (tqe->tx_complete_func)
429 tqe->tx_complete_func(tqe->priv, tqe->status);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -0700430 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900431 Dropped++;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900432 }
433 }
434 }
435 Pending_Acks = 0;
436 Opened_TCP_session = 0;
437
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530438 if (PendingAcks_arrBase == 0)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900439 PendingAcks_arrBase = MAX_TCP_SESSION;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530440 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900441 PendingAcks_arrBase = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900442
443
Glen Lee85e57562015-09-24 18:14:56 +0900444 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock,
445 p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900446
447 while (Dropped > 0) {
448 /*consume the semaphore count of the removed packet*/
Glen Leeb002e202015-09-24 18:15:05 +0900449 linux_wlan_lock_timeout(&g_linux_wlan->txq_event, 1);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900450 Dropped--;
451 }
452
453 return 1;
454}
455#endif
456
Dean Lee72ed4dc2015-06-12 14:11:44 +0900457bool EnableTCPAckFilter = false;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900458
Dean Lee72ed4dc2015-06-12 14:11:44 +0900459void Enable_TCP_ACK_Filter(bool value)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900460{
461 EnableTCPAckFilter = value;
462}
463
Dean Lee72ed4dc2015-06-12 14:11:44 +0900464bool is_TCP_ACK_Filter_Enabled(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900465{
466 return EnableTCPAckFilter;
467}
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900468
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900469static int wilc_wlan_txq_add_cfg_pkt(u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900470{
471 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
472 struct txq_entry_t *tqe;
473
474 PRINT_D(TX_DBG, "Adding config packet ...\n");
475 if (p->quit) {
476 PRINT_D(TX_DBG, "Return due to clear function\n");
Glen Lee6a3b94f2015-09-24 18:14:59 +0900477 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900478 return 0;
479 }
480
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700481 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_ATOMIC);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900482 if (tqe == NULL) {
483 PRINT_ER("Failed to allocate memory\n");
484 return 0;
485 }
486
487 tqe->type = WILC_CFG_PKT;
488 tqe->buffer = buffer;
489 tqe->buffer_size = buffer_size;
490 tqe->tx_complete_func = NULL;
491 tqe->priv = NULL;
492#ifdef TCP_ACK_FILTER
493 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
494#endif
495 /**
496 * Configuration packet always at the front
497 **/
498 PRINT_D(TX_DBG, "Adding the config packet at the Queue tail\n");
499
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900500 if (wilc_wlan_txq_add_to_head(tqe))
501 return 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900502 return 1;
503}
504
Glen Lee8fc84a62015-10-01 16:03:35 +0900505int wilc_wlan_txq_add_net_pkt(void *priv, u8 *buffer, u32 buffer_size,
506 wilc_tx_complete_func_t func)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900507{
508 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
509 struct txq_entry_t *tqe;
510
511 if (p->quit)
512 return 0;
513
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700514 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_ATOMIC);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900515
516 if (tqe == NULL)
517 return 0;
518 tqe->type = WILC_NET_PKT;
519 tqe->buffer = buffer;
520 tqe->buffer_size = buffer_size;
521 tqe->tx_complete_func = func;
522 tqe->priv = priv;
523
524 PRINT_D(TX_DBG, "Adding mgmt packet at the Queue tail\n");
525#ifdef TCP_ACK_FILTER
526 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
Abdul Hussain5a66bf22015-06-16 09:44:06 +0000527 if (is_TCP_ACK_Filter_Enabled())
Glen Lee25a84832015-09-16 18:53:22 +0900528 tcp_process(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900529#endif
530 wilc_wlan_txq_add_to_tail(tqe);
531 /*return number of itemes in the queue*/
532 return p->txq_entries;
533}
Glen Leefcc6ef92015-09-16 18:53:21 +0900534
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900535int wilc_wlan_txq_add_mgmt_pkt(void *priv, u8 *buffer, u32 buffer_size, wilc_tx_complete_func_t func)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900536{
537
538 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
539 struct txq_entry_t *tqe;
540
541 if (p->quit)
542 return 0;
543
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700544 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900545
546 if (tqe == NULL)
547 return 0;
548 tqe->type = WILC_MGMT_PKT;
549 tqe->buffer = buffer;
550 tqe->buffer_size = buffer_size;
551 tqe->tx_complete_func = func;
552 tqe->priv = priv;
553#ifdef TCP_ACK_FILTER
554 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
555#endif
556 PRINT_D(TX_DBG, "Adding Network packet at the Queue tail\n");
557 wilc_wlan_txq_add_to_tail(tqe);
558 return 1;
559}
Glen Leefcc6ef92015-09-16 18:53:21 +0900560
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900561static struct txq_entry_t *wilc_wlan_txq_get_first(void)
562{
563 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
564 struct txq_entry_t *tqe;
565 unsigned long flags;
566
Glen Lee85e57562015-09-24 18:14:56 +0900567 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900568
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900569 tqe = p->txq_head;
570
Glen Lee85e57562015-09-24 18:14:56 +0900571 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900572
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900573
574 return tqe;
575}
576
577static struct txq_entry_t *wilc_wlan_txq_get_next(struct txq_entry_t *tqe)
578{
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900579 unsigned long flags;
Glen Lee85e57562015-09-24 18:14:56 +0900580 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900581
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900582 tqe = tqe->next;
Glen Lee85e57562015-09-24 18:14:56 +0900583 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900584
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900585
586 return tqe;
587}
588
589static int wilc_wlan_rxq_add(struct rxq_entry_t *rqe)
590{
591 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
592
593 if (p->quit)
594 return 0;
595
Glen Lee645db602015-09-24 18:14:57 +0900596 mutex_lock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900597 if (p->rxq_head == NULL) {
598 PRINT_D(RX_DBG, "Add to Queue head\n");
599 rqe->next = NULL;
600 p->rxq_head = rqe;
601 p->rxq_tail = rqe;
602 } else {
603 PRINT_D(RX_DBG, "Add to Queue tail\n");
604 p->rxq_tail->next = rqe;
605 rqe->next = NULL;
606 p->rxq_tail = rqe;
607 }
608 p->rxq_entries += 1;
609 PRINT_D(RX_DBG, "Number of queue entries: %d\n", p->rxq_entries);
Glen Lee645db602015-09-24 18:14:57 +0900610 mutex_unlock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900611 return p->rxq_entries;
612}
613
614static struct rxq_entry_t *wilc_wlan_rxq_remove(void)
615{
616 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
617
618 PRINT_D(RX_DBG, "Getting rxQ element\n");
619 if (p->rxq_head) {
620 struct rxq_entry_t *rqe;
621
Glen Lee645db602015-09-24 18:14:57 +0900622 mutex_lock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900623 rqe = p->rxq_head;
624 p->rxq_head = p->rxq_head->next;
625 p->rxq_entries -= 1;
626 PRINT_D(RX_DBG, "RXQ entries decreased\n");
Glen Lee645db602015-09-24 18:14:57 +0900627 mutex_unlock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900628 return rqe;
629 }
630 PRINT_D(RX_DBG, "Nothing to get from Q\n");
631 return NULL;
632}
633
634
635/********************************************
636 *
637 * Power Save handle functions
638 *
639 ********************************************/
640
641
642
643#ifdef WILC_OPTIMIZE_SLEEP_INT
644
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900645static inline void chip_allow_sleep(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900646{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900647 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900648
649 /* Clear bit 1 */
650 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
651
Anish Bhattffda2032015-09-29 12:15:49 -0700652 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900653}
654
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900655static inline void chip_wakeup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900656{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900657 u32 reg, clk_status_reg, trials = 0;
658 u32 sleep_time;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900659
660 if ((g_wlan.io_func.io_type & 0x1) == HIF_SPI) {
661 do {
662 g_wlan.hif_func.hif_read_reg(1, &reg);
663 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700664 g_wlan.hif_func.hif_write_reg(1, reg | BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900665
666 /* Clear bit 1*/
Anish Bhattffda2032015-09-29 12:15:49 -0700667 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900668
669 do {
670 /* Wait for the chip to stabilize*/
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -0700671 usleep_range(2 * 1000, 2 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900672 /* Make sure chip is awake. This is an extra step that can be removed */
673 /* later to avoid the bus access overhead */
Dean Lee72ed4dc2015-06-12 14:11:44 +0900674 if ((wilc_get_chipid(true) == 0)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900675 wilc_debug(N_ERR, "Couldn't read chip id. Wake up failed\n");
676 }
Dean Lee72ed4dc2015-06-12 14:11:44 +0900677 } while ((wilc_get_chipid(true) == 0) && ((++trials % 3) == 0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900678
Dean Lee72ed4dc2015-06-12 14:11:44 +0900679 } while (wilc_get_chipid(true) == 0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900680 } else if ((g_wlan.io_func.io_type & 0x1) == HIF_SDIO) {
681 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
682 do {
683 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700684 g_wlan.hif_func.hif_write_reg(0xf0, reg | BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900685
686 /* Check the clock status */
687 g_wlan.hif_func.hif_read_reg(0xf1, &clk_status_reg);
688
689 /* in case of clocks off, wait 2ms, and check it again. */
690 /* if still off, wait for another 2ms, for a total wait of 6ms. */
691 /* If still off, redo the wake up sequence */
692 while (((clk_status_reg & 0x1) == 0) && (((++trials) % 3) == 0)) {
693 /* Wait for the chip to stabilize*/
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -0700694 usleep_range(2 * 1000, 2 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900695
696 /* Make sure chip is awake. This is an extra step that can be removed */
697 /* later to avoid the bus access overhead */
698 g_wlan.hif_func.hif_read_reg(0xf1, &clk_status_reg);
699
700 if ((clk_status_reg & 0x1) == 0) {
701 wilc_debug(N_ERR, "clocks still OFF. Wake up failed\n");
702 }
703 }
704 /* in case of failure, Reset the wakeup bit to introduce a new edge on the next loop */
705 if ((clk_status_reg & 0x1) == 0) {
706 /* Reset bit 0 */
Anish Bhattffda2032015-09-29 12:15:49 -0700707 g_wlan.hif_func.hif_write_reg(0xf0, reg &
708 (~BIT(0)));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900709 }
710 } while ((clk_status_reg & 0x1) == 0);
711 }
712
713
714 if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
715 g_wlan.hif_func.hif_read_reg(0x1C0C, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700716 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900717 g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
718
Dean Lee72ed4dc2015-06-12 14:11:44 +0900719 if (wilc_get_chipid(false) >= 0x1002b0) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900720 /* Enable PALDO back right after wakeup */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900721 u32 val32;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900722
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900723 g_wlan.hif_func.hif_read_reg(0x1e1c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700724 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900725 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
726
727 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700728 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900729 g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
730 }
731 }
732 genuChipPSstate = CHIP_WAKEDUP;
733}
734#else
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900735static inline void chip_wakeup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900736{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900737 u32 reg, trials = 0;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900738
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900739 do {
740 if ((g_wlan.io_func.io_type & 0x1) == HIF_SPI) {
741 g_wlan.hif_func.hif_read_reg(1, &reg);
742 /* Make sure bit 1 is 0 before we start. */
Anish Bhattffda2032015-09-29 12:15:49 -0700743 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900744 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700745 g_wlan.hif_func.hif_write_reg(1, reg | BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900746 /* Clear bit 1*/
Anish Bhattffda2032015-09-29 12:15:49 -0700747 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900748 } else if ((g_wlan.io_func.io_type & 0x1) == HIF_SDIO) {
749 /* Make sure bit 0 is 0 before we start. */
750 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700751 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900752 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700753 g_wlan.hif_func.hif_write_reg(0xf0, reg | BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900754 /* Clear bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700755 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900756 }
757
758 do {
759 /* Wait for the chip to stabilize*/
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900760 mdelay(3);
761
762 /* Make sure chip is awake. This is an extra step that can be removed */
763 /* later to avoid the bus access overhead */
Dean Lee72ed4dc2015-06-12 14:11:44 +0900764 if ((wilc_get_chipid(true) == 0)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900765 wilc_debug(N_ERR, "Couldn't read chip id. Wake up failed\n");
766 }
Dean Lee72ed4dc2015-06-12 14:11:44 +0900767 } while ((wilc_get_chipid(true) == 0) && ((++trials % 3) == 0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900768
Dean Lee72ed4dc2015-06-12 14:11:44 +0900769 } while (wilc_get_chipid(true) == 0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900770
771 if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
772 g_wlan.hif_func.hif_read_reg(0x1C0C, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700773 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900774 g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
775
Dean Lee72ed4dc2015-06-12 14:11:44 +0900776 if (wilc_get_chipid(false) >= 0x1002b0) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900777 /* Enable PALDO back right after wakeup */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900778 u32 val32;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900779
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900780 g_wlan.hif_func.hif_read_reg(0x1e1c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700781 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900782 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
783
784 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700785 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900786 g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
787 }
788 }
789 genuChipPSstate = CHIP_WAKEDUP;
790}
791#endif
Chaehyun Lim4e4467f2015-06-11 14:35:55 +0900792void chip_sleep_manually(u32 u32SleepTime)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900793{
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900794 if (genuChipPSstate != CHIP_WAKEDUP) {
795 /* chip is already sleeping. Do nothing */
796 return;
797 }
798 acquire_bus(ACQUIRE_ONLY);
799
800#ifdef WILC_OPTIMIZE_SLEEP_INT
801 chip_allow_sleep();
802#endif
803
804 /* Trigger the manual sleep interrupt */
805 g_wlan.hif_func.hif_write_reg(0x10a8, 1);
806
807 genuChipPSstate = CHIP_SLEEPING_MANUAL;
808 release_bus(RELEASE_ONLY);
809
810}
811
812
813/********************************************
814 *
815 * Tx, Rx queue handle functions
816 *
817 ********************************************/
Glen Leef590c4c2015-10-01 16:03:36 +0900818int wilc_wlan_handle_txq(u32 *pu32TxqCount)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900819{
820 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
821 int i, entries = 0;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900822 u32 sum;
823 u32 reg;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900824 u8 *txb = p->tx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900825 u32 offset = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900826 int vmm_sz = 0;
827 struct txq_entry_t *tqe;
828 int ret = 0;
829 int counter;
830 int timeout;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900831 u32 vmm_table[WILC_VMM_TBL_SIZE];
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900832
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900833 p->txq_exit = 0;
834 do {
835 if (p->quit)
836 break;
837
Glen Leeb002e202015-09-24 18:15:05 +0900838 linux_wlan_lock_timeout(&g_linux_wlan->txq_add_to_head_cs,
839 CFG_PKTS_TIMEOUT);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900840#ifdef TCP_ACK_FILTER
841 wilc_wlan_txq_filter_dup_tcp_ack();
842#endif
843 /**
844 * build the vmm list
845 **/
846 PRINT_D(TX_DBG, "Getting the head of the TxQ\n");
847 tqe = wilc_wlan_txq_get_first();
848 i = 0;
849 sum = 0;
850 do {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900851 if ((tqe != NULL) && (i < (WILC_VMM_TBL_SIZE - 1)) /* reserve last entry to 0 */) {
852
853 if (tqe->type == WILC_CFG_PKT) {
854 vmm_sz = ETH_CONFIG_PKT_HDR_OFFSET;
855 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900856 else if (tqe->type == WILC_NET_PKT) {
857 vmm_sz = ETH_ETHERNET_HDR_OFFSET;
858 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900859 else {
860 vmm_sz = HOST_HDR_OFFSET;
861 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900862 vmm_sz += tqe->buffer_size;
863 PRINT_D(TX_DBG, "VMM Size before alignment = %d\n", vmm_sz);
864 if (vmm_sz & 0x3) { /* has to be word aligned */
865 vmm_sz = (vmm_sz + 4) & ~0x3;
866 }
Glen Lee7015b5d2015-09-24 18:15:02 +0900867 if ((sum + vmm_sz) > LINUX_TX_SIZE) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900868 break;
869 }
870 PRINT_D(TX_DBG, "VMM Size AFTER alignment = %d\n", vmm_sz);
871 vmm_table[i] = vmm_sz / 4; /* table take the word size */
872 PRINT_D(TX_DBG, "VMMTable entry size = %d\n", vmm_table[i]);
873
874 if (tqe->type == WILC_CFG_PKT) {
Anish Bhattffda2032015-09-29 12:15:49 -0700875 vmm_table[i] |= BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900876 PRINT_D(TX_DBG, "VMMTable entry changed for CFG packet = %d\n", vmm_table[i]);
877 }
878#ifdef BIG_ENDIAN
879 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
880#endif
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900881
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900882 i++;
883 sum += vmm_sz;
884 PRINT_D(TX_DBG, "sum = %d\n", sum);
885 tqe = wilc_wlan_txq_get_next(tqe);
886 } else {
887 break;
888 }
889 } while (1);
890
891 if (i == 0) { /* nothing in the queue */
892 PRINT_D(TX_DBG, "Nothing in TX-Q\n");
893 break;
894 } else {
895 PRINT_D(TX_DBG, "Mark the last entry in VMM table - number of previous entries = %d\n", i);
896 vmm_table[i] = 0x0; /* mark the last element to 0 */
897 }
898 acquire_bus(ACQUIRE_AND_WAKEUP);
899 counter = 0;
900 do {
901
902 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
903 if (!ret) {
904 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg vmm_tbl_entry..\n");
905 break;
906 }
907
908 if ((reg & 0x1) == 0) {
909 /**
910 * write to vmm table
911 **/
912 PRINT_D(TX_DBG, "Writing VMM table ... with Size = %d\n", ((i + 1) * 4));
913 break;
914 } else {
915 counter++;
916 if (counter > 200) {
917 counter = 0;
918 PRINT_D(TX_DBG, "Looping in tx ctrl , forcce quit\n");
919 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, 0);
920 break;
921 }
922 /**
923 * wait for vmm table is ready
924 **/
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530925 PRINT_WRN(GENERIC_DBG, "[wilc txq]: warn, vmm table not clear yet, wait...\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900926 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700927 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900928 acquire_bus(ACQUIRE_AND_WAKEUP);
929 }
930 } while (!p->quit);
931
932 if (!ret) {
933 goto _end_;
934 }
935
936 timeout = 200;
937 do {
938
939 /**
940 * write to vmm table
941 **/
Chaehyun Limc3ca6372015-09-20 15:51:19 +0900942 ret = p->hif_func.hif_block_tx(WILC_VMM_TBL_RX_SHADOW_BASE, (u8 *)vmm_table, ((i + 1) * 4));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900943 if (!ret) {
944 wilc_debug(N_ERR, "ERR block TX of VMM table.\n");
945 break;
946 }
947
948
949 /**
950 * interrupt firmware
951 **/
952 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x2);
953 if (!ret) {
954 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg host_vmm_ctl..\n");
955 break;
956 }
957
958 /**
959 * wait for confirm...
960 **/
961
962 do {
963 ret = p->hif_func.hif_read_reg(WILC_HOST_VMM_CTL, &reg);
964 if (!ret) {
965 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg host_vmm_ctl..\n");
966 break;
967 }
968 if ((reg >> 2) & 0x1) {
969 /**
970 * Get the entries
971 **/
972 entries = ((reg >> 3) & 0x3f);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900973 break;
974 } else {
975 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700976 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900977 acquire_bus(ACQUIRE_AND_WAKEUP);
978 PRINT_WRN(GENERIC_DBG, "Can't get VMM entery - reg = %2x\n", reg);
979 }
980 } while (--timeout);
981 if (timeout <= 0) {
982 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x0);
983 break;
984 }
985
986 if (!ret) {
987 break;
988 }
989
990 if (entries == 0) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530991 PRINT_WRN(GENERIC_DBG, "[wilc txq]: no more buffer in the chip (reg: %08x), retry later [[ %d, %x ]]\n", reg, i, vmm_table[i - 1]);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900992
993 /* undo the transaction. */
994 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
995 if (!ret) {
996 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg WILC_HOST_TX_CTRL..\n");
997 break;
998 }
Anish Bhattffda2032015-09-29 12:15:49 -0700999 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001000 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, reg);
1001 if (!ret) {
1002 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg WILC_HOST_TX_CTRL..\n");
1003 break;
1004 }
1005 break;
1006 } else {
1007 break;
1008 }
1009 } while (1);
1010
1011 if (!ret) {
1012 goto _end_;
1013 }
1014 if (entries == 0) {
1015 ret = WILC_TX_ERR_NO_BUF;
1016 goto _end_;
1017 }
1018
1019 /* since copying data into txb takes some time, then
1020 * allow the bus lock to be released let the RX task go. */
1021 release_bus(RELEASE_ALLOW_SLEEP);
1022
1023 /**
1024 * Copy data to the TX buffer
1025 **/
1026 offset = 0;
1027 i = 0;
1028 do {
1029 tqe = wilc_wlan_txq_remove_from_head();
1030 if (tqe != NULL && (vmm_table[i] != 0)) {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001031 u32 header, buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001032
1033#ifdef BIG_ENDIAN
1034 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
1035#endif
1036 vmm_sz = (vmm_table[i] & 0x3ff); /* in word unit */
1037 vmm_sz *= 4;
1038 header = (tqe->type << 31) | (tqe->buffer_size << 15) | vmm_sz;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301039 if (tqe->type == WILC_MGMT_PKT)
Anish Bhattffda2032015-09-29 12:15:49 -07001040 header |= BIT(30);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301041 else
Anish Bhattffda2032015-09-29 12:15:49 -07001042 header &= ~BIT(30);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001043
1044#ifdef BIG_ENDIAN
1045 header = BYTE_SWAP(header);
1046#endif
1047 memcpy(&txb[offset], &header, 4);
1048 if (tqe->type == WILC_CFG_PKT) {
1049 buffer_offset = ETH_CONFIG_PKT_HDR_OFFSET;
1050 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001051 else if (tqe->type == WILC_NET_PKT) {
1052 char *pBSSID = ((struct tx_complete_data *)(tqe->priv))->pBssid;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001053
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001054 buffer_offset = ETH_ETHERNET_HDR_OFFSET;
1055 /* copy the bssid at the sart of the buffer */
1056 memcpy(&txb[offset + 4], pBSSID, 6);
1057 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001058 else {
1059 buffer_offset = HOST_HDR_OFFSET;
1060 }
1061
1062 memcpy(&txb[offset + buffer_offset], tqe->buffer, tqe->buffer_size);
1063 offset += vmm_sz;
1064 i++;
1065 tqe->status = 1; /* mark the packet send */
1066 if (tqe->tx_complete_func)
1067 tqe->tx_complete_func(tqe->priv, tqe->status);
1068 #ifdef TCP_ACK_FILTER
1069 if (tqe->tcp_PendingAck_index != NOT_TCP_ACK) {
1070 Pending_Acks_info[tqe->tcp_PendingAck_index].txqe = NULL;
1071 }
1072 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001073 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001074 } else {
1075 break;
1076 }
1077 } while (--entries);
1078
1079 /**
1080 * lock the bus
1081 **/
1082 acquire_bus(ACQUIRE_AND_WAKEUP);
1083
1084 ret = p->hif_func.hif_clear_int_ext(ENABLE_TX_VMM);
1085 if (!ret) {
1086 wilc_debug(N_ERR, "[wilc txq]: fail can't start tx VMM ...\n");
1087 goto _end_;
1088 }
1089
1090 /**
1091 * transfer
1092 **/
1093 ret = p->hif_func.hif_block_tx_ext(0, txb, offset);
1094 if (!ret) {
1095 wilc_debug(N_ERR, "[wilc txq]: fail can't block tx ext...\n");
1096 goto _end_;
1097 }
1098
1099_end_:
1100
1101 release_bus(RELEASE_ALLOW_SLEEP);
1102 if (ret != 1)
1103 break;
1104 } while (0);
Glen Leed5a63a82015-09-24 18:15:00 +09001105 up(&g_linux_wlan->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001106
1107 p->txq_exit = 1;
1108 PRINT_D(TX_DBG, "THREAD: Exiting txq\n");
1109 /* return tx[]q count */
1110 *pu32TxqCount = p->txq_entries;
1111 return ret;
1112}
1113
1114static void wilc_wlan_handle_rxq(void)
1115{
1116 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1117 int offset = 0, size, has_packet = 0;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001118 u8 *buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001119 struct rxq_entry_t *rqe;
1120
1121 p->rxq_exit = 0;
1122
1123
1124
1125
1126 do {
1127 if (p->quit) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301128 PRINT_D(RX_DBG, "exit 1st do-while due to Clean_UP function\n");
Glen Lee6a3b94f2015-09-24 18:14:59 +09001129 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001130 break;
1131 }
1132 rqe = wilc_wlan_rxq_remove();
1133 if (rqe == NULL) {
1134 PRINT_D(RX_DBG, "nothing in the queue - exit 1st do-while\n");
1135 break;
1136 }
1137 buffer = rqe->buffer;
1138 size = rqe->buffer_size;
1139 PRINT_D(RX_DBG, "rxQ entery Size = %d - Address = %p\n", size, buffer);
1140 offset = 0;
1141
1142
1143
1144 do {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001145 u32 header;
1146 u32 pkt_len, pkt_offset, tp_len;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001147 int is_cfg_packet;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001148
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001149 PRINT_D(RX_DBG, "In the 2nd do-while\n");
1150 memcpy(&header, &buffer[offset], 4);
1151#ifdef BIG_ENDIAN
1152 header = BYTE_SWAP(header);
1153#endif
1154 PRINT_D(RX_DBG, "Header = %04x - Offset = %d\n", header, offset);
1155
1156
1157
1158 is_cfg_packet = (header >> 31) & 0x1;
1159 pkt_offset = (header >> 22) & 0x1ff;
1160 tp_len = (header >> 11) & 0x7ff;
1161 pkt_len = header & 0x7ff;
1162
1163 if (pkt_len == 0 || tp_len == 0) {
1164 wilc_debug(N_RXQ, "[wilc rxq]: data corrupt, packet len or tp_len is 0 [%d][%d]\n", pkt_len, tp_len);
1165 break;
1166 }
1167
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001168 #define IS_MANAGMEMENT 0x100
1169 #define IS_MANAGMEMENT_CALLBACK 0x080
1170 #define IS_MGMT_STATUS_SUCCES 0x040
1171
1172
1173 if (pkt_offset & IS_MANAGMEMENT) {
1174 /* reset mgmt indicator bit, to use pkt_offeset in furthur calculations */
1175 pkt_offset &= ~(IS_MANAGMEMENT | IS_MANAGMEMENT_CALLBACK | IS_MGMT_STATUS_SUCCES);
1176
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001177 WILC_WFI_mgmt_rx(&buffer[offset + HOST_HDR_OFFSET], pkt_len);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001178 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001179 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001180 {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001181
1182 if (!is_cfg_packet) {
Glen Lee63611672015-09-24 18:14:52 +09001183 if (pkt_len > 0) {
1184 frmw_to_linux(&buffer[offset],
1185 pkt_len,
1186 pkt_offset);
1187 has_packet = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001188 }
1189 } else {
1190 wilc_cfg_rsp_t rsp;
1191
1192
1193
Glen Lee30f535a2015-10-02 14:22:10 +09001194 wilc_wlan_cfg_indicate_rx(&buffer[pkt_offset + offset], pkt_len, &rsp);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001195 if (rsp.type == WILC_CFG_RSP) {
1196 /**
1197 * wake up the waiting task...
1198 **/
1199 PRINT_D(RX_DBG, "p->cfg_seq_no = %d - rsp.seq_no = %d\n", p->cfg_seq_no, rsp.seq_no);
1200 if (p->cfg_seq_no == rsp.seq_no) {
Glen Lee6a3b94f2015-09-24 18:14:59 +09001201 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001202 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001203 } else if (rsp.type == WILC_CFG_RSP_STATUS) {
1204 /**
1205 * Call back to indicate status...
1206 **/
Glen Lee4417d3d2015-09-24 18:14:53 +09001207 linux_wlan_mac_indicate(WILC_MAC_INDICATE_STATUS);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001208
1209 } else if (rsp.type == WILC_CFG_RSP_SCAN) {
Glen Lee4417d3d2015-09-24 18:14:53 +09001210 linux_wlan_mac_indicate(WILC_MAC_INDICATE_SCAN);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001211 }
1212 }
1213 }
1214 offset += tp_len;
1215 if (offset >= size)
1216 break;
1217 } while (1);
1218
1219
1220#ifndef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001221 kfree(buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001222#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001223 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001224
1225 if (has_packet) {
Glen Leec0cadaa2015-09-24 18:14:54 +09001226 linux_wlan_rx_complete();
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001227 }
1228 } while (1);
1229
1230 p->rxq_exit = 1;
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301231 PRINT_D(RX_DBG, "THREAD: Exiting RX thread\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001232}
1233
1234/********************************************
1235 *
1236 * Fast DMA Isr
1237 *
1238 ********************************************/
1239static void wilc_unknown_isr_ext(void)
1240{
1241 g_wlan.hif_func.hif_clear_int_ext(0);
1242}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001243static void wilc_pllupdate_isr_ext(u32 int_stats)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001244{
1245
1246 int trials = 10;
1247
1248 g_wlan.hif_func.hif_clear_int_ext(PLL_INT_CLR);
1249
1250 /* Waiting for PLL */
Greg Kroah-Hartmanc2e4c0f2015-09-03 19:09:50 -07001251 mdelay(WILC_PLL_TO);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001252
1253 /* poll till read a valid data */
Dean Lee72ed4dc2015-06-12 14:11:44 +09001254 while (!(ISWILC1000(wilc_get_chipid(true)) && --trials)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001255 PRINT_D(TX_DBG, "PLL update retrying\n");
Greg Kroah-Hartmanc2e4c0f2015-09-03 19:09:50 -07001256 mdelay(1);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001257 }
1258}
1259
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001260static void wilc_sleeptimer_isr_ext(u32 int_stats1)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001261{
1262 g_wlan.hif_func.hif_clear_int_ext(SLEEP_INT_CLR);
1263#ifndef WILC_OPTIMIZE_SLEEP_INT
1264 genuChipPSstate = CHIP_SLEEPING_AUTO;
1265#endif
1266}
1267
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001268static void wilc_wlan_handle_isr_ext(u32 int_status)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001269{
1270 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1271#ifdef MEMORY_STATIC
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001272 u32 offset = p->rx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001273#endif
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001274 u8 *buffer = NULL;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001275 u32 size;
1276 u32 retries = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001277 int ret = 0;
1278 struct rxq_entry_t *rqe;
1279
1280
1281 /**
1282 * Get the rx size
1283 **/
1284
1285 size = ((int_status & 0x7fff) << 2);
1286
1287 while (!size && retries < 10) {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001288 u32 time = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001289 /*looping more secure*/
1290 /*zero size make a crashe because the dma will not happen and that will block the firmware*/
1291 wilc_debug(N_ERR, "RX Size equal zero ... Trying to read it again for %d time\n", time++);
1292 p->hif_func.hif_read_size(&size);
1293 size = ((size & 0x7fff) << 2);
1294 retries++;
1295
1296 }
1297
1298 if (size > 0) {
1299#ifdef MEMORY_STATIC
Glen Lee03eb7262015-09-24 18:15:03 +09001300 if (LINUX_RX_SIZE - offset < size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001301 offset = 0;
1302
1303 if (p->rx_buffer)
1304 buffer = &p->rx_buffer[offset];
1305 else {
1306 wilc_debug(N_ERR, "[wilc isr]: fail Rx Buffer is NULL...drop the packets (%d)\n", size);
1307 goto _end_;
1308 }
1309
1310#else
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001311 buffer = kmalloc(size, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001312 if (buffer == NULL) {
1313 wilc_debug(N_ERR, "[wilc isr]: fail alloc host memory...drop the packets (%d)\n", size);
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -07001314 usleep_range(100 * 1000, 100 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001315 goto _end_;
1316 }
1317#endif
1318
1319 /**
1320 * clear the chip's interrupt after getting size some register getting corrupted after clear the interrupt
1321 **/
1322 p->hif_func.hif_clear_int_ext(DATA_INT_CLR | ENABLE_RX_VMM);
1323
1324
1325 /**
1326 * start transfer
1327 **/
1328 ret = p->hif_func.hif_block_rx_ext(0, buffer, size);
1329
1330 if (!ret) {
1331 wilc_debug(N_ERR, "[wilc isr]: fail block rx...\n");
1332 goto _end_;
1333 }
1334_end_:
1335
1336
1337 if (ret) {
1338#ifdef MEMORY_STATIC
1339 offset += size;
1340 p->rx_buffer_offset = offset;
1341#endif
1342 /**
1343 * add to rx queue
1344 **/
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001345 rqe = kmalloc(sizeof(struct rxq_entry_t), GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001346 if (rqe != NULL) {
1347 rqe->buffer = buffer;
1348 rqe->buffer_size = size;
1349 PRINT_D(RX_DBG, "rxq entery Size= %d - Address = %p\n", rqe->buffer_size, rqe->buffer);
1350 wilc_wlan_rxq_add(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001351 }
1352 } else {
1353#ifndef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001354 kfree(buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001355#endif
1356 }
1357 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001358 wilc_wlan_handle_rxq();
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001359}
1360
1361void wilc_handle_isr(void)
1362{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001363 u32 int_status;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001364
1365 acquire_bus(ACQUIRE_AND_WAKEUP);
1366 g_wlan.hif_func.hif_read_int(&int_status);
1367
1368 if (int_status & PLL_INT_EXT) {
1369 wilc_pllupdate_isr_ext(int_status);
1370 }
1371 if (int_status & DATA_INT_EXT) {
1372 wilc_wlan_handle_isr_ext(int_status);
1373 #ifndef WILC_OPTIMIZE_SLEEP_INT
1374 /* Chip is up and talking*/
1375 genuChipPSstate = CHIP_WAKEDUP;
1376 #endif
1377 }
1378 if (int_status & SLEEP_INT_EXT) {
1379 wilc_sleeptimer_isr_ext(int_status);
1380 }
1381
1382 if (!(int_status & (ALL_INT_EXT))) {
1383#ifdef WILC_SDIO
1384 PRINT_D(TX_DBG, ">> UNKNOWN_INTERRUPT - 0x%08x\n", int_status);
1385#endif
1386 wilc_unknown_isr_ext();
1387 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001388 release_bus(RELEASE_ALLOW_SLEEP);
1389}
1390
1391/********************************************
1392 *
1393 * Firmware download
1394 *
1395 ********************************************/
Glen Lee63d7ab82015-10-01 16:03:32 +09001396int wilc_wlan_firmware_download(const u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001397{
1398 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001399 u32 offset;
1400 u32 addr, size, size2, blksz;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001401 u8 *dma_buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001402 int ret = 0;
1403
Anish Bhattffda2032015-09-29 12:15:49 -07001404 blksz = BIT(12);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001405 /* Allocate a DMA coherent buffer. */
1406
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001407 dma_buffer = kmalloc(blksz, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001408 if (dma_buffer == NULL) {
1409 /*EIO 5*/
1410 ret = -5;
1411 PRINT_ER("Can't allocate buffer for firmware download IO error\n ");
1412 goto _fail_1;
1413 }
1414
1415 PRINT_D(INIT_DBG, "Downloading firmware size = %d ...\n", buffer_size);
1416 /**
1417 * load the firmware
1418 **/
1419 offset = 0;
1420 do {
1421 memcpy(&addr, &buffer[offset], 4);
1422 memcpy(&size, &buffer[offset + 4], 4);
1423#ifdef BIG_ENDIAN
1424 addr = BYTE_SWAP(addr);
1425 size = BYTE_SWAP(size);
1426#endif
1427 acquire_bus(ACQUIRE_ONLY);
1428 offset += 8;
1429 while (((int)size) && (offset < buffer_size)) {
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301430 if (size <= blksz)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001431 size2 = size;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301432 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001433 size2 = blksz;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001434 /* Copy firmware into a DMA coherent buffer */
1435 memcpy(dma_buffer, &buffer[offset], size2);
1436 ret = p->hif_func.hif_block_tx(addr, dma_buffer, size2);
1437 if (!ret)
1438 break;
1439
1440 addr += size2;
1441 offset += size2;
1442 size -= size2;
1443 }
1444 release_bus(RELEASE_ONLY);
1445
1446 if (!ret) {
1447 /*EIO 5*/
1448 ret = -5;
1449 PRINT_ER("Can't download firmware IO error\n ");
1450 goto _fail_;
1451 }
1452 PRINT_D(INIT_DBG, "Offset = %d\n", offset);
1453 } while (offset < buffer_size);
1454
1455_fail_:
1456
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001457 kfree(dma_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001458
1459_fail_1:
1460
1461 return (ret < 0) ? ret : 0;
1462}
1463
1464/********************************************
1465 *
1466 * Common
1467 *
1468 ********************************************/
Glen Leee42563b2015-10-01 16:03:33 +09001469int wilc_wlan_start(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001470{
1471 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001472 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001473 int ret;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001474 u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001475
1476 /**
1477 * Set the host interface
1478 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001479 if (p->io_func.io_type == HIF_SDIO) {
1480 reg = 0;
Anish Bhattffda2032015-09-29 12:15:49 -07001481 reg |= BIT(3); /* bug 4456 and 4557 */
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001482 } else if (p->io_func.io_type == HIF_SPI) {
1483 reg = 1;
1484 }
1485 acquire_bus(ACQUIRE_ONLY);
1486 ret = p->hif_func.hif_write_reg(WILC_VMM_CORE_CFG, reg);
1487 if (!ret) {
1488 wilc_debug(N_ERR, "[wilc start]: fail write reg vmm_core_cfg...\n");
1489 release_bus(RELEASE_ONLY);
1490 /* EIO 5*/
1491 ret = -5;
1492 return ret;
1493 }
1494 reg = 0;
1495#ifdef WILC_SDIO_IRQ_GPIO
1496 reg |= WILC_HAVE_SDIO_IRQ_GPIO;
1497#endif
1498
1499#ifdef WILC_DISABLE_PMU
1500#else
1501 reg |= WILC_HAVE_USE_PMU;
1502#endif
1503
1504#ifdef WILC_SLEEP_CLK_SRC_XO
1505 reg |= WILC_HAVE_SLEEP_CLK_SRC_XO;
1506#elif defined WILC_SLEEP_CLK_SRC_RTC
1507 reg |= WILC_HAVE_SLEEP_CLK_SRC_RTC;
1508#endif
1509
1510#ifdef WILC_EXT_PA_INV_TX_RX
1511 reg |= WILC_HAVE_EXT_PA_INV_TX_RX;
1512#endif
1513
1514 reg |= WILC_HAVE_LEGACY_RF_SETTINGS;
1515
1516
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001517/*Set oscillator frequency*/
1518#ifdef XTAL_24
1519 reg |= WILC_HAVE_XTAL_24;
1520#endif
1521
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001522/*Enable/Disable GPIO configuration for FW logs*/
1523#ifdef DISABLE_WILC_UART
1524 reg |= WILC_HAVE_DISABLE_WILC_UART;
1525#endif
1526
1527 ret = p->hif_func.hif_write_reg(WILC_GP_REG_1, reg);
1528 if (!ret) {
1529 wilc_debug(N_ERR, "[wilc start]: fail write WILC_GP_REG_1 ...\n");
1530 release_bus(RELEASE_ONLY);
1531 /* EIO 5*/
1532 ret = -5;
1533 return ret;
1534 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001535
1536 /**
1537 * Bus related
1538 **/
1539 p->hif_func.hif_sync_ext(NUM_INT_EXT);
1540
1541 ret = p->hif_func.hif_read_reg(0x1000, &chipid);
1542 if (!ret) {
1543 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1000 ...\n");
1544 release_bus(RELEASE_ONLY);
1545 /* EIO 5*/
1546 ret = -5;
1547 return ret;
1548 }
1549
1550 /**
1551 * Go...
1552 **/
1553
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001554
1555 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -07001556 if ((reg & BIT(10)) == BIT(10)) {
1557 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001558 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1559 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1560 }
1561
Anish Bhattffda2032015-09-29 12:15:49 -07001562 reg |= BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001563 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1564 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1565 release_bus(RELEASE_ONLY);
1566
1567 return (ret < 0) ? ret : 0;
1568}
1569
1570void wilc_wlan_global_reset(void)
1571{
1572
1573 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001574
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001575 acquire_bus(ACQUIRE_AND_WAKEUP);
1576 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, 0x0);
1577 release_bus(RELEASE_ONLY);
1578}
Glen Lee8cec7412015-10-01 16:03:34 +09001579int wilc_wlan_stop(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001580{
1581 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001582 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001583 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001584 u8 timeout = 10;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001585 /**
1586 * TODO: stop the firmware, need a re-download
1587 **/
1588 acquire_bus(ACQUIRE_AND_WAKEUP);
1589
1590 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1591 if (!ret) {
1592 PRINT_ER("Error while reading reg\n");
1593 release_bus(RELEASE_ALLOW_SLEEP);
1594 return ret;
1595 }
1596
Anish Bhattffda2032015-09-29 12:15:49 -07001597 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001598
1599
1600 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1601 if (!ret) {
1602 PRINT_ER("Error while writing reg\n");
1603 release_bus(RELEASE_ALLOW_SLEEP);
1604 return ret;
1605 }
1606
1607
1608
1609 do {
1610 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1611 if (!ret) {
1612 PRINT_ER("Error while reading reg\n");
1613 release_bus(RELEASE_ALLOW_SLEEP);
1614 return ret;
1615 }
1616 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1617 /*Workaround to ensure that the chip is actually reset*/
Anish Bhattffda2032015-09-29 12:15:49 -07001618 if ((reg & BIT(10))) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001619 PRINT_D(GENERIC_DBG, "Bit 10 not reset : Retry %d\n", timeout);
Anish Bhattffda2032015-09-29 12:15:49 -07001620 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001621 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1622 timeout--;
1623 } else {
1624 PRINT_D(GENERIC_DBG, "Bit 10 reset after : Retry %d\n", timeout);
1625 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1626 if (!ret) {
1627 PRINT_ER("Error while reading reg\n");
1628 release_bus(RELEASE_ALLOW_SLEEP);
1629 return ret;
1630 }
1631 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1632 break;
1633 }
1634
1635 } while (timeout);
Anish Bhattffda2032015-09-29 12:15:49 -07001636 reg = (BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(8) | BIT(9) | BIT(26) |
1637 BIT(29) | BIT(30) | BIT(31));
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001638
1639 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Anish Bhattffda2032015-09-29 12:15:49 -07001640 reg = (u32)~BIT(10);
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001641
1642 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001643
1644 release_bus(RELEASE_ALLOW_SLEEP);
1645
1646 return ret;
1647}
1648
Glen Leea17e2ec2015-10-01 16:03:38 +09001649void wilc_wlan_cleanup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001650{
1651 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1652 struct txq_entry_t *tqe;
1653 struct rxq_entry_t *rqe;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001654 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001655 int ret;
1656
1657 p->quit = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001658 do {
1659 tqe = wilc_wlan_txq_remove_from_head();
1660 if (tqe == NULL)
1661 break;
1662 if (tqe->tx_complete_func)
1663 tqe->tx_complete_func(tqe->priv, 0);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001664 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001665 } while (1);
1666
1667 do {
1668 rqe = wilc_wlan_rxq_remove();
1669 if (rqe == NULL)
1670 break;
Javier Martinez Canillas6a272242015-09-22 15:24:50 +02001671#ifndef MEMORY_STATIC
1672 kfree(rqe->buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001673#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001674 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001675 } while (1);
1676
1677 /**
1678 * clean up buffer
1679 **/
1680
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001681 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001682 kfree(p->rx_buffer);
1683 p->rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001684 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001685 kfree(p->tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001686
1687 acquire_bus(ACQUIRE_AND_WAKEUP);
1688
1689
1690 ret = p->hif_func.hif_read_reg(WILC_GP_REG_0, &reg);
1691 if (!ret) {
1692 PRINT_ER("Error while reading reg\n");
1693 release_bus(RELEASE_ALLOW_SLEEP);
1694 }
1695 PRINT_ER("Writing ABORT reg\n");
1696 ret = p->hif_func.hif_write_reg(WILC_GP_REG_0, (reg | ABORT_INT));
1697 if (!ret) {
1698 PRINT_ER("Error while writing reg\n");
1699 release_bus(RELEASE_ALLOW_SLEEP);
1700 }
1701 release_bus(RELEASE_ALLOW_SLEEP);
1702 /**
1703 * io clean up
1704 **/
1705 p->hif_func.hif_deinit(NULL);
1706
1707}
1708
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001709static int wilc_wlan_cfg_commit(int type, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001710{
1711 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1712 wilc_cfg_frame_t *cfg = &p->cfg_frame;
1713 int total_len = p->cfg_frame_offset + 4 + DRIVER_HANDLER_SIZE;
1714 int seq_no = p->cfg_seq_no % 256;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09001715 int driver_handler = (u32)drvHandler;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001716
1717
1718 /**
1719 * Set up header
1720 **/
1721 if (type == WILC_CFG_SET) { /* Set */
1722 cfg->wid_header[0] = 'W';
1723 } else { /* Query */
1724 cfg->wid_header[0] = 'Q';
1725 }
1726 cfg->wid_header[1] = seq_no; /* sequence number */
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001727 cfg->wid_header[2] = (u8)total_len;
1728 cfg->wid_header[3] = (u8)(total_len >> 8);
1729 cfg->wid_header[4] = (u8)driver_handler;
1730 cfg->wid_header[5] = (u8)(driver_handler >> 8);
1731 cfg->wid_header[6] = (u8)(driver_handler >> 16);
1732 cfg->wid_header[7] = (u8)(driver_handler >> 24);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001733 p->cfg_seq_no = seq_no;
1734
1735 /**
1736 * Add to TX queue
1737 **/
1738
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001739 if (!wilc_wlan_txq_add_cfg_pkt(&cfg->wid_header[0], total_len))
1740 return -1;
1741
1742 return 0;
1743}
1744
Glen Lee1028e5a2015-10-01 16:03:40 +09001745int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
1746 int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001747{
1748 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001749 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001750 int ret_size;
1751
1752
1753 if (p->cfg_frame_in_use)
1754 return 0;
1755
1756 if (start)
1757 p->cfg_frame_offset = 0;
1758
1759 offset = p->cfg_frame_offset;
Glen Lee17e8f162015-10-02 14:22:07 +09001760 ret_size = wilc_wlan_cfg_set_wid(p->cfg_frame.frame, offset, (u16)wid,
1761 buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001762 offset += ret_size;
1763 p->cfg_frame_offset = offset;
1764
1765 if (commit) {
1766 PRINT_D(TX_DBG, "[WILC]PACKET Commit with sequence number %d\n", p->cfg_seq_no);
1767 PRINT_D(RX_DBG, "Processing cfg_set()\n");
1768 p->cfg_frame_in_use = 1;
1769
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001770 if (wilc_wlan_cfg_commit(WILC_CFG_SET, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001771 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001772
Glen Leeb002e202015-09-24 18:15:05 +09001773 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1774 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001775 PRINT_D(TX_DBG, "Set Timed Out\n");
1776 ret_size = 0;
1777 }
1778 p->cfg_frame_in_use = 0;
1779 p->cfg_frame_offset = 0;
1780 p->cfg_seq_no += 1;
1781
1782 }
1783
1784 return ret_size;
1785}
Glen Lee07056a82015-10-01 16:03:41 +09001786int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001787{
1788 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001789 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001790 int ret_size;
1791
1792
1793 if (p->cfg_frame_in_use)
1794 return 0;
1795
1796 if (start)
1797 p->cfg_frame_offset = 0;
1798
1799 offset = p->cfg_frame_offset;
Glen Leeec1b86b2015-10-02 14:22:08 +09001800 ret_size = wilc_wlan_cfg_get_wid(p->cfg_frame.frame, offset, (u16)wid);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001801 offset += ret_size;
1802 p->cfg_frame_offset = offset;
1803
1804 if (commit) {
1805 p->cfg_frame_in_use = 1;
1806
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001807 if (wilc_wlan_cfg_commit(WILC_CFG_QUERY, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001808 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001809
1810
Glen Leeb002e202015-09-24 18:15:05 +09001811 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1812 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001813 PRINT_D(TX_DBG, "Get Timed Out\n");
1814 ret_size = 0;
1815 }
1816 PRINT_D(GENERIC_DBG, "[WILC]Get Response received\n");
1817 p->cfg_frame_in_use = 0;
1818 p->cfg_frame_offset = 0;
1819 p->cfg_seq_no += 1;
1820 }
1821
1822 return ret_size;
1823}
1824
Glen Lee894de36b2015-10-01 16:03:42 +09001825int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001826{
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001827 int ret;
1828
Glen Lee355cca22015-10-02 14:22:09 +09001829 ret = wilc_wlan_cfg_get_wid_value((u16)wid, buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001830
1831 return ret;
1832}
1833
1834void wilc_bus_set_max_speed(void)
1835{
1836
1837 /* Increase bus speed to max possible. */
1838 g_wlan.hif_func.hif_set_max_bus_speed();
1839}
1840
1841void wilc_bus_set_default_speed(void)
1842{
1843
1844 /* Restore bus speed to default. */
1845 g_wlan.hif_func.hif_set_default_bus_speed();
1846}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001847u32 init_chip(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001848{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001849 u32 chipid;
1850 u32 reg, ret = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001851
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001852 acquire_bus(ACQUIRE_ONLY);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001853
Dean Lee72ed4dc2015-06-12 14:11:44 +09001854 chipid = wilc_get_chipid(true);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001855
1856
1857
1858 if ((chipid & 0xfff) != 0xa0) {
1859 /**
1860 * Avoid booting from boot ROM. Make sure that Drive IRQN [SDIO platform]
1861 * or SD_DAT3 [SPI platform] to ?1?
1862 **/
1863 /* Set cortus reset register to register control. */
1864 ret = g_wlan.hif_func.hif_read_reg(0x1118, &reg);
1865 if (!ret) {
1866 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1118 ...\n");
1867 return ret;
1868 }
Anish Bhattffda2032015-09-29 12:15:49 -07001869 reg |= BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001870 ret = g_wlan.hif_func.hif_write_reg(0x1118, reg);
1871 if (!ret) {
1872 wilc_debug(N_ERR, "[wilc start]: fail write reg 0x1118 ...\n");
1873 return ret;
1874 }
1875 /**
1876 * Write branch intruction to IRAM (0x71 trap) at location 0xFFFF0000
1877 * (Cortus map) or C0000 (AHB map).
1878 **/
1879 ret = g_wlan.hif_func.hif_write_reg(0xc0000, 0x71);
1880 if (!ret) {
1881 wilc_debug(N_ERR, "[wilc start]: fail write reg 0xc0000 ...\n");
1882 return ret;
1883 }
1884 }
1885
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001886 release_bus(RELEASE_ONLY);
1887
1888 return ret;
1889
1890}
1891
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001892u32 wilc_get_chipid(u8 update)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001893{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001894 static u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001895 /* SDIO can't read into global variables */
1896 /* Use this variable as a temp, then copy to the global */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001897 u32 tempchipid = 0;
1898 u32 rfrevid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001899
1900 if (chipid == 0 || update != 0) {
1901 g_wlan.hif_func.hif_read_reg(0x1000, &tempchipid);
1902 g_wlan.hif_func.hif_read_reg(0x13f4, &rfrevid);
1903 if (!ISWILC1000(tempchipid)) {
1904 chipid = 0;
1905 goto _fail_;
1906 }
1907 if (tempchipid == 0x1002a0) {
1908 if (rfrevid == 0x1) { /* 1002A0 */
1909 } else { /* if (rfrevid == 0x2) */ /* 1002A1 */
1910 tempchipid = 0x1002a1;
1911 }
1912 } else if (tempchipid == 0x1002b0) {
1913 if (rfrevid == 3) { /* 1002B0 */
1914 } else if (rfrevid == 4) { /* 1002B1 */
1915 tempchipid = 0x1002b1;
1916 } else { /* if(rfrevid == 5) */ /* 1002B2 */
1917 tempchipid = 0x1002b2;
1918 }
1919 } else {
1920 }
1921
1922 chipid = tempchipid;
1923 }
1924_fail_:
1925 return chipid;
1926}
1927
1928#ifdef COMPLEMENT_BOOT
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001929u8 core_11b_ready(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001930{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001931 u32 reg_val;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001932
1933 acquire_bus(ACQUIRE_ONLY);
1934 g_wlan.hif_func.hif_write_reg(0x16082c, 1);
1935 g_wlan.hif_func.hif_write_reg(0x161600, 0x90);
1936 g_wlan.hif_func.hif_read_reg(0x161600, &reg_val);
1937 release_bus(RELEASE_ONLY);
1938
1939 if (reg_val == 0x90)
1940 return 0;
1941 else
1942 return 1;
1943}
1944#endif
1945
Glen Leec9d48342015-10-01 16:03:43 +09001946int wilc_wlan_init(wilc_wlan_inp_t *inp)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001947{
1948
1949 int ret = 0;
1950
1951 PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n");
1952
1953 memset((void *)&g_wlan, 0, sizeof(wilc_wlan_dev_t));
1954
1955 /**
1956 * store the input
1957 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001958 memcpy((void *)&g_wlan.io_func, (void *)&inp->io_func, sizeof(wilc_wlan_io_func_t));
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001959 /***
1960 * host interface init
1961 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001962 if ((inp->io_func.io_type & 0x1) == HIF_SDIO) {
1963 if (!hif_sdio.hif_init(inp, wilc_debug)) {
1964 /* EIO 5 */
1965 ret = -5;
1966 goto _fail_;
1967 }
1968 memcpy((void *)&g_wlan.hif_func, &hif_sdio, sizeof(wilc_hif_func_t));
1969 } else {
1970 if ((inp->io_func.io_type & 0x1) == HIF_SPI) {
1971 /**
1972 * TODO:
1973 **/
1974 if (!hif_spi.hif_init(inp, wilc_debug)) {
1975 /* EIO 5 */
1976 ret = -5;
1977 goto _fail_;
1978 }
1979 memcpy((void *)&g_wlan.hif_func, &hif_spi, sizeof(wilc_hif_func_t));
1980 } else {
1981 /* EIO 5 */
1982 ret = -5;
1983 goto _fail_;
1984 }
1985 }
1986
1987 /***
1988 * mac interface init
1989 **/
Glen Lee814bc362015-10-02 14:22:11 +09001990 if (!wilc_wlan_cfg_init(wilc_debug)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001991 /* ENOBUFS 105 */
1992 ret = -105;
1993 goto _fail_;
1994 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001995
1996 /**
1997 * alloc tx, rx buffer
1998 **/
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001999 if (g_wlan.tx_buffer == NULL)
Glen Lee7015b5d2015-09-24 18:15:02 +09002000 g_wlan.tx_buffer = kmalloc(LINUX_TX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02002001 PRINT_D(TX_DBG, "g_wlan.tx_buffer = %p\n", g_wlan.tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002002
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002003 if (g_wlan.tx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002004 /* ENOBUFS 105 */
2005 ret = -105;
2006 PRINT_ER("Can't allocate Tx Buffer");
2007 goto _fail_;
2008 }
2009
2010/* rx_buffer is not used unless we activate USE_MEM STATIC which is not applicable, allocating such memory is useless*/
2011#if defined (MEMORY_STATIC)
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002012 if (g_wlan.rx_buffer == NULL)
Glen Lee03eb7262015-09-24 18:15:03 +09002013 g_wlan.rx_buffer = kmalloc(LINUX_RX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02002014 PRINT_D(TX_DBG, "g_wlan.rx_buffer =%p\n", g_wlan.rx_buffer);
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002015 if (g_wlan.rx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002016 /* ENOBUFS 105 */
2017 ret = -105;
2018 PRINT_ER("Can't allocate Rx Buffer");
2019 goto _fail_;
2020 }
2021#endif
2022
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002023 if (!init_chip()) {
2024 /* EIO 5 */
2025 ret = -5;
2026 goto _fail_;
2027 }
2028#ifdef TCP_ACK_FILTER
2029 Init_TCP_tracking();
2030#endif
2031
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002032 return 1;
2033
2034_fail_:
2035
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002036 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002037 kfree(g_wlan.rx_buffer);
2038 g_wlan.rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002039 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002040 kfree(g_wlan.tx_buffer);
2041 g_wlan.tx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002042
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002043 return ret;
2044
2045}
2046
Dean Lee72ed4dc2015-06-12 14:11:44 +09002047u16 Set_machw_change_vir_if(bool bValue)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002048{
Chaehyun Limd85f5322015-06-11 14:35:54 +09002049 u16 ret;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09002050 u32 reg;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002051
2052 /*Reset WILC_CHANGING_VIR_IF register to allow adding futrue keys to CE H/W*/
Glen Lee187f1ef2015-09-24 18:15:01 +09002053 mutex_lock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002054 ret = (&g_wlan)->hif_func.hif_read_reg(WILC_CHANGING_VIR_IF, &reg);
2055 if (!ret) {
2056 PRINT_ER("Error while Reading reg WILC_CHANGING_VIR_IF\n");
2057 }
2058
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302059 if (bValue)
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002060 reg |= BIT(31);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302061 else
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002062 reg &= ~BIT(31);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002063
2064 ret = (&g_wlan)->hif_func.hif_write_reg(WILC_CHANGING_VIR_IF, reg);
2065
2066 if (!ret) {
2067 PRINT_ER("Error while writing reg WILC_CHANGING_VIR_IF\n");
2068 }
Glen Lee187f1ef2015-09-24 18:15:01 +09002069 mutex_unlock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002070
2071 return ret;
2072}