blob: 907da93d1c63b5ca3f86ebdc9e6dcd8fbbc0af88 [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
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530144 wilc_wlan_dev_t *p = &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;
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530167 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900168 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;
Alison Schofield39823a52015-10-08 21:18:03 -0700174 if (p->txq_head)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900175 p->txq_head->prev = NULL;
Alison Schofield39823a52015-10-08 21:18:03 -0700176
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900177 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{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530191 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900192 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{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530221 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900222 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
Alison Schofield39823a52015-10-08 21:18:03 -0700315 if (Ack > Acks_keep_track_info[index].Bigger_Ack_num)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900316 Acks_keep_track_info[index].Bigger_Ack_num = Ack;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900317 return 0;
318
319}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900320static inline int add_TCP_Pending_Ack(u32 Ack, u32 Session_index, struct txq_entry_t *txqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900321{
322 Statisitcs_totalAcks++;
323 if (Pending_Acks < MAX_PENDING_ACKS) {
324 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].ack_num = Ack;
325 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].txqe = txqe;
326 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].Session_index = Session_index;
327 txqe->tcp_PendingAck_index = PendingAcks_arrBase + Pending_Acks;
328 Pending_Acks++;
329
330 } else {
331
332 }
333 return 0;
334}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900335static inline int remove_TCP_related(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900336{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530337 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900338 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900339
Glen Lee85e57562015-09-24 18:14:56 +0900340 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900341
Glen Lee85e57562015-09-24 18:14:56 +0900342 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900343 return 0;
344}
345
Chaehyun Limfed16f22015-09-17 16:48:43 +0900346static inline int tcp_process(struct txq_entry_t *tqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900347{
348 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900349 u8 *eth_hdr_ptr;
350 u8 *buffer = tqe->buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900351 unsigned short h_proto;
352 int i;
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530353 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900354 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900355
Glen Lee85e57562015-09-24 18:14:56 +0900356 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900357
358 eth_hdr_ptr = &buffer[0];
359 h_proto = ntohs(*((unsigned short *)&eth_hdr_ptr[12]));
360 if (h_proto == 0x0800) { /* IP */
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900361 u8 *ip_hdr_ptr;
362 u8 protocol;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900363
364 ip_hdr_ptr = &buffer[ETHERNET_HDR_LEN];
365 protocol = ip_hdr_ptr[9];
366
367
368 if (protocol == 0x06) {
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900369 u8 *tcp_hdr_ptr;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900370 u32 IHL, Total_Length, Data_offset;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900371
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900372 tcp_hdr_ptr = &ip_hdr_ptr[IP_HDR_LEN];
373 IHL = (ip_hdr_ptr[0] & 0xf) << 2;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900374 Total_Length = (((u32)ip_hdr_ptr[2]) << 8) + ((u32)ip_hdr_ptr[3]);
375 Data_offset = (((u32)tcp_hdr_ptr[12] & 0xf0) >> 2);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900376 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 +0900377 u32 seq_no, Ack_no;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900378
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900379 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 +0900380
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900381 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 +0900382
383
384 for (i = 0; i < Opened_TCP_session; i++) {
385 if (Acks_keep_track_info[i].Ack_seq_num == seq_no) {
386 Update_TCP_track_session(i, Ack_no);
387 break;
388 }
389 }
Alison Schofield39823a52015-10-08 21:18:03 -0700390 if (i == Opened_TCP_session)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900391 add_TCP_track_session(0, 0, seq_no);
Alison Schofield39823a52015-10-08 21:18:03 -0700392
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900393 add_TCP_Pending_Ack(Ack_no, i, tqe);
394
395
396 }
397
398 } else {
399 ret = 0;
400 }
401 } else {
402 ret = 0;
403 }
Glen Lee85e57562015-09-24 18:14:56 +0900404 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900405 return ret;
406}
407
408
409static int wilc_wlan_txq_filter_dup_tcp_ack(void)
410{
411
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900412 u32 i = 0;
413 u32 Dropped = 0;
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530414 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900415
Glen Lee85e57562015-09-24 18:14:56 +0900416 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900417 for (i = PendingAcks_arrBase; i < (PendingAcks_arrBase + Pending_Acks); i++) {
418 if (Pending_Acks_info[i].ack_num < Acks_keep_track_info[Pending_Acks_info[i].Session_index].Bigger_Ack_num) {
419 struct txq_entry_t *tqe;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900420
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530421 PRINT_D(TCP_ENH, "DROP ACK: %u\n", Pending_Acks_info[i].ack_num);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900422 tqe = Pending_Acks_info[i].txqe;
423 if (tqe) {
424 wilc_wlan_txq_remove(tqe);
425 Statisitcs_DroppedAcks++;
426 tqe->status = 1; /* mark the packet send */
427 if (tqe->tx_complete_func)
428 tqe->tx_complete_func(tqe->priv, tqe->status);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -0700429 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900430 Dropped++;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900431 }
432 }
433 }
434 Pending_Acks = 0;
435 Opened_TCP_session = 0;
436
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530437 if (PendingAcks_arrBase == 0)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900438 PendingAcks_arrBase = MAX_TCP_SESSION;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530439 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900440 PendingAcks_arrBase = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900441
442
Glen Lee85e57562015-09-24 18:14:56 +0900443 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock,
444 p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900445
446 while (Dropped > 0) {
447 /*consume the semaphore count of the removed packet*/
Glen Leeb002e202015-09-24 18:15:05 +0900448 linux_wlan_lock_timeout(&g_linux_wlan->txq_event, 1);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900449 Dropped--;
450 }
451
452 return 1;
453}
454#endif
455
Dean Lee72ed4dc2015-06-12 14:11:44 +0900456bool EnableTCPAckFilter = false;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900457
Dean Lee72ed4dc2015-06-12 14:11:44 +0900458void Enable_TCP_ACK_Filter(bool value)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900459{
460 EnableTCPAckFilter = value;
461}
462
Dean Lee72ed4dc2015-06-12 14:11:44 +0900463bool is_TCP_ACK_Filter_Enabled(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900464{
465 return EnableTCPAckFilter;
466}
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900467
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900468static int wilc_wlan_txq_add_cfg_pkt(u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900469{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530470 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900471 struct txq_entry_t *tqe;
472
473 PRINT_D(TX_DBG, "Adding config packet ...\n");
474 if (p->quit) {
475 PRINT_D(TX_DBG, "Return due to clear function\n");
Glen Lee6a3b94f2015-09-24 18:14:59 +0900476 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900477 return 0;
478 }
479
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700480 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_ATOMIC);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900481 if (tqe == NULL) {
482 PRINT_ER("Failed to allocate memory\n");
483 return 0;
484 }
485
486 tqe->type = WILC_CFG_PKT;
487 tqe->buffer = buffer;
488 tqe->buffer_size = buffer_size;
489 tqe->tx_complete_func = NULL;
490 tqe->priv = NULL;
491#ifdef TCP_ACK_FILTER
492 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
493#endif
494 /**
495 * Configuration packet always at the front
496 **/
497 PRINT_D(TX_DBG, "Adding the config packet at the Queue tail\n");
498
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900499 if (wilc_wlan_txq_add_to_head(tqe))
500 return 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900501 return 1;
502}
503
Glen Lee8fc84a62015-10-01 16:03:35 +0900504int wilc_wlan_txq_add_net_pkt(void *priv, u8 *buffer, u32 buffer_size,
505 wilc_tx_complete_func_t func)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900506{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530507 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900508 struct txq_entry_t *tqe;
509
510 if (p->quit)
511 return 0;
512
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700513 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_ATOMIC);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900514
515 if (tqe == NULL)
516 return 0;
517 tqe->type = WILC_NET_PKT;
518 tqe->buffer = buffer;
519 tqe->buffer_size = buffer_size;
520 tqe->tx_complete_func = func;
521 tqe->priv = priv;
522
523 PRINT_D(TX_DBG, "Adding mgmt packet at the Queue tail\n");
524#ifdef TCP_ACK_FILTER
525 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
Abdul Hussain5a66bf22015-06-16 09:44:06 +0000526 if (is_TCP_ACK_Filter_Enabled())
Glen Lee25a84832015-09-16 18:53:22 +0900527 tcp_process(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900528#endif
529 wilc_wlan_txq_add_to_tail(tqe);
530 /*return number of itemes in the queue*/
531 return p->txq_entries;
532}
Glen Leefcc6ef92015-09-16 18:53:21 +0900533
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900534int 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 +0900535{
536
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530537 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900538 struct txq_entry_t *tqe;
539
540 if (p->quit)
541 return 0;
542
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700543 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900544
545 if (tqe == NULL)
546 return 0;
547 tqe->type = WILC_MGMT_PKT;
548 tqe->buffer = buffer;
549 tqe->buffer_size = buffer_size;
550 tqe->tx_complete_func = func;
551 tqe->priv = priv;
552#ifdef TCP_ACK_FILTER
553 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
554#endif
555 PRINT_D(TX_DBG, "Adding Network packet at the Queue tail\n");
556 wilc_wlan_txq_add_to_tail(tqe);
557 return 1;
558}
Glen Leefcc6ef92015-09-16 18:53:21 +0900559
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900560static struct txq_entry_t *wilc_wlan_txq_get_first(void)
561{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530562 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900563 struct txq_entry_t *tqe;
564 unsigned long flags;
565
Glen Lee85e57562015-09-24 18:14:56 +0900566 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900567
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900568 tqe = p->txq_head;
569
Glen Lee85e57562015-09-24 18:14:56 +0900570 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900571
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900572
573 return tqe;
574}
575
576static struct txq_entry_t *wilc_wlan_txq_get_next(struct txq_entry_t *tqe)
577{
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900578 unsigned long flags;
Glen Lee85e57562015-09-24 18:14:56 +0900579 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900580
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900581 tqe = tqe->next;
Glen Lee85e57562015-09-24 18:14:56 +0900582 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900583
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900584
585 return tqe;
586}
587
588static int wilc_wlan_rxq_add(struct rxq_entry_t *rqe)
589{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530590 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900591
592 if (p->quit)
593 return 0;
594
Glen Lee645db602015-09-24 18:14:57 +0900595 mutex_lock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900596 if (p->rxq_head == NULL) {
597 PRINT_D(RX_DBG, "Add to Queue head\n");
598 rqe->next = NULL;
599 p->rxq_head = rqe;
600 p->rxq_tail = rqe;
601 } else {
602 PRINT_D(RX_DBG, "Add to Queue tail\n");
603 p->rxq_tail->next = rqe;
604 rqe->next = NULL;
605 p->rxq_tail = rqe;
606 }
607 p->rxq_entries += 1;
608 PRINT_D(RX_DBG, "Number of queue entries: %d\n", p->rxq_entries);
Glen Lee645db602015-09-24 18:14:57 +0900609 mutex_unlock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900610 return p->rxq_entries;
611}
612
613static struct rxq_entry_t *wilc_wlan_rxq_remove(void)
614{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530615 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900616
617 PRINT_D(RX_DBG, "Getting rxQ element\n");
618 if (p->rxq_head) {
619 struct rxq_entry_t *rqe;
620
Glen Lee645db602015-09-24 18:14:57 +0900621 mutex_lock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900622 rqe = p->rxq_head;
623 p->rxq_head = p->rxq_head->next;
624 p->rxq_entries -= 1;
625 PRINT_D(RX_DBG, "RXQ entries decreased\n");
Glen Lee645db602015-09-24 18:14:57 +0900626 mutex_unlock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900627 return rqe;
628 }
629 PRINT_D(RX_DBG, "Nothing to get from Q\n");
630 return NULL;
631}
632
633
634/********************************************
635 *
636 * Power Save handle functions
637 *
638 ********************************************/
639
640
641
642#ifdef WILC_OPTIMIZE_SLEEP_INT
643
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900644static inline void chip_allow_sleep(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900645{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900646 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900647
648 /* Clear bit 1 */
649 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
650
Anish Bhattffda2032015-09-29 12:15:49 -0700651 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900652}
653
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900654static inline void chip_wakeup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900655{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900656 u32 reg, clk_status_reg, trials = 0;
657 u32 sleep_time;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900658
659 if ((g_wlan.io_func.io_type & 0x1) == HIF_SPI) {
660 do {
661 g_wlan.hif_func.hif_read_reg(1, &reg);
662 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700663 g_wlan.hif_func.hif_write_reg(1, reg | BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900664
665 /* Clear bit 1*/
Anish Bhattffda2032015-09-29 12:15:49 -0700666 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900667
668 do {
669 /* Wait for the chip to stabilize*/
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -0700670 usleep_range(2 * 1000, 2 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900671 /* Make sure chip is awake. This is an extra step that can be removed */
672 /* later to avoid the bus access overhead */
Alison Schofield39823a52015-10-08 21:18:03 -0700673 if ((wilc_get_chipid(true) == 0))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900674 wilc_debug(N_ERR, "Couldn't read chip id. Wake up failed\n");
Alison Schofield39823a52015-10-08 21:18:03 -0700675
Dean Lee72ed4dc2015-06-12 14:11:44 +0900676 } while ((wilc_get_chipid(true) == 0) && ((++trials % 3) == 0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900677
Dean Lee72ed4dc2015-06-12 14:11:44 +0900678 } while (wilc_get_chipid(true) == 0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900679 } else if ((g_wlan.io_func.io_type & 0x1) == HIF_SDIO) {
680 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
681 do {
682 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700683 g_wlan.hif_func.hif_write_reg(0xf0, reg | BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900684
685 /* Check the clock status */
686 g_wlan.hif_func.hif_read_reg(0xf1, &clk_status_reg);
687
688 /* in case of clocks off, wait 2ms, and check it again. */
689 /* if still off, wait for another 2ms, for a total wait of 6ms. */
690 /* If still off, redo the wake up sequence */
691 while (((clk_status_reg & 0x1) == 0) && (((++trials) % 3) == 0)) {
692 /* Wait for the chip to stabilize*/
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -0700693 usleep_range(2 * 1000, 2 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900694
695 /* Make sure chip is awake. This is an extra step that can be removed */
696 /* later to avoid the bus access overhead */
697 g_wlan.hif_func.hif_read_reg(0xf1, &clk_status_reg);
698
Alison Schofield39823a52015-10-08 21:18:03 -0700699 if ((clk_status_reg & 0x1) == 0)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900700 wilc_debug(N_ERR, "clocks still OFF. Wake up failed\n");
Alison Schofield39823a52015-10-08 21:18:03 -0700701
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900702 }
703 /* in case of failure, Reset the wakeup bit to introduce a new edge on the next loop */
704 if ((clk_status_reg & 0x1) == 0) {
705 /* Reset bit 0 */
Anish Bhattffda2032015-09-29 12:15:49 -0700706 g_wlan.hif_func.hif_write_reg(0xf0, reg &
707 (~BIT(0)));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900708 }
709 } while ((clk_status_reg & 0x1) == 0);
710 }
711
712
713 if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
714 g_wlan.hif_func.hif_read_reg(0x1C0C, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700715 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900716 g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
717
Dean Lee72ed4dc2015-06-12 14:11:44 +0900718 if (wilc_get_chipid(false) >= 0x1002b0) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900719 /* Enable PALDO back right after wakeup */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900720 u32 val32;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900721
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900722 g_wlan.hif_func.hif_read_reg(0x1e1c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700723 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900724 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
725
726 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700727 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900728 g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
729 }
730 }
731 genuChipPSstate = CHIP_WAKEDUP;
732}
733#else
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900734static inline void chip_wakeup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900735{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900736 u32 reg, trials = 0;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900737
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900738 do {
739 if ((g_wlan.io_func.io_type & 0x1) == HIF_SPI) {
740 g_wlan.hif_func.hif_read_reg(1, &reg);
741 /* Make sure bit 1 is 0 before we start. */
Anish Bhattffda2032015-09-29 12:15:49 -0700742 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900743 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700744 g_wlan.hif_func.hif_write_reg(1, reg | BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900745 /* Clear bit 1*/
Anish Bhattffda2032015-09-29 12:15:49 -0700746 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900747 } else if ((g_wlan.io_func.io_type & 0x1) == HIF_SDIO) {
748 /* Make sure bit 0 is 0 before we start. */
749 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700750 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900751 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700752 g_wlan.hif_func.hif_write_reg(0xf0, reg | BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900753 /* Clear bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700754 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900755 }
756
757 do {
758 /* Wait for the chip to stabilize*/
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900759 mdelay(3);
760
761 /* Make sure chip is awake. This is an extra step that can be removed */
762 /* later to avoid the bus access overhead */
Alison Schofield39823a52015-10-08 21:18:03 -0700763 if ((wilc_get_chipid(true) == 0))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900764 wilc_debug(N_ERR, "Couldn't read chip id. Wake up failed\n");
Alison Schofield39823a52015-10-08 21:18:03 -0700765
Dean Lee72ed4dc2015-06-12 14:11:44 +0900766 } while ((wilc_get_chipid(true) == 0) && ((++trials % 3) == 0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900767
Dean Lee72ed4dc2015-06-12 14:11:44 +0900768 } while (wilc_get_chipid(true) == 0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900769
770 if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
771 g_wlan.hif_func.hif_read_reg(0x1C0C, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700772 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900773 g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
774
Dean Lee72ed4dc2015-06-12 14:11:44 +0900775 if (wilc_get_chipid(false) >= 0x1002b0) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900776 /* Enable PALDO back right after wakeup */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900777 u32 val32;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900778
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900779 g_wlan.hif_func.hif_read_reg(0x1e1c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700780 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900781 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
782
783 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700784 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900785 g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
786 }
787 }
788 genuChipPSstate = CHIP_WAKEDUP;
789}
790#endif
Chaehyun Lim4e4467f2015-06-11 14:35:55 +0900791void chip_sleep_manually(u32 u32SleepTime)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900792{
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900793 if (genuChipPSstate != CHIP_WAKEDUP) {
794 /* chip is already sleeping. Do nothing */
795 return;
796 }
797 acquire_bus(ACQUIRE_ONLY);
798
799#ifdef WILC_OPTIMIZE_SLEEP_INT
800 chip_allow_sleep();
801#endif
802
803 /* Trigger the manual sleep interrupt */
804 g_wlan.hif_func.hif_write_reg(0x10a8, 1);
805
806 genuChipPSstate = CHIP_SLEEPING_MANUAL;
807 release_bus(RELEASE_ONLY);
808
809}
810
811
812/********************************************
813 *
814 * Tx, Rx queue handle functions
815 *
816 ********************************************/
Glen Leea1332ca2015-10-27 18:27:47 +0900817int wilc_wlan_handle_txq(struct net_device *dev, u32 *pu32TxqCount)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900818{
819 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
820 int i, entries = 0;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900821 u32 sum;
822 u32 reg;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900823 u8 *txb = p->tx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900824 u32 offset = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900825 int vmm_sz = 0;
826 struct txq_entry_t *tqe;
827 int ret = 0;
828 int counter;
829 int timeout;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900830 u32 vmm_table[WILC_VMM_TBL_SIZE];
Glen Leea1332ca2015-10-27 18:27:47 +0900831 perInterface_wlan_t *nic;
832 struct wilc *wilc;
833
834 nic = netdev_priv(dev);
835 wilc = nic->wilc;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900836
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900837 p->txq_exit = 0;
838 do {
839 if (p->quit)
840 break;
841
Glen Leea1332ca2015-10-27 18:27:47 +0900842 linux_wlan_lock_timeout(&wilc->txq_add_to_head_cs,
Glen Leeb002e202015-09-24 18:15:05 +0900843 CFG_PKTS_TIMEOUT);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900844#ifdef TCP_ACK_FILTER
845 wilc_wlan_txq_filter_dup_tcp_ack();
846#endif
847 /**
848 * build the vmm list
849 **/
850 PRINT_D(TX_DBG, "Getting the head of the TxQ\n");
851 tqe = wilc_wlan_txq_get_first();
852 i = 0;
853 sum = 0;
854 do {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900855 if ((tqe != NULL) && (i < (WILC_VMM_TBL_SIZE - 1)) /* reserve last entry to 0 */) {
856
Alison Schofield39823a52015-10-08 21:18:03 -0700857 if (tqe->type == WILC_CFG_PKT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900858 vmm_sz = ETH_CONFIG_PKT_HDR_OFFSET;
Alison Schofield39823a52015-10-08 21:18:03 -0700859
860 else if (tqe->type == WILC_NET_PKT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900861 vmm_sz = ETH_ETHERNET_HDR_OFFSET;
Alison Schofield39823a52015-10-08 21:18:03 -0700862
863 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900864 vmm_sz = HOST_HDR_OFFSET;
Alison Schofield39823a52015-10-08 21:18:03 -0700865
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900866 vmm_sz += tqe->buffer_size;
867 PRINT_D(TX_DBG, "VMM Size before alignment = %d\n", vmm_sz);
868 if (vmm_sz & 0x3) { /* has to be word aligned */
869 vmm_sz = (vmm_sz + 4) & ~0x3;
870 }
Alison Schofield39823a52015-10-08 21:18:03 -0700871 if ((sum + vmm_sz) > LINUX_TX_SIZE)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900872 break;
Alison Schofield39823a52015-10-08 21:18:03 -0700873
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900874 PRINT_D(TX_DBG, "VMM Size AFTER alignment = %d\n", vmm_sz);
875 vmm_table[i] = vmm_sz / 4; /* table take the word size */
876 PRINT_D(TX_DBG, "VMMTable entry size = %d\n", vmm_table[i]);
877
878 if (tqe->type == WILC_CFG_PKT) {
Anish Bhattffda2032015-09-29 12:15:49 -0700879 vmm_table[i] |= BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900880 PRINT_D(TX_DBG, "VMMTable entry changed for CFG packet = %d\n", vmm_table[i]);
881 }
882#ifdef BIG_ENDIAN
883 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
884#endif
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900885
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900886 i++;
887 sum += vmm_sz;
888 PRINT_D(TX_DBG, "sum = %d\n", sum);
889 tqe = wilc_wlan_txq_get_next(tqe);
890 } else {
891 break;
892 }
893 } while (1);
894
895 if (i == 0) { /* nothing in the queue */
896 PRINT_D(TX_DBG, "Nothing in TX-Q\n");
897 break;
898 } else {
899 PRINT_D(TX_DBG, "Mark the last entry in VMM table - number of previous entries = %d\n", i);
900 vmm_table[i] = 0x0; /* mark the last element to 0 */
901 }
902 acquire_bus(ACQUIRE_AND_WAKEUP);
903 counter = 0;
904 do {
905
906 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
907 if (!ret) {
908 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg vmm_tbl_entry..\n");
909 break;
910 }
911
912 if ((reg & 0x1) == 0) {
913 /**
914 * write to vmm table
915 **/
916 PRINT_D(TX_DBG, "Writing VMM table ... with Size = %d\n", ((i + 1) * 4));
917 break;
918 } else {
919 counter++;
920 if (counter > 200) {
921 counter = 0;
922 PRINT_D(TX_DBG, "Looping in tx ctrl , forcce quit\n");
923 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, 0);
924 break;
925 }
926 /**
927 * wait for vmm table is ready
928 **/
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530929 PRINT_WRN(GENERIC_DBG, "[wilc txq]: warn, vmm table not clear yet, wait...\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900930 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700931 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900932 acquire_bus(ACQUIRE_AND_WAKEUP);
933 }
934 } while (!p->quit);
935
Alison Schofield39823a52015-10-08 21:18:03 -0700936 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900937 goto _end_;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900938
939 timeout = 200;
940 do {
941
942 /**
943 * write to vmm table
944 **/
Chaehyun Limc3ca6372015-09-20 15:51:19 +0900945 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 +0900946 if (!ret) {
947 wilc_debug(N_ERR, "ERR block TX of VMM table.\n");
948 break;
949 }
950
951
952 /**
953 * interrupt firmware
954 **/
955 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x2);
956 if (!ret) {
957 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg host_vmm_ctl..\n");
958 break;
959 }
960
961 /**
962 * wait for confirm...
963 **/
964
965 do {
966 ret = p->hif_func.hif_read_reg(WILC_HOST_VMM_CTL, &reg);
967 if (!ret) {
968 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg host_vmm_ctl..\n");
969 break;
970 }
971 if ((reg >> 2) & 0x1) {
972 /**
973 * Get the entries
974 **/
975 entries = ((reg >> 3) & 0x3f);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900976 break;
977 } else {
978 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700979 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900980 acquire_bus(ACQUIRE_AND_WAKEUP);
981 PRINT_WRN(GENERIC_DBG, "Can't get VMM entery - reg = %2x\n", reg);
982 }
983 } while (--timeout);
984 if (timeout <= 0) {
985 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x0);
986 break;
987 }
988
Alison Schofield39823a52015-10-08 21:18:03 -0700989 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900990 break;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900991
992 if (entries == 0) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530993 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 +0900994
995 /* undo the transaction. */
996 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
997 if (!ret) {
998 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg WILC_HOST_TX_CTRL..\n");
999 break;
1000 }
Anish Bhattffda2032015-09-29 12:15:49 -07001001 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001002 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, reg);
1003 if (!ret) {
1004 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg WILC_HOST_TX_CTRL..\n");
1005 break;
1006 }
1007 break;
1008 } else {
1009 break;
1010 }
1011 } while (1);
1012
Alison Schofield39823a52015-10-08 21:18:03 -07001013 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001014 goto _end_;
Alison Schofield39823a52015-10-08 21:18:03 -07001015
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001016 if (entries == 0) {
1017 ret = WILC_TX_ERR_NO_BUF;
1018 goto _end_;
1019 }
1020
1021 /* since copying data into txb takes some time, then
1022 * allow the bus lock to be released let the RX task go. */
1023 release_bus(RELEASE_ALLOW_SLEEP);
1024
1025 /**
1026 * Copy data to the TX buffer
1027 **/
1028 offset = 0;
1029 i = 0;
1030 do {
1031 tqe = wilc_wlan_txq_remove_from_head();
1032 if (tqe != NULL && (vmm_table[i] != 0)) {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001033 u32 header, buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001034
1035#ifdef BIG_ENDIAN
1036 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
1037#endif
1038 vmm_sz = (vmm_table[i] & 0x3ff); /* in word unit */
1039 vmm_sz *= 4;
1040 header = (tqe->type << 31) | (tqe->buffer_size << 15) | vmm_sz;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301041 if (tqe->type == WILC_MGMT_PKT)
Anish Bhattffda2032015-09-29 12:15:49 -07001042 header |= BIT(30);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301043 else
Anish Bhattffda2032015-09-29 12:15:49 -07001044 header &= ~BIT(30);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001045
1046#ifdef BIG_ENDIAN
1047 header = BYTE_SWAP(header);
1048#endif
1049 memcpy(&txb[offset], &header, 4);
1050 if (tqe->type == WILC_CFG_PKT) {
1051 buffer_offset = ETH_CONFIG_PKT_HDR_OFFSET;
1052 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001053 else if (tqe->type == WILC_NET_PKT) {
1054 char *pBSSID = ((struct tx_complete_data *)(tqe->priv))->pBssid;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001055
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001056 buffer_offset = ETH_ETHERNET_HDR_OFFSET;
1057 /* copy the bssid at the sart of the buffer */
1058 memcpy(&txb[offset + 4], pBSSID, 6);
1059 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001060 else {
1061 buffer_offset = HOST_HDR_OFFSET;
1062 }
1063
1064 memcpy(&txb[offset + buffer_offset], tqe->buffer, tqe->buffer_size);
1065 offset += vmm_sz;
1066 i++;
1067 tqe->status = 1; /* mark the packet send */
1068 if (tqe->tx_complete_func)
1069 tqe->tx_complete_func(tqe->priv, tqe->status);
1070 #ifdef TCP_ACK_FILTER
Alison Schofield39823a52015-10-08 21:18:03 -07001071 if (tqe->tcp_PendingAck_index != NOT_TCP_ACK)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001072 Pending_Acks_info[tqe->tcp_PendingAck_index].txqe = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001073 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001074 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001075 } else {
1076 break;
1077 }
1078 } while (--entries);
1079
1080 /**
1081 * lock the bus
1082 **/
1083 acquire_bus(ACQUIRE_AND_WAKEUP);
1084
1085 ret = p->hif_func.hif_clear_int_ext(ENABLE_TX_VMM);
1086 if (!ret) {
1087 wilc_debug(N_ERR, "[wilc txq]: fail can't start tx VMM ...\n");
1088 goto _end_;
1089 }
1090
1091 /**
1092 * transfer
1093 **/
1094 ret = p->hif_func.hif_block_tx_ext(0, txb, offset);
1095 if (!ret) {
1096 wilc_debug(N_ERR, "[wilc txq]: fail can't block tx ext...\n");
1097 goto _end_;
1098 }
1099
1100_end_:
1101
1102 release_bus(RELEASE_ALLOW_SLEEP);
1103 if (ret != 1)
1104 break;
1105 } while (0);
Glen Leea1332ca2015-10-27 18:27:47 +09001106 up(&wilc->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001107
1108 p->txq_exit = 1;
1109 PRINT_D(TX_DBG, "THREAD: Exiting txq\n");
1110 /* return tx[]q count */
1111 *pu32TxqCount = p->txq_entries;
1112 return ret;
1113}
1114
Glen Lee39ce4d32015-10-27 18:27:42 +09001115static void wilc_wlan_handle_rxq(struct wilc *wilc)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001116{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301117 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001118 int offset = 0, size, has_packet = 0;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001119 u8 *buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001120 struct rxq_entry_t *rqe;
1121
1122 p->rxq_exit = 0;
1123
1124
1125
1126
1127 do {
1128 if (p->quit) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301129 PRINT_D(RX_DBG, "exit 1st do-while due to Clean_UP function\n");
Glen Lee39ce4d32015-10-27 18:27:42 +09001130 up(&wilc->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001131 break;
1132 }
1133 rqe = wilc_wlan_rxq_remove();
1134 if (rqe == NULL) {
1135 PRINT_D(RX_DBG, "nothing in the queue - exit 1st do-while\n");
1136 break;
1137 }
1138 buffer = rqe->buffer;
1139 size = rqe->buffer_size;
1140 PRINT_D(RX_DBG, "rxQ entery Size = %d - Address = %p\n", size, buffer);
1141 offset = 0;
1142
1143
1144
1145 do {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001146 u32 header;
1147 u32 pkt_len, pkt_offset, tp_len;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001148 int is_cfg_packet;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001149
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001150 PRINT_D(RX_DBG, "In the 2nd do-while\n");
1151 memcpy(&header, &buffer[offset], 4);
1152#ifdef BIG_ENDIAN
1153 header = BYTE_SWAP(header);
1154#endif
1155 PRINT_D(RX_DBG, "Header = %04x - Offset = %d\n", header, offset);
1156
1157
1158
1159 is_cfg_packet = (header >> 31) & 0x1;
1160 pkt_offset = (header >> 22) & 0x1ff;
1161 tp_len = (header >> 11) & 0x7ff;
1162 pkt_len = header & 0x7ff;
1163
1164 if (pkt_len == 0 || tp_len == 0) {
1165 wilc_debug(N_RXQ, "[wilc rxq]: data corrupt, packet len or tp_len is 0 [%d][%d]\n", pkt_len, tp_len);
1166 break;
1167 }
1168
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001169 #define IS_MANAGMEMENT 0x100
1170 #define IS_MANAGMEMENT_CALLBACK 0x080
1171 #define IS_MGMT_STATUS_SUCCES 0x040
1172
1173
1174 if (pkt_offset & IS_MANAGMEMENT) {
1175 /* reset mgmt indicator bit, to use pkt_offeset in furthur calculations */
1176 pkt_offset &= ~(IS_MANAGMEMENT | IS_MANAGMEMENT_CALLBACK | IS_MGMT_STATUS_SUCCES);
1177
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001178 WILC_WFI_mgmt_rx(&buffer[offset + HOST_HDR_OFFSET], pkt_len);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001179 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001180 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001181 {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001182
1183 if (!is_cfg_packet) {
Glen Lee63611672015-09-24 18:14:52 +09001184 if (pkt_len > 0) {
1185 frmw_to_linux(&buffer[offset],
1186 pkt_len,
1187 pkt_offset);
1188 has_packet = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001189 }
1190 } else {
1191 wilc_cfg_rsp_t rsp;
1192
1193
1194
Glen Lee30f535a2015-10-02 14:22:10 +09001195 wilc_wlan_cfg_indicate_rx(&buffer[pkt_offset + offset], pkt_len, &rsp);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001196 if (rsp.type == WILC_CFG_RSP) {
1197 /**
1198 * wake up the waiting task...
1199 **/
1200 PRINT_D(RX_DBG, "p->cfg_seq_no = %d - rsp.seq_no = %d\n", p->cfg_seq_no, rsp.seq_no);
Alison Schofield39823a52015-10-08 21:18:03 -07001201 if (p->cfg_seq_no == rsp.seq_no)
Glen Lee39ce4d32015-10-27 18:27:42 +09001202 up(&wilc->cfg_event);
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 Lee64f2b712015-10-27 18:27:43 +09001207 linux_wlan_mac_indicate(wilc, WILC_MAC_INDICATE_STATUS);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001208
1209 } else if (rsp.type == WILC_CFG_RSP_SCAN) {
Glen Lee64f2b712015-10-27 18:27:43 +09001210 linux_wlan_mac_indicate(wilc, 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
Alison Schofield39823a52015-10-08 21:18:03 -07001225 if (has_packet)
Glen Leec0cadaa2015-09-24 18:14:54 +09001226 linux_wlan_rx_complete();
Alison Schofield39823a52015-10-08 21:18:03 -07001227
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001228 } 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
Glen Lee3bcd45b2015-10-27 18:27:41 +09001268static void wilc_wlan_handle_isr_ext(struct wilc *wilc, u32 int_status)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001269{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301270 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001271#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 }
Glen Lee39ce4d32015-10-27 18:27:42 +09001358 wilc_wlan_handle_rxq(wilc);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001359}
1360
Glen Lee50b929e2015-10-27 18:27:40 +09001361void wilc_handle_isr(void *wilc)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001362{
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
Alison Schofield39823a52015-10-08 21:18:03 -07001368 if (int_status & PLL_INT_EXT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001369 wilc_pllupdate_isr_ext(int_status);
Alison Schofield39823a52015-10-08 21:18:03 -07001370
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001371 if (int_status & DATA_INT_EXT) {
Glen Lee3bcd45b2015-10-27 18:27:41 +09001372 wilc_wlan_handle_isr_ext(wilc, int_status);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001373 #ifndef WILC_OPTIMIZE_SLEEP_INT
1374 /* Chip is up and talking*/
1375 genuChipPSstate = CHIP_WAKEDUP;
1376 #endif
1377 }
Alison Schofield39823a52015-10-08 21:18:03 -07001378 if (int_status & SLEEP_INT_EXT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001379 wilc_sleeptimer_isr_ext(int_status);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001380
1381 if (!(int_status & (ALL_INT_EXT))) {
1382#ifdef WILC_SDIO
1383 PRINT_D(TX_DBG, ">> UNKNOWN_INTERRUPT - 0x%08x\n", int_status);
1384#endif
1385 wilc_unknown_isr_ext();
1386 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001387 release_bus(RELEASE_ALLOW_SLEEP);
1388}
1389
1390/********************************************
1391 *
1392 * Firmware download
1393 *
1394 ********************************************/
Glen Lee63d7ab82015-10-01 16:03:32 +09001395int wilc_wlan_firmware_download(const u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001396{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301397 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001398 u32 offset;
1399 u32 addr, size, size2, blksz;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001400 u8 *dma_buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001401 int ret = 0;
1402
Anish Bhattffda2032015-09-29 12:15:49 -07001403 blksz = BIT(12);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001404 /* Allocate a DMA coherent buffer. */
1405
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001406 dma_buffer = kmalloc(blksz, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001407 if (dma_buffer == NULL) {
1408 /*EIO 5*/
1409 ret = -5;
1410 PRINT_ER("Can't allocate buffer for firmware download IO error\n ");
1411 goto _fail_1;
1412 }
1413
1414 PRINT_D(INIT_DBG, "Downloading firmware size = %d ...\n", buffer_size);
1415 /**
1416 * load the firmware
1417 **/
1418 offset = 0;
1419 do {
1420 memcpy(&addr, &buffer[offset], 4);
1421 memcpy(&size, &buffer[offset + 4], 4);
1422#ifdef BIG_ENDIAN
1423 addr = BYTE_SWAP(addr);
1424 size = BYTE_SWAP(size);
1425#endif
1426 acquire_bus(ACQUIRE_ONLY);
1427 offset += 8;
1428 while (((int)size) && (offset < buffer_size)) {
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301429 if (size <= blksz)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001430 size2 = size;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301431 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001432 size2 = blksz;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001433 /* Copy firmware into a DMA coherent buffer */
1434 memcpy(dma_buffer, &buffer[offset], size2);
1435 ret = p->hif_func.hif_block_tx(addr, dma_buffer, size2);
1436 if (!ret)
1437 break;
1438
1439 addr += size2;
1440 offset += size2;
1441 size -= size2;
1442 }
1443 release_bus(RELEASE_ONLY);
1444
1445 if (!ret) {
1446 /*EIO 5*/
1447 ret = -5;
1448 PRINT_ER("Can't download firmware IO error\n ");
1449 goto _fail_;
1450 }
1451 PRINT_D(INIT_DBG, "Offset = %d\n", offset);
1452 } while (offset < buffer_size);
1453
1454_fail_:
1455
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001456 kfree(dma_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001457
1458_fail_1:
1459
1460 return (ret < 0) ? ret : 0;
1461}
1462
1463/********************************************
1464 *
1465 * Common
1466 *
1467 ********************************************/
Glen Leee42563b2015-10-01 16:03:33 +09001468int wilc_wlan_start(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001469{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301470 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001471 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001472 int ret;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001473 u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001474
1475 /**
1476 * Set the host interface
1477 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001478 if (p->io_func.io_type == HIF_SDIO) {
1479 reg = 0;
Anish Bhattffda2032015-09-29 12:15:49 -07001480 reg |= BIT(3); /* bug 4456 and 4557 */
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001481 } else if (p->io_func.io_type == HIF_SPI) {
1482 reg = 1;
1483 }
1484 acquire_bus(ACQUIRE_ONLY);
1485 ret = p->hif_func.hif_write_reg(WILC_VMM_CORE_CFG, reg);
1486 if (!ret) {
1487 wilc_debug(N_ERR, "[wilc start]: fail write reg vmm_core_cfg...\n");
1488 release_bus(RELEASE_ONLY);
1489 /* EIO 5*/
1490 ret = -5;
1491 return ret;
1492 }
1493 reg = 0;
1494#ifdef WILC_SDIO_IRQ_GPIO
1495 reg |= WILC_HAVE_SDIO_IRQ_GPIO;
1496#endif
1497
1498#ifdef WILC_DISABLE_PMU
1499#else
1500 reg |= WILC_HAVE_USE_PMU;
1501#endif
1502
1503#ifdef WILC_SLEEP_CLK_SRC_XO
1504 reg |= WILC_HAVE_SLEEP_CLK_SRC_XO;
1505#elif defined WILC_SLEEP_CLK_SRC_RTC
1506 reg |= WILC_HAVE_SLEEP_CLK_SRC_RTC;
1507#endif
1508
1509#ifdef WILC_EXT_PA_INV_TX_RX
1510 reg |= WILC_HAVE_EXT_PA_INV_TX_RX;
1511#endif
1512
1513 reg |= WILC_HAVE_LEGACY_RF_SETTINGS;
1514
1515
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001516/*Set oscillator frequency*/
1517#ifdef XTAL_24
1518 reg |= WILC_HAVE_XTAL_24;
1519#endif
1520
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001521/*Enable/Disable GPIO configuration for FW logs*/
1522#ifdef DISABLE_WILC_UART
1523 reg |= WILC_HAVE_DISABLE_WILC_UART;
1524#endif
1525
1526 ret = p->hif_func.hif_write_reg(WILC_GP_REG_1, reg);
1527 if (!ret) {
1528 wilc_debug(N_ERR, "[wilc start]: fail write WILC_GP_REG_1 ...\n");
1529 release_bus(RELEASE_ONLY);
1530 /* EIO 5*/
1531 ret = -5;
1532 return ret;
1533 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001534
1535 /**
1536 * Bus related
1537 **/
1538 p->hif_func.hif_sync_ext(NUM_INT_EXT);
1539
1540 ret = p->hif_func.hif_read_reg(0x1000, &chipid);
1541 if (!ret) {
1542 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1000 ...\n");
1543 release_bus(RELEASE_ONLY);
1544 /* EIO 5*/
1545 ret = -5;
1546 return ret;
1547 }
1548
1549 /**
1550 * Go...
1551 **/
1552
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001553
1554 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -07001555 if ((reg & BIT(10)) == BIT(10)) {
1556 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001557 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1558 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1559 }
1560
Anish Bhattffda2032015-09-29 12:15:49 -07001561 reg |= BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001562 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1563 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1564 release_bus(RELEASE_ONLY);
1565
1566 return (ret < 0) ? ret : 0;
1567}
1568
1569void wilc_wlan_global_reset(void)
1570{
1571
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301572 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001573
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001574 acquire_bus(ACQUIRE_AND_WAKEUP);
1575 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, 0x0);
1576 release_bus(RELEASE_ONLY);
1577}
Glen Lee8cec7412015-10-01 16:03:34 +09001578int wilc_wlan_stop(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001579{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301580 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001581 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001582 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001583 u8 timeout = 10;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001584 /**
1585 * TODO: stop the firmware, need a re-download
1586 **/
1587 acquire_bus(ACQUIRE_AND_WAKEUP);
1588
1589 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1590 if (!ret) {
1591 PRINT_ER("Error while reading reg\n");
1592 release_bus(RELEASE_ALLOW_SLEEP);
1593 return ret;
1594 }
1595
Anish Bhattffda2032015-09-29 12:15:49 -07001596 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001597
1598
1599 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1600 if (!ret) {
1601 PRINT_ER("Error while writing reg\n");
1602 release_bus(RELEASE_ALLOW_SLEEP);
1603 return ret;
1604 }
1605
1606
1607
1608 do {
1609 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1610 if (!ret) {
1611 PRINT_ER("Error while reading reg\n");
1612 release_bus(RELEASE_ALLOW_SLEEP);
1613 return ret;
1614 }
1615 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1616 /*Workaround to ensure that the chip is actually reset*/
Anish Bhattffda2032015-09-29 12:15:49 -07001617 if ((reg & BIT(10))) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001618 PRINT_D(GENERIC_DBG, "Bit 10 not reset : Retry %d\n", timeout);
Anish Bhattffda2032015-09-29 12:15:49 -07001619 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001620 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1621 timeout--;
1622 } else {
1623 PRINT_D(GENERIC_DBG, "Bit 10 reset after : Retry %d\n", timeout);
1624 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1625 if (!ret) {
1626 PRINT_ER("Error while reading reg\n");
1627 release_bus(RELEASE_ALLOW_SLEEP);
1628 return ret;
1629 }
1630 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1631 break;
1632 }
1633
1634 } while (timeout);
Anish Bhattffda2032015-09-29 12:15:49 -07001635 reg = (BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(8) | BIT(9) | BIT(26) |
1636 BIT(29) | BIT(30) | BIT(31));
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001637
1638 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Anish Bhattffda2032015-09-29 12:15:49 -07001639 reg = (u32)~BIT(10);
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001640
1641 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001642
1643 release_bus(RELEASE_ALLOW_SLEEP);
1644
1645 return ret;
1646}
1647
Glen Leea17e2ec2015-10-01 16:03:38 +09001648void wilc_wlan_cleanup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001649{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301650 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001651 struct txq_entry_t *tqe;
1652 struct rxq_entry_t *rqe;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001653 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001654 int ret;
1655
1656 p->quit = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001657 do {
1658 tqe = wilc_wlan_txq_remove_from_head();
1659 if (tqe == NULL)
1660 break;
1661 if (tqe->tx_complete_func)
1662 tqe->tx_complete_func(tqe->priv, 0);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001663 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001664 } while (1);
1665
1666 do {
1667 rqe = wilc_wlan_rxq_remove();
1668 if (rqe == NULL)
1669 break;
Javier Martinez Canillas6a272242015-09-22 15:24:50 +02001670#ifndef MEMORY_STATIC
1671 kfree(rqe->buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001672#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001673 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001674 } while (1);
1675
1676 /**
1677 * clean up buffer
1678 **/
1679
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001680 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001681 kfree(p->rx_buffer);
1682 p->rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001683 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001684 kfree(p->tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001685
1686 acquire_bus(ACQUIRE_AND_WAKEUP);
1687
1688
1689 ret = p->hif_func.hif_read_reg(WILC_GP_REG_0, &reg);
1690 if (!ret) {
1691 PRINT_ER("Error while reading reg\n");
1692 release_bus(RELEASE_ALLOW_SLEEP);
1693 }
1694 PRINT_ER("Writing ABORT reg\n");
1695 ret = p->hif_func.hif_write_reg(WILC_GP_REG_0, (reg | ABORT_INT));
1696 if (!ret) {
1697 PRINT_ER("Error while writing reg\n");
1698 release_bus(RELEASE_ALLOW_SLEEP);
1699 }
1700 release_bus(RELEASE_ALLOW_SLEEP);
1701 /**
1702 * io clean up
1703 **/
1704 p->hif_func.hif_deinit(NULL);
1705
1706}
1707
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001708static int wilc_wlan_cfg_commit(int type, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001709{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301710 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001711 wilc_cfg_frame_t *cfg = &p->cfg_frame;
1712 int total_len = p->cfg_frame_offset + 4 + DRIVER_HANDLER_SIZE;
1713 int seq_no = p->cfg_seq_no % 256;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09001714 int driver_handler = (u32)drvHandler;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001715
1716
1717 /**
1718 * Set up header
1719 **/
1720 if (type == WILC_CFG_SET) { /* Set */
1721 cfg->wid_header[0] = 'W';
1722 } else { /* Query */
1723 cfg->wid_header[0] = 'Q';
1724 }
1725 cfg->wid_header[1] = seq_no; /* sequence number */
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001726 cfg->wid_header[2] = (u8)total_len;
1727 cfg->wid_header[3] = (u8)(total_len >> 8);
1728 cfg->wid_header[4] = (u8)driver_handler;
1729 cfg->wid_header[5] = (u8)(driver_handler >> 8);
1730 cfg->wid_header[6] = (u8)(driver_handler >> 16);
1731 cfg->wid_header[7] = (u8)(driver_handler >> 24);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001732 p->cfg_seq_no = seq_no;
1733
1734 /**
1735 * Add to TX queue
1736 **/
1737
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001738 if (!wilc_wlan_txq_add_cfg_pkt(&cfg->wid_header[0], total_len))
1739 return -1;
1740
1741 return 0;
1742}
1743
Glen Lee1028e5a2015-10-01 16:03:40 +09001744int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
1745 int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001746{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301747 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001748 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001749 int ret_size;
1750
1751
1752 if (p->cfg_frame_in_use)
1753 return 0;
1754
1755 if (start)
1756 p->cfg_frame_offset = 0;
1757
1758 offset = p->cfg_frame_offset;
Glen Lee17e8f162015-10-02 14:22:07 +09001759 ret_size = wilc_wlan_cfg_set_wid(p->cfg_frame.frame, offset, (u16)wid,
1760 buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001761 offset += ret_size;
1762 p->cfg_frame_offset = offset;
1763
1764 if (commit) {
1765 PRINT_D(TX_DBG, "[WILC]PACKET Commit with sequence number %d\n", p->cfg_seq_no);
1766 PRINT_D(RX_DBG, "Processing cfg_set()\n");
1767 p->cfg_frame_in_use = 1;
1768
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001769 if (wilc_wlan_cfg_commit(WILC_CFG_SET, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001770 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001771
Glen Leeb002e202015-09-24 18:15:05 +09001772 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1773 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001774 PRINT_D(TX_DBG, "Set Timed Out\n");
1775 ret_size = 0;
1776 }
1777 p->cfg_frame_in_use = 0;
1778 p->cfg_frame_offset = 0;
1779 p->cfg_seq_no += 1;
1780
1781 }
1782
1783 return ret_size;
1784}
Glen Lee07056a82015-10-01 16:03:41 +09001785int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001786{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301787 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001788 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001789 int ret_size;
1790
1791
1792 if (p->cfg_frame_in_use)
1793 return 0;
1794
1795 if (start)
1796 p->cfg_frame_offset = 0;
1797
1798 offset = p->cfg_frame_offset;
Glen Leeec1b86b2015-10-02 14:22:08 +09001799 ret_size = wilc_wlan_cfg_get_wid(p->cfg_frame.frame, offset, (u16)wid);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001800 offset += ret_size;
1801 p->cfg_frame_offset = offset;
1802
1803 if (commit) {
1804 p->cfg_frame_in_use = 1;
1805
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001806 if (wilc_wlan_cfg_commit(WILC_CFG_QUERY, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001807 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001808
1809
Glen Leeb002e202015-09-24 18:15:05 +09001810 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1811 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001812 PRINT_D(TX_DBG, "Get Timed Out\n");
1813 ret_size = 0;
1814 }
1815 PRINT_D(GENERIC_DBG, "[WILC]Get Response received\n");
1816 p->cfg_frame_in_use = 0;
1817 p->cfg_frame_offset = 0;
1818 p->cfg_seq_no += 1;
1819 }
1820
1821 return ret_size;
1822}
1823
Glen Lee894de36b2015-10-01 16:03:42 +09001824int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001825{
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001826 int ret;
1827
Glen Lee355cca22015-10-02 14:22:09 +09001828 ret = wilc_wlan_cfg_get_wid_value((u16)wid, buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001829
1830 return ret;
1831}
1832
1833void wilc_bus_set_max_speed(void)
1834{
1835
1836 /* Increase bus speed to max possible. */
1837 g_wlan.hif_func.hif_set_max_bus_speed();
1838}
1839
1840void wilc_bus_set_default_speed(void)
1841{
1842
1843 /* Restore bus speed to default. */
1844 g_wlan.hif_func.hif_set_default_bus_speed();
1845}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001846u32 init_chip(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001847{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001848 u32 chipid;
1849 u32 reg, ret = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001850
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001851 acquire_bus(ACQUIRE_ONLY);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001852
Dean Lee72ed4dc2015-06-12 14:11:44 +09001853 chipid = wilc_get_chipid(true);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001854
1855
1856
1857 if ((chipid & 0xfff) != 0xa0) {
1858 /**
1859 * Avoid booting from boot ROM. Make sure that Drive IRQN [SDIO platform]
1860 * or SD_DAT3 [SPI platform] to ?1?
1861 **/
1862 /* Set cortus reset register to register control. */
1863 ret = g_wlan.hif_func.hif_read_reg(0x1118, &reg);
1864 if (!ret) {
1865 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1118 ...\n");
1866 return ret;
1867 }
Anish Bhattffda2032015-09-29 12:15:49 -07001868 reg |= BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001869 ret = g_wlan.hif_func.hif_write_reg(0x1118, reg);
1870 if (!ret) {
1871 wilc_debug(N_ERR, "[wilc start]: fail write reg 0x1118 ...\n");
1872 return ret;
1873 }
1874 /**
1875 * Write branch intruction to IRAM (0x71 trap) at location 0xFFFF0000
1876 * (Cortus map) or C0000 (AHB map).
1877 **/
1878 ret = g_wlan.hif_func.hif_write_reg(0xc0000, 0x71);
1879 if (!ret) {
1880 wilc_debug(N_ERR, "[wilc start]: fail write reg 0xc0000 ...\n");
1881 return ret;
1882 }
1883 }
1884
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001885 release_bus(RELEASE_ONLY);
1886
1887 return ret;
1888
1889}
1890
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001891u32 wilc_get_chipid(u8 update)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001892{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001893 static u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001894 /* SDIO can't read into global variables */
1895 /* Use this variable as a temp, then copy to the global */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001896 u32 tempchipid = 0;
1897 u32 rfrevid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001898
1899 if (chipid == 0 || update != 0) {
1900 g_wlan.hif_func.hif_read_reg(0x1000, &tempchipid);
1901 g_wlan.hif_func.hif_read_reg(0x13f4, &rfrevid);
1902 if (!ISWILC1000(tempchipid)) {
1903 chipid = 0;
1904 goto _fail_;
1905 }
1906 if (tempchipid == 0x1002a0) {
1907 if (rfrevid == 0x1) { /* 1002A0 */
1908 } else { /* if (rfrevid == 0x2) */ /* 1002A1 */
1909 tempchipid = 0x1002a1;
1910 }
1911 } else if (tempchipid == 0x1002b0) {
1912 if (rfrevid == 3) { /* 1002B0 */
1913 } else if (rfrevid == 4) { /* 1002B1 */
1914 tempchipid = 0x1002b1;
1915 } else { /* if(rfrevid == 5) */ /* 1002B2 */
1916 tempchipid = 0x1002b2;
1917 }
1918 } else {
1919 }
1920
1921 chipid = tempchipid;
1922 }
1923_fail_:
1924 return chipid;
1925}
1926
Glen Leec9d48342015-10-01 16:03:43 +09001927int wilc_wlan_init(wilc_wlan_inp_t *inp)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001928{
1929
1930 int ret = 0;
1931
1932 PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n");
1933
1934 memset((void *)&g_wlan, 0, sizeof(wilc_wlan_dev_t));
1935
1936 /**
1937 * store the input
1938 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001939 memcpy((void *)&g_wlan.io_func, (void *)&inp->io_func, sizeof(wilc_wlan_io_func_t));
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001940 /***
1941 * host interface init
1942 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001943 if ((inp->io_func.io_type & 0x1) == HIF_SDIO) {
1944 if (!hif_sdio.hif_init(inp, wilc_debug)) {
1945 /* EIO 5 */
1946 ret = -5;
1947 goto _fail_;
1948 }
1949 memcpy((void *)&g_wlan.hif_func, &hif_sdio, sizeof(wilc_hif_func_t));
1950 } else {
1951 if ((inp->io_func.io_type & 0x1) == HIF_SPI) {
1952 /**
1953 * TODO:
1954 **/
1955 if (!hif_spi.hif_init(inp, wilc_debug)) {
1956 /* EIO 5 */
1957 ret = -5;
1958 goto _fail_;
1959 }
1960 memcpy((void *)&g_wlan.hif_func, &hif_spi, sizeof(wilc_hif_func_t));
1961 } else {
1962 /* EIO 5 */
1963 ret = -5;
1964 goto _fail_;
1965 }
1966 }
1967
1968 /***
1969 * mac interface init
1970 **/
Glen Lee814bc362015-10-02 14:22:11 +09001971 if (!wilc_wlan_cfg_init(wilc_debug)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001972 /* ENOBUFS 105 */
1973 ret = -105;
1974 goto _fail_;
1975 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001976
1977 /**
1978 * alloc tx, rx buffer
1979 **/
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001980 if (g_wlan.tx_buffer == NULL)
Glen Lee7015b5d2015-09-24 18:15:02 +09001981 g_wlan.tx_buffer = kmalloc(LINUX_TX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02001982 PRINT_D(TX_DBG, "g_wlan.tx_buffer = %p\n", g_wlan.tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001983
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001984 if (g_wlan.tx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001985 /* ENOBUFS 105 */
1986 ret = -105;
1987 PRINT_ER("Can't allocate Tx Buffer");
1988 goto _fail_;
1989 }
1990
1991/* rx_buffer is not used unless we activate USE_MEM STATIC which is not applicable, allocating such memory is useless*/
1992#if defined (MEMORY_STATIC)
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001993 if (g_wlan.rx_buffer == NULL)
Glen Lee03eb7262015-09-24 18:15:03 +09001994 g_wlan.rx_buffer = kmalloc(LINUX_RX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02001995 PRINT_D(TX_DBG, "g_wlan.rx_buffer =%p\n", g_wlan.rx_buffer);
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001996 if (g_wlan.rx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001997 /* ENOBUFS 105 */
1998 ret = -105;
1999 PRINT_ER("Can't allocate Rx Buffer");
2000 goto _fail_;
2001 }
2002#endif
2003
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002004 if (!init_chip()) {
2005 /* EIO 5 */
2006 ret = -5;
2007 goto _fail_;
2008 }
2009#ifdef TCP_ACK_FILTER
2010 Init_TCP_tracking();
2011#endif
2012
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002013 return 1;
2014
2015_fail_:
2016
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002017 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002018 kfree(g_wlan.rx_buffer);
2019 g_wlan.rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002020 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002021 kfree(g_wlan.tx_buffer);
2022 g_wlan.tx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002023
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002024 return ret;
2025
2026}
2027
Dean Lee72ed4dc2015-06-12 14:11:44 +09002028u16 Set_machw_change_vir_if(bool bValue)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002029{
Chaehyun Limd85f5322015-06-11 14:35:54 +09002030 u16 ret;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09002031 u32 reg;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002032
2033 /*Reset WILC_CHANGING_VIR_IF register to allow adding futrue keys to CE H/W*/
Glen Lee187f1ef2015-09-24 18:15:01 +09002034 mutex_lock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002035 ret = (&g_wlan)->hif_func.hif_read_reg(WILC_CHANGING_VIR_IF, &reg);
Alison Schofield39823a52015-10-08 21:18:03 -07002036 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002037 PRINT_ER("Error while Reading reg WILC_CHANGING_VIR_IF\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002038
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302039 if (bValue)
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002040 reg |= BIT(31);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302041 else
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002042 reg &= ~BIT(31);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002043
2044 ret = (&g_wlan)->hif_func.hif_write_reg(WILC_CHANGING_VIR_IF, reg);
2045
Alison Schofield39823a52015-10-08 21:18:03 -07002046 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002047 PRINT_ER("Error while writing reg WILC_CHANGING_VIR_IF\n");
Alison Schofield39823a52015-10-08 21:18:03 -07002048
Glen Lee187f1ef2015-09-24 18:15:01 +09002049 mutex_unlock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002050
2051 return ret;
2052}