blob: 93af5d430f9160d57544ec0bf3e2ff8a2cf72497 [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"
11#include "wilc_wlan.h"
Johnny Kimc5c77ba2015-05-11 14:30:56 +090012
13/********************************************
14 *
15 * Global
16 *
17 ********************************************/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090018extern wilc_hif_func_t hif_sdio;
19extern wilc_hif_func_t hif_spi;
20extern wilc_cfg_func_t mac_cfg;
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;
145 /* unsigned long flags; */
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900146 if (tqe == p->txq_head) {
147
148 p->txq_head = tqe->next;
149 if (p->txq_head)
150 p->txq_head->prev = NULL;
151
152
153 } else if (tqe == p->txq_tail) {
154 p->txq_tail = (tqe->prev);
155 if (p->txq_tail)
156 p->txq_tail->next = NULL;
157 } else {
158 tqe->prev->next = tqe->next;
159 tqe->next->prev = tqe->prev;
160 }
161 p->txq_entries -= 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900162
163}
164
165static struct txq_entry_t *wilc_wlan_txq_remove_from_head(void)
166{
167 struct txq_entry_t *tqe;
168 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
169 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900170
Glen Lee85e57562015-09-24 18:14:56 +0900171 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900172 if (p->txq_head) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900173 tqe = p->txq_head;
174 p->txq_head = tqe->next;
175 if (p->txq_head) {
176 p->txq_head->prev = NULL;
177 }
178 p->txq_entries -= 1;
179
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900180
181
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900182
183 } else {
184 tqe = NULL;
185 }
Glen Lee85e57562015-09-24 18:14:56 +0900186 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900187 return tqe;
188}
189
190static void wilc_wlan_txq_add_to_tail(struct txq_entry_t *tqe)
191{
192 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
193 unsigned long flags;
Glen Lee85e57562015-09-24 18:14:56 +0900194 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900195
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900196 if (p->txq_head == NULL) {
197 tqe->next = NULL;
198 tqe->prev = NULL;
199 p->txq_head = tqe;
200 p->txq_tail = tqe;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900201 } else {
202 tqe->next = NULL;
203 tqe->prev = p->txq_tail;
204 p->txq_tail->next = tqe;
205 p->txq_tail = tqe;
206 }
207 p->txq_entries += 1;
208 PRINT_D(TX_DBG, "Number of entries in TxQ = %d\n", p->txq_entries);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900209
Glen Lee85e57562015-09-24 18:14:56 +0900210 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900211
212 /**
213 * wake up TX queue
214 **/
215 PRINT_D(TX_DBG, "Wake the txq_handling\n");
216
Glen Lee5cd63632015-09-24 18:14:58 +0900217 up(&g_linux_wlan->txq_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900218}
219
220static int wilc_wlan_txq_add_to_head(struct txq_entry_t *tqe)
221{
222 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
223 unsigned long flags;
Glen Leeb002e202015-09-24 18:15:05 +0900224 if (linux_wlan_lock_timeout(&g_linux_wlan->txq_add_to_head_cs,
225 CFG_PKTS_TIMEOUT))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900226 return -1;
227
Glen Lee85e57562015-09-24 18:14:56 +0900228 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900229
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900230 if (p->txq_head == NULL) {
231 tqe->next = NULL;
232 tqe->prev = NULL;
233 p->txq_head = tqe;
234 p->txq_tail = tqe;
235 } else {
236 tqe->next = p->txq_head;
237 tqe->prev = NULL;
238 p->txq_head->prev = tqe;
239 p->txq_head = tqe;
240 }
241 p->txq_entries += 1;
242 PRINT_D(TX_DBG, "Number of entries in TxQ = %d\n", p->txq_entries);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900243
Glen Lee85e57562015-09-24 18:14:56 +0900244 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Glen Leed5a63a82015-09-24 18:15:00 +0900245 up(&g_linux_wlan->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900246
247
248 /**
249 * wake up TX queue
250 **/
Glen Lee5cd63632015-09-24 18:14:58 +0900251 up(&g_linux_wlan->txq_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900252 PRINT_D(TX_DBG, "Wake up the txq_handler\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900253
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900254 return 0;
255
256}
257
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900258u32 Statisitcs_totalAcks = 0, Statisitcs_DroppedAcks = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900259
260#ifdef TCP_ACK_FILTER
261struct Ack_session_info;
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530262struct Ack_session_info {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900263 u32 Ack_seq_num;
264 u32 Bigger_Ack_num;
Chaehyun Limec53adf2015-09-15 14:06:15 +0900265 u16 src_port;
266 u16 dst_port;
267 u16 status;
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530268};
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900269
270typedef struct {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900271 u32 ack_num;
272 u32 Session_index;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900273 struct txq_entry_t *txqe;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900274} Pending_Acks_info_t /*Ack_info_t*/;
275
276
277
278
279struct Ack_session_info *Free_head;
280struct Ack_session_info *Alloc_head;
281
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900282#define NOT_TCP_ACK (-1)
283
284#define MAX_TCP_SESSION 25
285#define MAX_PENDING_ACKS 256
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530286struct Ack_session_info Acks_keep_track_info[2 * MAX_TCP_SESSION];
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900287Pending_Acks_info_t Pending_Acks_info[MAX_PENDING_ACKS];
288
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900289u32 PendingAcks_arrBase;
290u32 Opened_TCP_session;
291u32 Pending_Acks;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900292
293
294
Chaehyun Limfed16f22015-09-17 16:48:43 +0900295static inline int Init_TCP_tracking(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900296{
297
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900298 return 0;
299
300}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900301static inline int add_TCP_track_session(u32 src_prt, u32 dst_prt, u32 seq)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900302{
303 Acks_keep_track_info[Opened_TCP_session].Ack_seq_num = seq;
304 Acks_keep_track_info[Opened_TCP_session].Bigger_Ack_num = 0;
305 Acks_keep_track_info[Opened_TCP_session].src_port = src_prt;
306 Acks_keep_track_info[Opened_TCP_session].dst_port = dst_prt;
307 Opened_TCP_session++;
308
309 PRINT_D(TCP_ENH, "TCP Session %d to Ack %d\n", Opened_TCP_session, seq);
310 return 0;
311}
312
Chaehyun Limfed16f22015-09-17 16:48:43 +0900313static inline int Update_TCP_track_session(u32 index, u32 Ack)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900314{
315
316 if (Ack > Acks_keep_track_info[index].Bigger_Ack_num) {
317 Acks_keep_track_info[index].Bigger_Ack_num = Ack;
318 }
319 return 0;
320
321}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900322static inline int add_TCP_Pending_Ack(u32 Ack, u32 Session_index, struct txq_entry_t *txqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900323{
324 Statisitcs_totalAcks++;
325 if (Pending_Acks < MAX_PENDING_ACKS) {
326 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].ack_num = Ack;
327 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].txqe = txqe;
328 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].Session_index = Session_index;
329 txqe->tcp_PendingAck_index = PendingAcks_arrBase + Pending_Acks;
330 Pending_Acks++;
331
332 } else {
333
334 }
335 return 0;
336}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900337static inline int remove_TCP_related(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900338{
339 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
340 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900341
Glen Lee85e57562015-09-24 18:14:56 +0900342 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900343
Glen Lee85e57562015-09-24 18:14:56 +0900344 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900345 return 0;
346}
347
Chaehyun Limfed16f22015-09-17 16:48:43 +0900348static inline int tcp_process(struct txq_entry_t *tqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900349{
350 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900351 u8 *eth_hdr_ptr;
352 u8 *buffer = tqe->buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900353 unsigned short h_proto;
354 int i;
355 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
356 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900357
Glen Lee85e57562015-09-24 18:14:56 +0900358 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900359
360 eth_hdr_ptr = &buffer[0];
361 h_proto = ntohs(*((unsigned short *)&eth_hdr_ptr[12]));
362 if (h_proto == 0x0800) { /* IP */
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900363 u8 *ip_hdr_ptr;
364 u8 protocol;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900365
366 ip_hdr_ptr = &buffer[ETHERNET_HDR_LEN];
367 protocol = ip_hdr_ptr[9];
368
369
370 if (protocol == 0x06) {
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900371 u8 *tcp_hdr_ptr;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900372 u32 IHL, Total_Length, Data_offset;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900373
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900374 tcp_hdr_ptr = &ip_hdr_ptr[IP_HDR_LEN];
375 IHL = (ip_hdr_ptr[0] & 0xf) << 2;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900376 Total_Length = (((u32)ip_hdr_ptr[2]) << 8) + ((u32)ip_hdr_ptr[3]);
377 Data_offset = (((u32)tcp_hdr_ptr[12] & 0xf0) >> 2);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900378 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 +0900379 u32 seq_no, Ack_no;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900380
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900381 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 +0900382
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900383 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 +0900384
385
386 for (i = 0; i < Opened_TCP_session; i++) {
387 if (Acks_keep_track_info[i].Ack_seq_num == seq_no) {
388 Update_TCP_track_session(i, Ack_no);
389 break;
390 }
391 }
392 if (i == Opened_TCP_session) {
393 add_TCP_track_session(0, 0, seq_no);
394 }
395 add_TCP_Pending_Ack(Ack_no, i, tqe);
396
397
398 }
399
400 } else {
401 ret = 0;
402 }
403 } else {
404 ret = 0;
405 }
Glen Lee85e57562015-09-24 18:14:56 +0900406 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900407 return ret;
408}
409
410
411static int wilc_wlan_txq_filter_dup_tcp_ack(void)
412{
413
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900414 u32 i = 0;
415 u32 Dropped = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900416 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
417
Glen Lee85e57562015-09-24 18:14:56 +0900418 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900419 for (i = PendingAcks_arrBase; i < (PendingAcks_arrBase + Pending_Acks); i++) {
420 if (Pending_Acks_info[i].ack_num < Acks_keep_track_info[Pending_Acks_info[i].Session_index].Bigger_Ack_num) {
421 struct txq_entry_t *tqe;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900422
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530423 PRINT_D(TCP_ENH, "DROP ACK: %u\n", Pending_Acks_info[i].ack_num);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900424 tqe = Pending_Acks_info[i].txqe;
425 if (tqe) {
426 wilc_wlan_txq_remove(tqe);
427 Statisitcs_DroppedAcks++;
428 tqe->status = 1; /* mark the packet send */
429 if (tqe->tx_complete_func)
430 tqe->tx_complete_func(tqe->priv, tqe->status);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -0700431 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900432 Dropped++;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900433 }
434 }
435 }
436 Pending_Acks = 0;
437 Opened_TCP_session = 0;
438
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530439 if (PendingAcks_arrBase == 0)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900440 PendingAcks_arrBase = MAX_TCP_SESSION;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530441 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900442 PendingAcks_arrBase = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900443
444
Glen Lee85e57562015-09-24 18:14:56 +0900445 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock,
446 p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900447
448 while (Dropped > 0) {
449 /*consume the semaphore count of the removed packet*/
Glen Leeb002e202015-09-24 18:15:05 +0900450 linux_wlan_lock_timeout(&g_linux_wlan->txq_event, 1);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900451 Dropped--;
452 }
453
454 return 1;
455}
456#endif
457
Dean Lee72ed4dc2015-06-12 14:11:44 +0900458bool EnableTCPAckFilter = false;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900459
Dean Lee72ed4dc2015-06-12 14:11:44 +0900460void Enable_TCP_ACK_Filter(bool value)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900461{
462 EnableTCPAckFilter = value;
463}
464
Dean Lee72ed4dc2015-06-12 14:11:44 +0900465bool is_TCP_ACK_Filter_Enabled(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900466{
467 return EnableTCPAckFilter;
468}
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900469
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900470static int wilc_wlan_txq_add_cfg_pkt(u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900471{
472 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
473 struct txq_entry_t *tqe;
474
475 PRINT_D(TX_DBG, "Adding config packet ...\n");
476 if (p->quit) {
477 PRINT_D(TX_DBG, "Return due to clear function\n");
Glen Lee6a3b94f2015-09-24 18:14:59 +0900478 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900479 return 0;
480 }
481
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700482 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_ATOMIC);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900483 if (tqe == NULL) {
484 PRINT_ER("Failed to allocate memory\n");
485 return 0;
486 }
487
488 tqe->type = WILC_CFG_PKT;
489 tqe->buffer = buffer;
490 tqe->buffer_size = buffer_size;
491 tqe->tx_complete_func = NULL;
492 tqe->priv = NULL;
493#ifdef TCP_ACK_FILTER
494 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
495#endif
496 /**
497 * Configuration packet always at the front
498 **/
499 PRINT_D(TX_DBG, "Adding the config packet at the Queue tail\n");
500
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900501 if (wilc_wlan_txq_add_to_head(tqe))
502 return 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900503 return 1;
504}
505
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900506static int wilc_wlan_txq_add_net_pkt(void *priv, u8 *buffer, u32 buffer_size, 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
652 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~(1 << 0));
653}
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 */
664 g_wlan.hif_func.hif_write_reg(1, reg | (1 << 1));
665
666 /* Clear bit 1*/
667 g_wlan.hif_func.hif_write_reg(1, reg & ~(1 << 1));
668
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 */
684 g_wlan.hif_func.hif_write_reg(0xf0, reg | (1 << 0));
685
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 */
707 g_wlan.hif_func.hif_write_reg(0xf0, reg & (~(1 << 0)));
708 }
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);
715 reg &= ~(1 << 0);
716 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);
723 val32 |= (1 << 6);
724 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
725
726 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
727 val32 |= (1 << 6);
728 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. */
742 g_wlan.hif_func.hif_write_reg(1, reg & ~(1 << 1));
743 /* Set bit 1 */
744 g_wlan.hif_func.hif_write_reg(1, reg | (1 << 1));
745 /* Clear bit 1*/
746 g_wlan.hif_func.hif_write_reg(1, reg & ~(1 << 1));
747 } 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);
750 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~(1 << 0));
751 /* Set bit 1 */
752 g_wlan.hif_func.hif_write_reg(0xf0, reg | (1 << 0));
753 /* Clear bit 1 */
754 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~(1 << 0));
755 }
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 */
Dean Lee72ed4dc2015-06-12 14:11:44 +0900763 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");
765 }
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);
772 reg &= ~(1 << 0);
773 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);
780 val32 |= (1 << 6);
781 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
782
783 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
784 val32 |= (1 << 6);
785 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 ********************************************/
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900817static int wilc_wlan_handle_txq(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];
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900831
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900832 p->txq_exit = 0;
833 do {
834 if (p->quit)
835 break;
836
Glen Leeb002e202015-09-24 18:15:05 +0900837 linux_wlan_lock_timeout(&g_linux_wlan->txq_add_to_head_cs,
838 CFG_PKTS_TIMEOUT);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900839#ifdef TCP_ACK_FILTER
840 wilc_wlan_txq_filter_dup_tcp_ack();
841#endif
842 /**
843 * build the vmm list
844 **/
845 PRINT_D(TX_DBG, "Getting the head of the TxQ\n");
846 tqe = wilc_wlan_txq_get_first();
847 i = 0;
848 sum = 0;
849 do {
850 /* if ((tqe != NULL) && (i < (8)) && */
851 /* if ((tqe != NULL) && (i < (WILC_VMM_TBL_SIZE-1)) && */
852 if ((tqe != NULL) && (i < (WILC_VMM_TBL_SIZE - 1)) /* reserve last entry to 0 */) {
853
854 if (tqe->type == WILC_CFG_PKT) {
855 vmm_sz = ETH_CONFIG_PKT_HDR_OFFSET;
856 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900857 else if (tqe->type == WILC_NET_PKT) {
858 vmm_sz = ETH_ETHERNET_HDR_OFFSET;
859 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900860 else {
861 vmm_sz = HOST_HDR_OFFSET;
862 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900863 vmm_sz += tqe->buffer_size;
864 PRINT_D(TX_DBG, "VMM Size before alignment = %d\n", vmm_sz);
865 if (vmm_sz & 0x3) { /* has to be word aligned */
866 vmm_sz = (vmm_sz + 4) & ~0x3;
867 }
Glen Lee7015b5d2015-09-24 18:15:02 +0900868 if ((sum + vmm_sz) > LINUX_TX_SIZE) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900869 break;
870 }
871 PRINT_D(TX_DBG, "VMM Size AFTER alignment = %d\n", vmm_sz);
872 vmm_table[i] = vmm_sz / 4; /* table take the word size */
873 PRINT_D(TX_DBG, "VMMTable entry size = %d\n", vmm_table[i]);
874
875 if (tqe->type == WILC_CFG_PKT) {
876 vmm_table[i] |= (1 << 10);
877 PRINT_D(TX_DBG, "VMMTable entry changed for CFG packet = %d\n", vmm_table[i]);
878 }
879#ifdef BIG_ENDIAN
880 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
881#endif
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900882
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900883 i++;
884 sum += vmm_sz;
885 PRINT_D(TX_DBG, "sum = %d\n", sum);
886 tqe = wilc_wlan_txq_get_next(tqe);
887 } else {
888 break;
889 }
890 } while (1);
891
892 if (i == 0) { /* nothing in the queue */
893 PRINT_D(TX_DBG, "Nothing in TX-Q\n");
894 break;
895 } else {
896 PRINT_D(TX_DBG, "Mark the last entry in VMM table - number of previous entries = %d\n", i);
897 vmm_table[i] = 0x0; /* mark the last element to 0 */
898 }
899 acquire_bus(ACQUIRE_AND_WAKEUP);
900 counter = 0;
901 do {
902
903 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
904 if (!ret) {
905 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg vmm_tbl_entry..\n");
906 break;
907 }
908
909 if ((reg & 0x1) == 0) {
910 /**
911 * write to vmm table
912 **/
913 PRINT_D(TX_DBG, "Writing VMM table ... with Size = %d\n", ((i + 1) * 4));
914 break;
915 } else {
916 counter++;
917 if (counter > 200) {
918 counter = 0;
919 PRINT_D(TX_DBG, "Looping in tx ctrl , forcce quit\n");
920 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, 0);
921 break;
922 }
923 /**
924 * wait for vmm table is ready
925 **/
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530926 PRINT_WRN(GENERIC_DBG, "[wilc txq]: warn, vmm table not clear yet, wait...\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900927 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700928 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900929 acquire_bus(ACQUIRE_AND_WAKEUP);
930 }
931 } while (!p->quit);
932
933 if (!ret) {
934 goto _end_;
935 }
936
937 timeout = 200;
938 do {
939
940 /**
941 * write to vmm table
942 **/
Chaehyun Limc3ca6372015-09-20 15:51:19 +0900943 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 +0900944 if (!ret) {
945 wilc_debug(N_ERR, "ERR block TX of VMM table.\n");
946 break;
947 }
948
949
950 /**
951 * interrupt firmware
952 **/
953 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x2);
954 if (!ret) {
955 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg host_vmm_ctl..\n");
956 break;
957 }
958
959 /**
960 * wait for confirm...
961 **/
962
963 do {
964 ret = p->hif_func.hif_read_reg(WILC_HOST_VMM_CTL, &reg);
965 if (!ret) {
966 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg host_vmm_ctl..\n");
967 break;
968 }
969 if ((reg >> 2) & 0x1) {
970 /**
971 * Get the entries
972 **/
973 entries = ((reg >> 3) & 0x3f);
974 /* entries = ((reg>>3)&0x2f); */
975 break;
976 } else {
977 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700978 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900979 acquire_bus(ACQUIRE_AND_WAKEUP);
980 PRINT_WRN(GENERIC_DBG, "Can't get VMM entery - reg = %2x\n", reg);
981 }
982 } while (--timeout);
983 if (timeout <= 0) {
984 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x0);
985 break;
986 }
987
988 if (!ret) {
989 break;
990 }
991
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 }
1001 reg &= ~(1ul << 0);
1002 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
1013 if (!ret) {
1014 goto _end_;
1015 }
1016 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)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001042 header |= (1 << 30);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301043 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001044 header &= ~(1 << 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
1071 if (tqe->tcp_PendingAck_index != NOT_TCP_ACK) {
1072 Pending_Acks_info[tqe->tcp_PendingAck_index].txqe = NULL;
1073 }
1074 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001075 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001076 } else {
1077 break;
1078 }
1079 } while (--entries);
1080
1081 /**
1082 * lock the bus
1083 **/
1084 acquire_bus(ACQUIRE_AND_WAKEUP);
1085
1086 ret = p->hif_func.hif_clear_int_ext(ENABLE_TX_VMM);
1087 if (!ret) {
1088 wilc_debug(N_ERR, "[wilc txq]: fail can't start tx VMM ...\n");
1089 goto _end_;
1090 }
1091
1092 /**
1093 * transfer
1094 **/
1095 ret = p->hif_func.hif_block_tx_ext(0, txb, offset);
1096 if (!ret) {
1097 wilc_debug(N_ERR, "[wilc txq]: fail can't block tx ext...\n");
1098 goto _end_;
1099 }
1100
1101_end_:
1102
1103 release_bus(RELEASE_ALLOW_SLEEP);
1104 if (ret != 1)
1105 break;
1106 } while (0);
Glen Leed5a63a82015-09-24 18:15:00 +09001107 up(&g_linux_wlan->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001108
1109 p->txq_exit = 1;
1110 PRINT_D(TX_DBG, "THREAD: Exiting txq\n");
1111 /* return tx[]q count */
1112 *pu32TxqCount = p->txq_entries;
1113 return ret;
1114}
1115
1116static void wilc_wlan_handle_rxq(void)
1117{
1118 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1119 int offset = 0, size, has_packet = 0;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001120 u8 *buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001121 struct rxq_entry_t *rqe;
1122
1123 p->rxq_exit = 0;
1124
1125
1126
1127
1128 do {
1129 if (p->quit) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301130 PRINT_D(RX_DBG, "exit 1st do-while due to Clean_UP function\n");
Glen Lee6a3b94f2015-09-24 18:14:59 +09001131 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001132 break;
1133 }
1134 rqe = wilc_wlan_rxq_remove();
1135 if (rqe == NULL) {
1136 PRINT_D(RX_DBG, "nothing in the queue - exit 1st do-while\n");
1137 break;
1138 }
1139 buffer = rqe->buffer;
1140 size = rqe->buffer_size;
1141 PRINT_D(RX_DBG, "rxQ entery Size = %d - Address = %p\n", size, buffer);
1142 offset = 0;
1143
1144
1145
1146 do {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001147 u32 header;
1148 u32 pkt_len, pkt_offset, tp_len;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001149 int is_cfg_packet;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001150
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001151 PRINT_D(RX_DBG, "In the 2nd do-while\n");
1152 memcpy(&header, &buffer[offset], 4);
1153#ifdef BIG_ENDIAN
1154 header = BYTE_SWAP(header);
1155#endif
1156 PRINT_D(RX_DBG, "Header = %04x - Offset = %d\n", header, offset);
1157
1158
1159
1160 is_cfg_packet = (header >> 31) & 0x1;
1161 pkt_offset = (header >> 22) & 0x1ff;
1162 tp_len = (header >> 11) & 0x7ff;
1163 pkt_len = header & 0x7ff;
1164
1165 if (pkt_len == 0 || tp_len == 0) {
1166 wilc_debug(N_RXQ, "[wilc rxq]: data corrupt, packet len or tp_len is 0 [%d][%d]\n", pkt_len, tp_len);
1167 break;
1168 }
1169
1170/*bug 3887: [AP] Allow Management frames to be passed to the host*/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001171 #define IS_MANAGMEMENT 0x100
1172 #define IS_MANAGMEMENT_CALLBACK 0x080
1173 #define IS_MGMT_STATUS_SUCCES 0x040
1174
1175
1176 if (pkt_offset & IS_MANAGMEMENT) {
1177 /* reset mgmt indicator bit, to use pkt_offeset in furthur calculations */
1178 pkt_offset &= ~(IS_MANAGMEMENT | IS_MANAGMEMENT_CALLBACK | IS_MGMT_STATUS_SUCCES);
1179
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001180 WILC_WFI_mgmt_rx(&buffer[offset + HOST_HDR_OFFSET], pkt_len);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001181 }
1182 /* BUG4530 fix */
1183 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001184 {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001185
1186 if (!is_cfg_packet) {
Glen Lee63611672015-09-24 18:14:52 +09001187 if (pkt_len > 0) {
1188 frmw_to_linux(&buffer[offset],
1189 pkt_len,
1190 pkt_offset);
1191 has_packet = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001192 }
1193 } else {
1194 wilc_cfg_rsp_t rsp;
1195
1196
1197
Glen Lee1fea5932015-09-24 18:15:06 +09001198 mac_cfg.rx_indicate(&buffer[pkt_offset + offset], pkt_len, &rsp);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001199 if (rsp.type == WILC_CFG_RSP) {
1200 /**
1201 * wake up the waiting task...
1202 **/
1203 PRINT_D(RX_DBG, "p->cfg_seq_no = %d - rsp.seq_no = %d\n", p->cfg_seq_no, rsp.seq_no);
1204 if (p->cfg_seq_no == rsp.seq_no) {
Glen Lee6a3b94f2015-09-24 18:14:59 +09001205 up(&g_linux_wlan->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001206 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001207 } else if (rsp.type == WILC_CFG_RSP_STATUS) {
1208 /**
1209 * Call back to indicate status...
1210 **/
Glen Lee4417d3d2015-09-24 18:14:53 +09001211 linux_wlan_mac_indicate(WILC_MAC_INDICATE_STATUS);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001212
1213 } else if (rsp.type == WILC_CFG_RSP_SCAN) {
Glen Lee4417d3d2015-09-24 18:14:53 +09001214 linux_wlan_mac_indicate(WILC_MAC_INDICATE_SCAN);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001215 }
1216 }
1217 }
1218 offset += tp_len;
1219 if (offset >= size)
1220 break;
1221 } while (1);
1222
1223
1224#ifndef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001225 kfree(buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001226#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001227 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001228
1229 if (has_packet) {
Glen Leec0cadaa2015-09-24 18:14:54 +09001230 linux_wlan_rx_complete();
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001231 }
1232 } while (1);
1233
1234 p->rxq_exit = 1;
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301235 PRINT_D(RX_DBG, "THREAD: Exiting RX thread\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001236}
1237
1238/********************************************
1239 *
1240 * Fast DMA Isr
1241 *
1242 ********************************************/
1243static void wilc_unknown_isr_ext(void)
1244{
1245 g_wlan.hif_func.hif_clear_int_ext(0);
1246}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001247static void wilc_pllupdate_isr_ext(u32 int_stats)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001248{
1249
1250 int trials = 10;
1251
1252 g_wlan.hif_func.hif_clear_int_ext(PLL_INT_CLR);
1253
1254 /* Waiting for PLL */
Greg Kroah-Hartmanc2e4c0f2015-09-03 19:09:50 -07001255 mdelay(WILC_PLL_TO);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001256
1257 /* poll till read a valid data */
Dean Lee72ed4dc2015-06-12 14:11:44 +09001258 while (!(ISWILC1000(wilc_get_chipid(true)) && --trials)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001259 PRINT_D(TX_DBG, "PLL update retrying\n");
Greg Kroah-Hartmanc2e4c0f2015-09-03 19:09:50 -07001260 mdelay(1);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001261 }
1262}
1263
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001264static void wilc_sleeptimer_isr_ext(u32 int_stats1)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001265{
1266 g_wlan.hif_func.hif_clear_int_ext(SLEEP_INT_CLR);
1267#ifndef WILC_OPTIMIZE_SLEEP_INT
1268 genuChipPSstate = CHIP_SLEEPING_AUTO;
1269#endif
1270}
1271
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001272static void wilc_wlan_handle_isr_ext(u32 int_status)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001273{
1274 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1275#ifdef MEMORY_STATIC
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001276 u32 offset = p->rx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001277#endif
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001278 u8 *buffer = NULL;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001279 u32 size;
1280 u32 retries = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001281 int ret = 0;
1282 struct rxq_entry_t *rqe;
1283
1284
1285 /**
1286 * Get the rx size
1287 **/
1288
1289 size = ((int_status & 0x7fff) << 2);
1290
1291 while (!size && retries < 10) {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001292 u32 time = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001293 /*looping more secure*/
1294 /*zero size make a crashe because the dma will not happen and that will block the firmware*/
1295 wilc_debug(N_ERR, "RX Size equal zero ... Trying to read it again for %d time\n", time++);
1296 p->hif_func.hif_read_size(&size);
1297 size = ((size & 0x7fff) << 2);
1298 retries++;
1299
1300 }
1301
1302 if (size > 0) {
1303#ifdef MEMORY_STATIC
Glen Lee03eb7262015-09-24 18:15:03 +09001304 if (LINUX_RX_SIZE - offset < size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001305 offset = 0;
1306
1307 if (p->rx_buffer)
1308 buffer = &p->rx_buffer[offset];
1309 else {
1310 wilc_debug(N_ERR, "[wilc isr]: fail Rx Buffer is NULL...drop the packets (%d)\n", size);
1311 goto _end_;
1312 }
1313
1314#else
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001315 buffer = kmalloc(size, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001316 if (buffer == NULL) {
1317 wilc_debug(N_ERR, "[wilc isr]: fail alloc host memory...drop the packets (%d)\n", size);
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -07001318 usleep_range(100 * 1000, 100 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001319 goto _end_;
1320 }
1321#endif
1322
1323 /**
1324 * clear the chip's interrupt after getting size some register getting corrupted after clear the interrupt
1325 **/
1326 p->hif_func.hif_clear_int_ext(DATA_INT_CLR | ENABLE_RX_VMM);
1327
1328
1329 /**
1330 * start transfer
1331 **/
1332 ret = p->hif_func.hif_block_rx_ext(0, buffer, size);
1333
1334 if (!ret) {
1335 wilc_debug(N_ERR, "[wilc isr]: fail block rx...\n");
1336 goto _end_;
1337 }
1338_end_:
1339
1340
1341 if (ret) {
1342#ifdef MEMORY_STATIC
1343 offset += size;
1344 p->rx_buffer_offset = offset;
1345#endif
1346 /**
1347 * add to rx queue
1348 **/
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001349 rqe = kmalloc(sizeof(struct rxq_entry_t), GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001350 if (rqe != NULL) {
1351 rqe->buffer = buffer;
1352 rqe->buffer_size = size;
1353 PRINT_D(RX_DBG, "rxq entery Size= %d - Address = %p\n", rqe->buffer_size, rqe->buffer);
1354 wilc_wlan_rxq_add(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001355 }
1356 } else {
1357#ifndef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001358 kfree(buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001359#endif
1360 }
1361 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001362 wilc_wlan_handle_rxq();
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001363}
1364
1365void wilc_handle_isr(void)
1366{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001367 u32 int_status;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001368
1369 acquire_bus(ACQUIRE_AND_WAKEUP);
1370 g_wlan.hif_func.hif_read_int(&int_status);
1371
1372 if (int_status & PLL_INT_EXT) {
1373 wilc_pllupdate_isr_ext(int_status);
1374 }
1375 if (int_status & DATA_INT_EXT) {
1376 wilc_wlan_handle_isr_ext(int_status);
1377 #ifndef WILC_OPTIMIZE_SLEEP_INT
1378 /* Chip is up and talking*/
1379 genuChipPSstate = CHIP_WAKEDUP;
1380 #endif
1381 }
1382 if (int_status & SLEEP_INT_EXT) {
1383 wilc_sleeptimer_isr_ext(int_status);
1384 }
1385
1386 if (!(int_status & (ALL_INT_EXT))) {
1387#ifdef WILC_SDIO
1388 PRINT_D(TX_DBG, ">> UNKNOWN_INTERRUPT - 0x%08x\n", int_status);
1389#endif
1390 wilc_unknown_isr_ext();
1391 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001392 release_bus(RELEASE_ALLOW_SLEEP);
1393}
1394
1395/********************************************
1396 *
1397 * Firmware download
1398 *
1399 ********************************************/
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001400static int wilc_wlan_firmware_download(const u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001401{
1402 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001403 u32 offset;
1404 u32 addr, size, size2, blksz;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001405 u8 *dma_buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001406 int ret = 0;
1407
Chaehyun Limc3ca6372015-09-20 15:51:19 +09001408 blksz = (1ul << 12);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001409 /* Allocate a DMA coherent buffer. */
1410
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001411 dma_buffer = kmalloc(blksz, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001412 if (dma_buffer == NULL) {
1413 /*EIO 5*/
1414 ret = -5;
1415 PRINT_ER("Can't allocate buffer for firmware download IO error\n ");
1416 goto _fail_1;
1417 }
1418
1419 PRINT_D(INIT_DBG, "Downloading firmware size = %d ...\n", buffer_size);
1420 /**
1421 * load the firmware
1422 **/
1423 offset = 0;
1424 do {
1425 memcpy(&addr, &buffer[offset], 4);
1426 memcpy(&size, &buffer[offset + 4], 4);
1427#ifdef BIG_ENDIAN
1428 addr = BYTE_SWAP(addr);
1429 size = BYTE_SWAP(size);
1430#endif
1431 acquire_bus(ACQUIRE_ONLY);
1432 offset += 8;
1433 while (((int)size) && (offset < buffer_size)) {
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301434 if (size <= blksz)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001435 size2 = size;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301436 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001437 size2 = blksz;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001438 /* Copy firmware into a DMA coherent buffer */
1439 memcpy(dma_buffer, &buffer[offset], size2);
1440 ret = p->hif_func.hif_block_tx(addr, dma_buffer, size2);
1441 if (!ret)
1442 break;
1443
1444 addr += size2;
1445 offset += size2;
1446 size -= size2;
1447 }
1448 release_bus(RELEASE_ONLY);
1449
1450 if (!ret) {
1451 /*EIO 5*/
1452 ret = -5;
1453 PRINT_ER("Can't download firmware IO error\n ");
1454 goto _fail_;
1455 }
1456 PRINT_D(INIT_DBG, "Offset = %d\n", offset);
1457 } while (offset < buffer_size);
1458
1459_fail_:
1460
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001461 kfree(dma_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001462
1463_fail_1:
1464
1465 return (ret < 0) ? ret : 0;
1466}
1467
1468/********************************************
1469 *
1470 * Common
1471 *
1472 ********************************************/
1473static int wilc_wlan_start(void)
1474{
1475 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001476 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001477 int ret;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001478 u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001479
1480 /**
1481 * Set the host interface
1482 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001483 if (p->io_func.io_type == HIF_SDIO) {
1484 reg = 0;
1485 reg |= (1 << 3); /* bug 4456 and 4557 */
1486 } else if (p->io_func.io_type == HIF_SPI) {
1487 reg = 1;
1488 }
1489 acquire_bus(ACQUIRE_ONLY);
1490 ret = p->hif_func.hif_write_reg(WILC_VMM_CORE_CFG, reg);
1491 if (!ret) {
1492 wilc_debug(N_ERR, "[wilc start]: fail write reg vmm_core_cfg...\n");
1493 release_bus(RELEASE_ONLY);
1494 /* EIO 5*/
1495 ret = -5;
1496 return ret;
1497 }
1498 reg = 0;
1499#ifdef WILC_SDIO_IRQ_GPIO
1500 reg |= WILC_HAVE_SDIO_IRQ_GPIO;
1501#endif
1502
1503#ifdef WILC_DISABLE_PMU
1504#else
1505 reg |= WILC_HAVE_USE_PMU;
1506#endif
1507
1508#ifdef WILC_SLEEP_CLK_SRC_XO
1509 reg |= WILC_HAVE_SLEEP_CLK_SRC_XO;
1510#elif defined WILC_SLEEP_CLK_SRC_RTC
1511 reg |= WILC_HAVE_SLEEP_CLK_SRC_RTC;
1512#endif
1513
1514#ifdef WILC_EXT_PA_INV_TX_RX
1515 reg |= WILC_HAVE_EXT_PA_INV_TX_RX;
1516#endif
1517
1518 reg |= WILC_HAVE_LEGACY_RF_SETTINGS;
1519
1520
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001521/*Set oscillator frequency*/
1522#ifdef XTAL_24
1523 reg |= WILC_HAVE_XTAL_24;
1524#endif
1525
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001526/*Enable/Disable GPIO configuration for FW logs*/
1527#ifdef DISABLE_WILC_UART
1528 reg |= WILC_HAVE_DISABLE_WILC_UART;
1529#endif
1530
1531 ret = p->hif_func.hif_write_reg(WILC_GP_REG_1, reg);
1532 if (!ret) {
1533 wilc_debug(N_ERR, "[wilc start]: fail write WILC_GP_REG_1 ...\n");
1534 release_bus(RELEASE_ONLY);
1535 /* EIO 5*/
1536 ret = -5;
1537 return ret;
1538 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001539
1540 /**
1541 * Bus related
1542 **/
1543 p->hif_func.hif_sync_ext(NUM_INT_EXT);
1544
1545 ret = p->hif_func.hif_read_reg(0x1000, &chipid);
1546 if (!ret) {
1547 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1000 ...\n");
1548 release_bus(RELEASE_ONLY);
1549 /* EIO 5*/
1550 ret = -5;
1551 return ret;
1552 }
1553
1554 /**
1555 * Go...
1556 **/
1557
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001558
1559 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1560 if ((reg & (1ul << 10)) == (1ul << 10)) {
1561 reg &= ~(1ul << 10);
1562 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1563 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1564 }
1565
1566 reg |= (1ul << 10);
1567 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1568 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1569 release_bus(RELEASE_ONLY);
1570
1571 return (ret < 0) ? ret : 0;
1572}
1573
1574void wilc_wlan_global_reset(void)
1575{
1576
1577 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001578
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001579 acquire_bus(ACQUIRE_AND_WAKEUP);
1580 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, 0x0);
1581 release_bus(RELEASE_ONLY);
1582}
1583static int wilc_wlan_stop(void)
1584{
1585 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001586 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001587 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001588 u8 timeout = 10;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001589 /**
1590 * TODO: stop the firmware, need a re-download
1591 **/
1592 acquire_bus(ACQUIRE_AND_WAKEUP);
1593
1594 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1595 if (!ret) {
1596 PRINT_ER("Error while reading reg\n");
1597 release_bus(RELEASE_ALLOW_SLEEP);
1598 return ret;
1599 }
1600
1601 reg &= ~(1 << 10);
1602
1603
1604 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1605 if (!ret) {
1606 PRINT_ER("Error while writing reg\n");
1607 release_bus(RELEASE_ALLOW_SLEEP);
1608 return ret;
1609 }
1610
1611
1612
1613 do {
1614 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1615 if (!ret) {
1616 PRINT_ER("Error while reading reg\n");
1617 release_bus(RELEASE_ALLOW_SLEEP);
1618 return ret;
1619 }
1620 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1621 /*Workaround to ensure that the chip is actually reset*/
1622 if ((reg & (1 << 10))) {
1623 PRINT_D(GENERIC_DBG, "Bit 10 not reset : Retry %d\n", timeout);
1624 reg &= ~(1 << 10);
1625 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1626 timeout--;
1627 } else {
1628 PRINT_D(GENERIC_DBG, "Bit 10 reset after : Retry %d\n", timeout);
1629 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1630 if (!ret) {
1631 PRINT_ER("Error while reading reg\n");
1632 release_bus(RELEASE_ALLOW_SLEEP);
1633 return ret;
1634 }
1635 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1636 break;
1637 }
1638
1639 } while (timeout);
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001640 reg = ((1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 8) | (1 << 9) | (1 << 26) | (1 << 29) | (1 << 30) | (1 << 31));
1641
1642 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1643 reg = ~(1 << 10);
1644
1645 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001646
1647 release_bus(RELEASE_ALLOW_SLEEP);
1648
1649 return ret;
1650}
1651
1652static void wilc_wlan_cleanup(void)
1653{
1654 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1655 struct txq_entry_t *tqe;
1656 struct rxq_entry_t *rqe;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001657 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001658 int ret;
1659
1660 p->quit = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001661 do {
1662 tqe = wilc_wlan_txq_remove_from_head();
1663 if (tqe == NULL)
1664 break;
1665 if (tqe->tx_complete_func)
1666 tqe->tx_complete_func(tqe->priv, 0);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001667 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001668 } while (1);
1669
1670 do {
1671 rqe = wilc_wlan_rxq_remove();
1672 if (rqe == NULL)
1673 break;
Javier Martinez Canillas6a272242015-09-22 15:24:50 +02001674#ifndef MEMORY_STATIC
1675 kfree(rqe->buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001676#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001677 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001678 } while (1);
1679
1680 /**
1681 * clean up buffer
1682 **/
1683
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001684 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001685 kfree(p->rx_buffer);
1686 p->rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001687 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001688 kfree(p->tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001689
1690 acquire_bus(ACQUIRE_AND_WAKEUP);
1691
1692
1693 ret = p->hif_func.hif_read_reg(WILC_GP_REG_0, &reg);
1694 if (!ret) {
1695 PRINT_ER("Error while reading reg\n");
1696 release_bus(RELEASE_ALLOW_SLEEP);
1697 }
1698 PRINT_ER("Writing ABORT reg\n");
1699 ret = p->hif_func.hif_write_reg(WILC_GP_REG_0, (reg | ABORT_INT));
1700 if (!ret) {
1701 PRINT_ER("Error while writing reg\n");
1702 release_bus(RELEASE_ALLOW_SLEEP);
1703 }
1704 release_bus(RELEASE_ALLOW_SLEEP);
1705 /**
1706 * io clean up
1707 **/
1708 p->hif_func.hif_deinit(NULL);
1709
1710}
1711
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001712static int wilc_wlan_cfg_commit(int type, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001713{
1714 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
1715 wilc_cfg_frame_t *cfg = &p->cfg_frame;
1716 int total_len = p->cfg_frame_offset + 4 + DRIVER_HANDLER_SIZE;
1717 int seq_no = p->cfg_seq_no % 256;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09001718 int driver_handler = (u32)drvHandler;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001719
1720
1721 /**
1722 * Set up header
1723 **/
1724 if (type == WILC_CFG_SET) { /* Set */
1725 cfg->wid_header[0] = 'W';
1726 } else { /* Query */
1727 cfg->wid_header[0] = 'Q';
1728 }
1729 cfg->wid_header[1] = seq_no; /* sequence number */
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001730 cfg->wid_header[2] = (u8)total_len;
1731 cfg->wid_header[3] = (u8)(total_len >> 8);
1732 cfg->wid_header[4] = (u8)driver_handler;
1733 cfg->wid_header[5] = (u8)(driver_handler >> 8);
1734 cfg->wid_header[6] = (u8)(driver_handler >> 16);
1735 cfg->wid_header[7] = (u8)(driver_handler >> 24);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001736 p->cfg_seq_no = seq_no;
1737
1738 /**
1739 * Add to TX queue
1740 **/
1741
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001742 if (!wilc_wlan_txq_add_cfg_pkt(&cfg->wid_header[0], total_len))
1743 return -1;
1744
1745 return 0;
1746}
1747
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001748static int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size, int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001749{
1750 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001751 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001752 int ret_size;
1753
1754
1755 if (p->cfg_frame_in_use)
1756 return 0;
1757
1758 if (start)
1759 p->cfg_frame_offset = 0;
1760
1761 offset = p->cfg_frame_offset;
Glen Lee1fea5932015-09-24 18:15:06 +09001762 ret_size = mac_cfg.cfg_wid_set(p->cfg_frame.frame, offset, (u16)wid,
1763 buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001764 offset += ret_size;
1765 p->cfg_frame_offset = offset;
1766
1767 if (commit) {
1768 PRINT_D(TX_DBG, "[WILC]PACKET Commit with sequence number %d\n", p->cfg_seq_no);
1769 PRINT_D(RX_DBG, "Processing cfg_set()\n");
1770 p->cfg_frame_in_use = 1;
1771
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001772 if (wilc_wlan_cfg_commit(WILC_CFG_SET, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001773 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001774
Glen Leeb002e202015-09-24 18:15:05 +09001775 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1776 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001777 PRINT_D(TX_DBG, "Set Timed Out\n");
1778 ret_size = 0;
1779 }
1780 p->cfg_frame_in_use = 0;
1781 p->cfg_frame_offset = 0;
1782 p->cfg_seq_no += 1;
1783
1784 }
1785
1786 return ret_size;
1787}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001788static int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001789{
1790 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001791 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001792 int ret_size;
1793
1794
1795 if (p->cfg_frame_in_use)
1796 return 0;
1797
1798 if (start)
1799 p->cfg_frame_offset = 0;
1800
1801 offset = p->cfg_frame_offset;
Glen Lee1fea5932015-09-24 18:15:06 +09001802 ret_size = mac_cfg.cfg_wid_get(p->cfg_frame.frame, offset, (u16)wid);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001803 offset += ret_size;
1804 p->cfg_frame_offset = offset;
1805
1806 if (commit) {
1807 p->cfg_frame_in_use = 1;
1808
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001809 if (wilc_wlan_cfg_commit(WILC_CFG_QUERY, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001810 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001811
1812
Glen Leeb002e202015-09-24 18:15:05 +09001813 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1814 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001815 PRINT_D(TX_DBG, "Get Timed Out\n");
1816 ret_size = 0;
1817 }
1818 PRINT_D(GENERIC_DBG, "[WILC]Get Response received\n");
1819 p->cfg_frame_in_use = 0;
1820 p->cfg_frame_offset = 0;
1821 p->cfg_seq_no += 1;
1822 }
1823
1824 return ret_size;
1825}
1826
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001827static int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001828{
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001829 int ret;
1830
Glen Lee1fea5932015-09-24 18:15:06 +09001831 ret = mac_cfg.cfg_wid_get_val((u16)wid, buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001832
1833 return ret;
1834}
1835
1836void wilc_bus_set_max_speed(void)
1837{
1838
1839 /* Increase bus speed to max possible. */
1840 g_wlan.hif_func.hif_set_max_bus_speed();
1841}
1842
1843void wilc_bus_set_default_speed(void)
1844{
1845
1846 /* Restore bus speed to default. */
1847 g_wlan.hif_func.hif_set_default_bus_speed();
1848}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001849u32 init_chip(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001850{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001851 u32 chipid;
1852 u32 reg, ret = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001853
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001854 acquire_bus(ACQUIRE_ONLY);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001855
Dean Lee72ed4dc2015-06-12 14:11:44 +09001856 chipid = wilc_get_chipid(true);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001857
1858
1859
1860 if ((chipid & 0xfff) != 0xa0) {
1861 /**
1862 * Avoid booting from boot ROM. Make sure that Drive IRQN [SDIO platform]
1863 * or SD_DAT3 [SPI platform] to ?1?
1864 **/
1865 /* Set cortus reset register to register control. */
1866 ret = g_wlan.hif_func.hif_read_reg(0x1118, &reg);
1867 if (!ret) {
1868 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1118 ...\n");
1869 return ret;
1870 }
1871 reg |= (1 << 0);
1872 ret = g_wlan.hif_func.hif_write_reg(0x1118, reg);
1873 if (!ret) {
1874 wilc_debug(N_ERR, "[wilc start]: fail write reg 0x1118 ...\n");
1875 return ret;
1876 }
1877 /**
1878 * Write branch intruction to IRAM (0x71 trap) at location 0xFFFF0000
1879 * (Cortus map) or C0000 (AHB map).
1880 **/
1881 ret = g_wlan.hif_func.hif_write_reg(0xc0000, 0x71);
1882 if (!ret) {
1883 wilc_debug(N_ERR, "[wilc start]: fail write reg 0xc0000 ...\n");
1884 return ret;
1885 }
1886 }
1887
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001888 release_bus(RELEASE_ONLY);
1889
1890 return ret;
1891
1892}
1893
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001894u32 wilc_get_chipid(u8 update)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001895{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001896 static u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001897 /* SDIO can't read into global variables */
1898 /* Use this variable as a temp, then copy to the global */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001899 u32 tempchipid = 0;
1900 u32 rfrevid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001901
1902 if (chipid == 0 || update != 0) {
1903 g_wlan.hif_func.hif_read_reg(0x1000, &tempchipid);
1904 g_wlan.hif_func.hif_read_reg(0x13f4, &rfrevid);
1905 if (!ISWILC1000(tempchipid)) {
1906 chipid = 0;
1907 goto _fail_;
1908 }
1909 if (tempchipid == 0x1002a0) {
1910 if (rfrevid == 0x1) { /* 1002A0 */
1911 } else { /* if (rfrevid == 0x2) */ /* 1002A1 */
1912 tempchipid = 0x1002a1;
1913 }
1914 } else if (tempchipid == 0x1002b0) {
1915 if (rfrevid == 3) { /* 1002B0 */
1916 } else if (rfrevid == 4) { /* 1002B1 */
1917 tempchipid = 0x1002b1;
1918 } else { /* if(rfrevid == 5) */ /* 1002B2 */
1919 tempchipid = 0x1002b2;
1920 }
1921 } else {
1922 }
1923
1924 chipid = tempchipid;
1925 }
1926_fail_:
1927 return chipid;
1928}
1929
1930#ifdef COMPLEMENT_BOOT
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001931u8 core_11b_ready(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001932{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001933 u32 reg_val;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001934
1935 acquire_bus(ACQUIRE_ONLY);
1936 g_wlan.hif_func.hif_write_reg(0x16082c, 1);
1937 g_wlan.hif_func.hif_write_reg(0x161600, 0x90);
1938 g_wlan.hif_func.hif_read_reg(0x161600, &reg_val);
1939 release_bus(RELEASE_ONLY);
1940
1941 if (reg_val == 0x90)
1942 return 0;
1943 else
1944 return 1;
1945}
1946#endif
1947
1948int wilc_wlan_init(wilc_wlan_inp_t *inp, wilc_wlan_oup_t *oup)
1949{
1950
1951 int ret = 0;
1952
1953 PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n");
1954
1955 memset((void *)&g_wlan, 0, sizeof(wilc_wlan_dev_t));
1956
1957 /**
1958 * store the input
1959 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001960 memcpy((void *)&g_wlan.io_func, (void *)&inp->io_func, sizeof(wilc_wlan_io_func_t));
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001961 /***
1962 * host interface init
1963 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001964 if ((inp->io_func.io_type & 0x1) == HIF_SDIO) {
1965 if (!hif_sdio.hif_init(inp, wilc_debug)) {
1966 /* EIO 5 */
1967 ret = -5;
1968 goto _fail_;
1969 }
1970 memcpy((void *)&g_wlan.hif_func, &hif_sdio, sizeof(wilc_hif_func_t));
1971 } else {
1972 if ((inp->io_func.io_type & 0x1) == HIF_SPI) {
1973 /**
1974 * TODO:
1975 **/
1976 if (!hif_spi.hif_init(inp, wilc_debug)) {
1977 /* EIO 5 */
1978 ret = -5;
1979 goto _fail_;
1980 }
1981 memcpy((void *)&g_wlan.hif_func, &hif_spi, sizeof(wilc_hif_func_t));
1982 } else {
1983 /* EIO 5 */
1984 ret = -5;
1985 goto _fail_;
1986 }
1987 }
1988
1989 /***
1990 * mac interface init
1991 **/
1992 if (!mac_cfg.cfg_init(wilc_debug)) {
1993 /* ENOBUFS 105 */
1994 ret = -105;
1995 goto _fail_;
1996 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001997
1998 /**
1999 * alloc tx, rx buffer
2000 **/
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002001 if (g_wlan.tx_buffer == NULL)
Glen Lee7015b5d2015-09-24 18:15:02 +09002002 g_wlan.tx_buffer = kmalloc(LINUX_TX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02002003 PRINT_D(TX_DBG, "g_wlan.tx_buffer = %p\n", g_wlan.tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002004
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002005 if (g_wlan.tx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002006 /* ENOBUFS 105 */
2007 ret = -105;
2008 PRINT_ER("Can't allocate Tx Buffer");
2009 goto _fail_;
2010 }
2011
2012/* rx_buffer is not used unless we activate USE_MEM STATIC which is not applicable, allocating such memory is useless*/
2013#if defined (MEMORY_STATIC)
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002014 if (g_wlan.rx_buffer == NULL)
Glen Lee03eb7262015-09-24 18:15:03 +09002015 g_wlan.rx_buffer = kmalloc(LINUX_RX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02002016 PRINT_D(TX_DBG, "g_wlan.rx_buffer =%p\n", g_wlan.rx_buffer);
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09002017 if (g_wlan.rx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002018 /* ENOBUFS 105 */
2019 ret = -105;
2020 PRINT_ER("Can't allocate Rx Buffer");
2021 goto _fail_;
2022 }
2023#endif
2024
2025 /**
2026 * export functions
2027 **/
2028 oup->wlan_firmware_download = wilc_wlan_firmware_download;
2029 oup->wlan_start = wilc_wlan_start;
2030 oup->wlan_stop = wilc_wlan_stop;
2031 oup->wlan_add_to_tx_que = wilc_wlan_txq_add_net_pkt;
2032 oup->wlan_handle_tx_que = wilc_wlan_handle_txq;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002033 oup->wlan_handle_rx_isr = wilc_handle_isr;
2034 oup->wlan_cleanup = wilc_wlan_cleanup;
2035 oup->wlan_cfg_set = wilc_wlan_cfg_set;
2036 oup->wlan_cfg_get = wilc_wlan_cfg_get;
2037 oup->wlan_cfg_get_value = wilc_wlan_cfg_get_val;
2038
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002039 oup->wlan_add_mgmt_to_tx_que = wilc_wlan_txq_add_mgmt_pkt;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002040
2041 if (!init_chip()) {
2042 /* EIO 5 */
2043 ret = -5;
2044 goto _fail_;
2045 }
2046#ifdef TCP_ACK_FILTER
2047 Init_TCP_tracking();
2048#endif
2049
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002050 return 1;
2051
2052_fail_:
2053
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002054 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002055 kfree(g_wlan.rx_buffer);
2056 g_wlan.rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002057 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002058 kfree(g_wlan.tx_buffer);
2059 g_wlan.tx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002060
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002061 return ret;
2062
2063}
2064
Dean Lee72ed4dc2015-06-12 14:11:44 +09002065u16 Set_machw_change_vir_if(bool bValue)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002066{
Chaehyun Limd85f5322015-06-11 14:35:54 +09002067 u16 ret;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09002068 u32 reg;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002069
2070 /*Reset WILC_CHANGING_VIR_IF register to allow adding futrue keys to CE H/W*/
Glen Lee187f1ef2015-09-24 18:15:01 +09002071 mutex_lock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002072 ret = (&g_wlan)->hif_func.hif_read_reg(WILC_CHANGING_VIR_IF, &reg);
2073 if (!ret) {
2074 PRINT_ER("Error while Reading reg WILC_CHANGING_VIR_IF\n");
2075 }
2076
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302077 if (bValue)
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002078 reg |= BIT(31);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302079 else
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002080 reg &= ~BIT(31);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002081
2082 ret = (&g_wlan)->hif_func.hif_write_reg(WILC_CHANGING_VIR_IF, reg);
2083
2084 if (!ret) {
2085 PRINT_ER("Error while writing reg WILC_CHANGING_VIR_IF\n");
2086 }
Glen Lee187f1ef2015-09-24 18:15:01 +09002087 mutex_unlock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002088
2089 return ret;
2090}