blob: 747374291bdd9bf14e99f33de7bd7787b30c6924 [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 +090021u32 wilc_get_chipid(u8 update);
Dean Lee72ed4dc2015-06-12 14:11:44 +090022u16 Set_machw_change_vir_if(bool bValue);
Johnny Kimc5c77ba2015-05-11 14:30:56 +090023
Johnny Kimc5c77ba2015-05-11 14:30:56 +090024
25
26typedef struct {
27 int quit;
28
29 /**
30 * input interface functions
31 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090032 wilc_wlan_io_func_t io_func;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090033
34 /**
35 * host interface functions
36 **/
37 wilc_hif_func_t hif_func;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090038
39 /**
40 * configuration interface functions
41 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090042 int cfg_frame_in_use;
43 wilc_cfg_frame_t cfg_frame;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090044 u32 cfg_frame_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090045 int cfg_seq_no;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090046
47 /**
48 * RX buffer
49 **/
50 #ifdef MEMORY_STATIC
Chaehyun Lim51e825f2015-09-15 14:06:14 +090051 u8 *rx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090052 u32 rx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090053 #endif
54 /**
55 * TX buffer
56 **/
Chaehyun Lim51e825f2015-09-15 14:06:14 +090057 u8 *tx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090058 u32 tx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090059
60 /**
61 * TX queue
62 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090063
Johnny Kimc5c77ba2015-05-11 14:30:56 +090064 unsigned long txq_spinlock_flags;
65
66 struct txq_entry_t *txq_head;
67 struct txq_entry_t *txq_tail;
68 int txq_entries;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090069 int txq_exit;
70
71 /**
72 * RX queue
73 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +090074 struct rxq_entry_t *rxq_head;
75 struct rxq_entry_t *rxq_tail;
76 int rxq_entries;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090077 int rxq_exit;
78
79
80} wilc_wlan_dev_t;
81
82static wilc_wlan_dev_t g_wlan;
83
Chaehyun Lim9af382b2015-09-16 20:11:27 +090084static inline void chip_allow_sleep(void);
85static inline void chip_wakeup(void);
Johnny Kimc5c77ba2015-05-11 14:30:56 +090086/********************************************
87 *
88 * Debug
89 *
90 ********************************************/
91
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090092static u32 dbgflag = N_INIT | N_ERR | N_INTR | N_TXQ | N_RXQ;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090093
Chaehyun Limfbc2fe12015-09-15 14:06:16 +090094static void wilc_debug(u32 flag, char *fmt, ...)
Johnny Kimc5c77ba2015-05-11 14:30:56 +090095{
96 char buf[256];
97 va_list args;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090098
99 if (flag & dbgflag) {
100 va_start(args, fmt);
Hari Prasath Gujulan Elango81053222015-06-22 13:13:58 +0000101 vsprintf(buf, fmt, args);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900102 va_end(args);
103
Glen Leeef2b7842015-09-24 18:14:55 +0900104 linux_wlan_dbg(buf);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900105 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900106}
107
108static CHIP_PS_STATE_T genuChipPSstate = CHIP_WAKEDUP;
109
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900110/*acquire_bus() and release_bus() are made static inline functions*/
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900111/*as a temporary workaround to fix a problem of receiving*/
112/*unknown interrupt from FW*/
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900113static inline void acquire_bus(BUS_ACQUIRE_T acquire)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900114{
115
Glen Lee187f1ef2015-09-24 18:15:01 +0900116 mutex_lock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900117 #ifndef WILC_OPTIMIZE_SLEEP_INT
118 if (genuChipPSstate != CHIP_WAKEDUP)
119 #endif
120 {
121 if (acquire == ACQUIRE_AND_WAKEUP)
122 chip_wakeup();
123 }
124
125}
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900126static inline void release_bus(BUS_RELEASE_T release)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900127{
128 #ifdef WILC_OPTIMIZE_SLEEP_INT
129 if (release == RELEASE_ALLOW_SLEEP)
130 chip_allow_sleep();
131 #endif
Glen Lee187f1ef2015-09-24 18:15:01 +0900132 mutex_unlock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900133}
134/********************************************
135 *
136 * Queue
137 *
138 ********************************************/
139
140static void wilc_wlan_txq_remove(struct txq_entry_t *tqe)
141{
142
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530143 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900144 if (tqe == p->txq_head) {
145
146 p->txq_head = tqe->next;
147 if (p->txq_head)
148 p->txq_head->prev = NULL;
149
150
151 } else if (tqe == p->txq_tail) {
152 p->txq_tail = (tqe->prev);
153 if (p->txq_tail)
154 p->txq_tail->next = NULL;
155 } else {
156 tqe->prev->next = tqe->next;
157 tqe->next->prev = tqe->prev;
158 }
159 p->txq_entries -= 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900160
161}
162
163static struct txq_entry_t *wilc_wlan_txq_remove_from_head(void)
164{
165 struct txq_entry_t *tqe;
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530166 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900167 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900168
Glen Lee85e57562015-09-24 18:14:56 +0900169 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900170 if (p->txq_head) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900171 tqe = p->txq_head;
172 p->txq_head = tqe->next;
Alison Schofield39823a52015-10-08 21:18:03 -0700173 if (p->txq_head)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900174 p->txq_head->prev = NULL;
Alison Schofield39823a52015-10-08 21:18:03 -0700175
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900176 p->txq_entries -= 1;
177
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900178
179
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900180
181 } else {
182 tqe = NULL;
183 }
Glen Lee85e57562015-09-24 18:14:56 +0900184 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900185 return tqe;
186}
187
188static void wilc_wlan_txq_add_to_tail(struct txq_entry_t *tqe)
189{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530190 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900191 unsigned long flags;
Glen Lee85e57562015-09-24 18:14:56 +0900192 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900193
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900194 if (p->txq_head == NULL) {
195 tqe->next = NULL;
196 tqe->prev = NULL;
197 p->txq_head = tqe;
198 p->txq_tail = tqe;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900199 } else {
200 tqe->next = NULL;
201 tqe->prev = p->txq_tail;
202 p->txq_tail->next = tqe;
203 p->txq_tail = tqe;
204 }
205 p->txq_entries += 1;
206 PRINT_D(TX_DBG, "Number of entries in TxQ = %d\n", p->txq_entries);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900207
Glen Lee85e57562015-09-24 18:14:56 +0900208 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900209
210 /**
211 * wake up TX queue
212 **/
213 PRINT_D(TX_DBG, "Wake the txq_handling\n");
214
Glen Lee5cd63632015-09-24 18:14:58 +0900215 up(&g_linux_wlan->txq_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900216}
217
218static int wilc_wlan_txq_add_to_head(struct txq_entry_t *tqe)
219{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530220 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900221 unsigned long flags;
Glen Leeb002e202015-09-24 18:15:05 +0900222 if (linux_wlan_lock_timeout(&g_linux_wlan->txq_add_to_head_cs,
223 CFG_PKTS_TIMEOUT))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900224 return -1;
225
Glen Lee85e57562015-09-24 18:14:56 +0900226 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900227
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900228 if (p->txq_head == NULL) {
229 tqe->next = NULL;
230 tqe->prev = NULL;
231 p->txq_head = tqe;
232 p->txq_tail = tqe;
233 } else {
234 tqe->next = p->txq_head;
235 tqe->prev = NULL;
236 p->txq_head->prev = tqe;
237 p->txq_head = tqe;
238 }
239 p->txq_entries += 1;
240 PRINT_D(TX_DBG, "Number of entries in TxQ = %d\n", p->txq_entries);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900241
Glen Lee85e57562015-09-24 18:14:56 +0900242 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Glen Leed5a63a82015-09-24 18:15:00 +0900243 up(&g_linux_wlan->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900244
245
246 /**
247 * wake up TX queue
248 **/
Glen Lee5cd63632015-09-24 18:14:58 +0900249 up(&g_linux_wlan->txq_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900250 PRINT_D(TX_DBG, "Wake up the txq_handler\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900251
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900252 return 0;
253
254}
255
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900256u32 Statisitcs_totalAcks = 0, Statisitcs_DroppedAcks = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900257
258#ifdef TCP_ACK_FILTER
259struct Ack_session_info;
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530260struct Ack_session_info {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900261 u32 Ack_seq_num;
262 u32 Bigger_Ack_num;
Chaehyun Limec53adf2015-09-15 14:06:15 +0900263 u16 src_port;
264 u16 dst_port;
265 u16 status;
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530266};
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900267
268typedef struct {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900269 u32 ack_num;
270 u32 Session_index;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900271 struct txq_entry_t *txqe;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900272} Pending_Acks_info_t /*Ack_info_t*/;
273
274
275
276
277struct Ack_session_info *Free_head;
278struct Ack_session_info *Alloc_head;
279
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900280#define NOT_TCP_ACK (-1)
281
282#define MAX_TCP_SESSION 25
283#define MAX_PENDING_ACKS 256
Shraddha Barkeeeb1c062015-08-05 01:29:22 +0530284struct Ack_session_info Acks_keep_track_info[2 * MAX_TCP_SESSION];
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900285Pending_Acks_info_t Pending_Acks_info[MAX_PENDING_ACKS];
286
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900287u32 PendingAcks_arrBase;
288u32 Opened_TCP_session;
289u32 Pending_Acks;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900290
291
292
Chaehyun Limfed16f22015-09-17 16:48:43 +0900293static inline int Init_TCP_tracking(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900294{
295
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900296 return 0;
297
298}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900299static inline int add_TCP_track_session(u32 src_prt, u32 dst_prt, u32 seq)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900300{
301 Acks_keep_track_info[Opened_TCP_session].Ack_seq_num = seq;
302 Acks_keep_track_info[Opened_TCP_session].Bigger_Ack_num = 0;
303 Acks_keep_track_info[Opened_TCP_session].src_port = src_prt;
304 Acks_keep_track_info[Opened_TCP_session].dst_port = dst_prt;
305 Opened_TCP_session++;
306
307 PRINT_D(TCP_ENH, "TCP Session %d to Ack %d\n", Opened_TCP_session, seq);
308 return 0;
309}
310
Chaehyun Limfed16f22015-09-17 16:48:43 +0900311static inline int Update_TCP_track_session(u32 index, u32 Ack)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900312{
313
Alison Schofield39823a52015-10-08 21:18:03 -0700314 if (Ack > Acks_keep_track_info[index].Bigger_Ack_num)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900315 Acks_keep_track_info[index].Bigger_Ack_num = Ack;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900316 return 0;
317
318}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900319static inline int add_TCP_Pending_Ack(u32 Ack, u32 Session_index, struct txq_entry_t *txqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900320{
321 Statisitcs_totalAcks++;
322 if (Pending_Acks < MAX_PENDING_ACKS) {
323 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].ack_num = Ack;
324 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].txqe = txqe;
325 Pending_Acks_info[PendingAcks_arrBase + Pending_Acks].Session_index = Session_index;
326 txqe->tcp_PendingAck_index = PendingAcks_arrBase + Pending_Acks;
327 Pending_Acks++;
328
329 } else {
330
331 }
332 return 0;
333}
Chaehyun Limfed16f22015-09-17 16:48:43 +0900334static inline int remove_TCP_related(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900335{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530336 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900337 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900338
Glen Lee85e57562015-09-24 18:14:56 +0900339 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900340
Glen Lee85e57562015-09-24 18:14:56 +0900341 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900342 return 0;
343}
344
Chaehyun Limfed16f22015-09-17 16:48:43 +0900345static inline int tcp_process(struct txq_entry_t *tqe)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900346{
347 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900348 u8 *eth_hdr_ptr;
349 u8 *buffer = tqe->buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900350 unsigned short h_proto;
351 int i;
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530352 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900353 unsigned long flags;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900354
Glen Lee85e57562015-09-24 18:14:56 +0900355 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900356
357 eth_hdr_ptr = &buffer[0];
358 h_proto = ntohs(*((unsigned short *)&eth_hdr_ptr[12]));
359 if (h_proto == 0x0800) { /* IP */
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900360 u8 *ip_hdr_ptr;
361 u8 protocol;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900362
363 ip_hdr_ptr = &buffer[ETHERNET_HDR_LEN];
364 protocol = ip_hdr_ptr[9];
365
366
367 if (protocol == 0x06) {
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900368 u8 *tcp_hdr_ptr;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900369 u32 IHL, Total_Length, Data_offset;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900370
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900371 tcp_hdr_ptr = &ip_hdr_ptr[IP_HDR_LEN];
372 IHL = (ip_hdr_ptr[0] & 0xf) << 2;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900373 Total_Length = (((u32)ip_hdr_ptr[2]) << 8) + ((u32)ip_hdr_ptr[3]);
374 Data_offset = (((u32)tcp_hdr_ptr[12] & 0xf0) >> 2);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900375 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 +0900376 u32 seq_no, Ack_no;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900377
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900378 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 +0900379
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900380 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 +0900381
382
383 for (i = 0; i < Opened_TCP_session; i++) {
384 if (Acks_keep_track_info[i].Ack_seq_num == seq_no) {
385 Update_TCP_track_session(i, Ack_no);
386 break;
387 }
388 }
Alison Schofield39823a52015-10-08 21:18:03 -0700389 if (i == Opened_TCP_session)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900390 add_TCP_track_session(0, 0, seq_no);
Alison Schofield39823a52015-10-08 21:18:03 -0700391
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900392 add_TCP_Pending_Ack(Ack_no, i, tqe);
393
394
395 }
396
397 } else {
398 ret = 0;
399 }
400 } else {
401 ret = 0;
402 }
Glen Lee85e57562015-09-24 18:14:56 +0900403 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900404 return ret;
405}
406
407
Glen Leec029e992015-10-27 18:27:48 +0900408static int wilc_wlan_txq_filter_dup_tcp_ack(struct net_device *dev)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900409{
Glen Leec029e992015-10-27 18:27:48 +0900410 perInterface_wlan_t *nic;
411 struct wilc *wilc;
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 Leec029e992015-10-27 18:27:48 +0900416 nic = netdev_priv(dev);
417 wilc = nic->wilc;
418
419 spin_lock_irqsave(&wilc->txq_spinlock, p->txq_spinlock_flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900420 for (i = PendingAcks_arrBase; i < (PendingAcks_arrBase + Pending_Acks); i++) {
421 if (Pending_Acks_info[i].ack_num < Acks_keep_track_info[Pending_Acks_info[i].Session_index].Bigger_Ack_num) {
422 struct txq_entry_t *tqe;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900423
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530424 PRINT_D(TCP_ENH, "DROP ACK: %u\n", Pending_Acks_info[i].ack_num);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900425 tqe = Pending_Acks_info[i].txqe;
426 if (tqe) {
427 wilc_wlan_txq_remove(tqe);
428 Statisitcs_DroppedAcks++;
429 tqe->status = 1; /* mark the packet send */
430 if (tqe->tx_complete_func)
431 tqe->tx_complete_func(tqe->priv, tqe->status);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -0700432 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900433 Dropped++;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900434 }
435 }
436 }
437 Pending_Acks = 0;
438 Opened_TCP_session = 0;
439
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530440 if (PendingAcks_arrBase == 0)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900441 PendingAcks_arrBase = MAX_TCP_SESSION;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +0530442 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900443 PendingAcks_arrBase = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900444
445
Glen Leec029e992015-10-27 18:27:48 +0900446 spin_unlock_irqrestore(&wilc->txq_spinlock, 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 Leec029e992015-10-27 18:27:48 +0900450 linux_wlan_lock_timeout(&wilc->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{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530472 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900473 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
Glen Lee8fc84a62015-10-01 16:03:35 +0900506int wilc_wlan_txq_add_net_pkt(void *priv, u8 *buffer, u32 buffer_size,
507 wilc_tx_complete_func_t func)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900508{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530509 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900510 struct txq_entry_t *tqe;
511
512 if (p->quit)
513 return 0;
514
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700515 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_ATOMIC);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900516
517 if (tqe == NULL)
518 return 0;
519 tqe->type = WILC_NET_PKT;
520 tqe->buffer = buffer;
521 tqe->buffer_size = buffer_size;
522 tqe->tx_complete_func = func;
523 tqe->priv = priv;
524
525 PRINT_D(TX_DBG, "Adding mgmt packet at the Queue tail\n");
526#ifdef TCP_ACK_FILTER
527 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
Abdul Hussain5a66bf22015-06-16 09:44:06 +0000528 if (is_TCP_ACK_Filter_Enabled())
Glen Lee25a84832015-09-16 18:53:22 +0900529 tcp_process(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900530#endif
531 wilc_wlan_txq_add_to_tail(tqe);
532 /*return number of itemes in the queue*/
533 return p->txq_entries;
534}
Glen Leefcc6ef92015-09-16 18:53:21 +0900535
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900536int 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 +0900537{
538
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530539 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900540 struct txq_entry_t *tqe;
541
542 if (p->quit)
543 return 0;
544
Greg Kroah-Hartman47c632d2015-09-03 18:55:43 -0700545 tqe = kmalloc(sizeof(struct txq_entry_t), GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900546
547 if (tqe == NULL)
548 return 0;
549 tqe->type = WILC_MGMT_PKT;
550 tqe->buffer = buffer;
551 tqe->buffer_size = buffer_size;
552 tqe->tx_complete_func = func;
553 tqe->priv = priv;
554#ifdef TCP_ACK_FILTER
555 tqe->tcp_PendingAck_index = NOT_TCP_ACK;
556#endif
557 PRINT_D(TX_DBG, "Adding Network packet at the Queue tail\n");
558 wilc_wlan_txq_add_to_tail(tqe);
559 return 1;
560}
Glen Leefcc6ef92015-09-16 18:53:21 +0900561
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900562static struct txq_entry_t *wilc_wlan_txq_get_first(void)
563{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530564 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900565 struct txq_entry_t *tqe;
566 unsigned long flags;
567
Glen Lee85e57562015-09-24 18:14:56 +0900568 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900569
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900570 tqe = p->txq_head;
571
Glen Lee85e57562015-09-24 18:14:56 +0900572 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900573
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900574
575 return tqe;
576}
577
578static struct txq_entry_t *wilc_wlan_txq_get_next(struct txq_entry_t *tqe)
579{
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900580 unsigned long flags;
Glen Lee85e57562015-09-24 18:14:56 +0900581 spin_lock_irqsave(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900582
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900583 tqe = tqe->next;
Glen Lee85e57562015-09-24 18:14:56 +0900584 spin_unlock_irqrestore(&g_linux_wlan->txq_spinlock, flags);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900585
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900586
587 return tqe;
588}
589
590static int wilc_wlan_rxq_add(struct rxq_entry_t *rqe)
591{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530592 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900593
594 if (p->quit)
595 return 0;
596
Glen Lee645db602015-09-24 18:14:57 +0900597 mutex_lock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900598 if (p->rxq_head == NULL) {
599 PRINT_D(RX_DBG, "Add to Queue head\n");
600 rqe->next = NULL;
601 p->rxq_head = rqe;
602 p->rxq_tail = rqe;
603 } else {
604 PRINT_D(RX_DBG, "Add to Queue tail\n");
605 p->rxq_tail->next = rqe;
606 rqe->next = NULL;
607 p->rxq_tail = rqe;
608 }
609 p->rxq_entries += 1;
610 PRINT_D(RX_DBG, "Number of queue entries: %d\n", p->rxq_entries);
Glen Lee645db602015-09-24 18:14:57 +0900611 mutex_unlock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900612 return p->rxq_entries;
613}
614
615static struct rxq_entry_t *wilc_wlan_rxq_remove(void)
616{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +0530617 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900618
619 PRINT_D(RX_DBG, "Getting rxQ element\n");
620 if (p->rxq_head) {
621 struct rxq_entry_t *rqe;
622
Glen Lee645db602015-09-24 18:14:57 +0900623 mutex_lock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900624 rqe = p->rxq_head;
625 p->rxq_head = p->rxq_head->next;
626 p->rxq_entries -= 1;
627 PRINT_D(RX_DBG, "RXQ entries decreased\n");
Glen Lee645db602015-09-24 18:14:57 +0900628 mutex_unlock(&g_linux_wlan->rxq_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900629 return rqe;
630 }
631 PRINT_D(RX_DBG, "Nothing to get from Q\n");
632 return NULL;
633}
634
635
636/********************************************
637 *
638 * Power Save handle functions
639 *
640 ********************************************/
641
642
643
644#ifdef WILC_OPTIMIZE_SLEEP_INT
645
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900646static inline void chip_allow_sleep(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900647{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900648 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900649
650 /* Clear bit 1 */
651 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
652
Anish Bhattffda2032015-09-29 12:15:49 -0700653 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900654}
655
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900656static inline void chip_wakeup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900657{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900658 u32 reg, clk_status_reg, trials = 0;
659 u32 sleep_time;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900660
661 if ((g_wlan.io_func.io_type & 0x1) == HIF_SPI) {
662 do {
663 g_wlan.hif_func.hif_read_reg(1, &reg);
664 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700665 g_wlan.hif_func.hif_write_reg(1, reg | BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900666
667 /* Clear bit 1*/
Anish Bhattffda2032015-09-29 12:15:49 -0700668 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900669
670 do {
671 /* Wait for the chip to stabilize*/
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -0700672 usleep_range(2 * 1000, 2 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900673 /* Make sure chip is awake. This is an extra step that can be removed */
674 /* later to avoid the bus access overhead */
Alison Schofield39823a52015-10-08 21:18:03 -0700675 if ((wilc_get_chipid(true) == 0))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900676 wilc_debug(N_ERR, "Couldn't read chip id. Wake up failed\n");
Alison Schofield39823a52015-10-08 21:18:03 -0700677
Dean Lee72ed4dc2015-06-12 14:11:44 +0900678 } while ((wilc_get_chipid(true) == 0) && ((++trials % 3) == 0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900679
Dean Lee72ed4dc2015-06-12 14:11:44 +0900680 } while (wilc_get_chipid(true) == 0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900681 } else if ((g_wlan.io_func.io_type & 0x1) == HIF_SDIO) {
682 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
683 do {
684 /* Set bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700685 g_wlan.hif_func.hif_write_reg(0xf0, reg | BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900686
687 /* Check the clock status */
688 g_wlan.hif_func.hif_read_reg(0xf1, &clk_status_reg);
689
690 /* in case of clocks off, wait 2ms, and check it again. */
691 /* if still off, wait for another 2ms, for a total wait of 6ms. */
692 /* If still off, redo the wake up sequence */
693 while (((clk_status_reg & 0x1) == 0) && (((++trials) % 3) == 0)) {
694 /* Wait for the chip to stabilize*/
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -0700695 usleep_range(2 * 1000, 2 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900696
697 /* Make sure chip is awake. This is an extra step that can be removed */
698 /* later to avoid the bus access overhead */
699 g_wlan.hif_func.hif_read_reg(0xf1, &clk_status_reg);
700
Alison Schofield39823a52015-10-08 21:18:03 -0700701 if ((clk_status_reg & 0x1) == 0)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900702 wilc_debug(N_ERR, "clocks still OFF. Wake up failed\n");
Alison Schofield39823a52015-10-08 21:18:03 -0700703
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900704 }
705 /* in case of failure, Reset the wakeup bit to introduce a new edge on the next loop */
706 if ((clk_status_reg & 0x1) == 0) {
707 /* Reset bit 0 */
Anish Bhattffda2032015-09-29 12:15:49 -0700708 g_wlan.hif_func.hif_write_reg(0xf0, reg &
709 (~BIT(0)));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900710 }
711 } while ((clk_status_reg & 0x1) == 0);
712 }
713
714
715 if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
716 g_wlan.hif_func.hif_read_reg(0x1C0C, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700717 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900718 g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
719
Dean Lee72ed4dc2015-06-12 14:11:44 +0900720 if (wilc_get_chipid(false) >= 0x1002b0) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900721 /* Enable PALDO back right after wakeup */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900722 u32 val32;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900723
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900724 g_wlan.hif_func.hif_read_reg(0x1e1c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700725 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900726 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
727
728 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700729 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900730 g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
731 }
732 }
733 genuChipPSstate = CHIP_WAKEDUP;
734}
735#else
Chaehyun Lim9af382b2015-09-16 20:11:27 +0900736static inline void chip_wakeup(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900737{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900738 u32 reg, trials = 0;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900739
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900740 do {
741 if ((g_wlan.io_func.io_type & 0x1) == HIF_SPI) {
742 g_wlan.hif_func.hif_read_reg(1, &reg);
743 /* Make sure bit 1 is 0 before we start. */
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 /* Set 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 /* Clear bit 1*/
Anish Bhattffda2032015-09-29 12:15:49 -0700748 g_wlan.hif_func.hif_write_reg(1, reg & ~BIT(1));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900749 } else if ((g_wlan.io_func.io_type & 0x1) == HIF_SDIO) {
750 /* Make sure bit 0 is 0 before we start. */
751 g_wlan.hif_func.hif_read_reg(0xf0, &reg);
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 /* Set 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 /* Clear bit 1 */
Anish Bhattffda2032015-09-29 12:15:49 -0700756 g_wlan.hif_func.hif_write_reg(0xf0, reg & ~BIT(0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900757 }
758
759 do {
760 /* Wait for the chip to stabilize*/
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900761 mdelay(3);
762
763 /* Make sure chip is awake. This is an extra step that can be removed */
764 /* later to avoid the bus access overhead */
Alison Schofield39823a52015-10-08 21:18:03 -0700765 if ((wilc_get_chipid(true) == 0))
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900766 wilc_debug(N_ERR, "Couldn't read chip id. Wake up failed\n");
Alison Schofield39823a52015-10-08 21:18:03 -0700767
Dean Lee72ed4dc2015-06-12 14:11:44 +0900768 } while ((wilc_get_chipid(true) == 0) && ((++trials % 3) == 0));
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900769
Dean Lee72ed4dc2015-06-12 14:11:44 +0900770 } while (wilc_get_chipid(true) == 0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900771
772 if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
773 g_wlan.hif_func.hif_read_reg(0x1C0C, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -0700774 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900775 g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
776
Dean Lee72ed4dc2015-06-12 14:11:44 +0900777 if (wilc_get_chipid(false) >= 0x1002b0) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900778 /* Enable PALDO back right after wakeup */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900779 u32 val32;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900780
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900781 g_wlan.hif_func.hif_read_reg(0x1e1c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700782 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900783 g_wlan.hif_func.hif_write_reg(0x1e1c, val32);
784
785 g_wlan.hif_func.hif_read_reg(0x1e9c, &val32);
Anish Bhattffda2032015-09-29 12:15:49 -0700786 val32 |= BIT(6);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900787 g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
788 }
789 }
790 genuChipPSstate = CHIP_WAKEDUP;
791}
792#endif
Chaehyun Lim4e4467f2015-06-11 14:35:55 +0900793void chip_sleep_manually(u32 u32SleepTime)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900794{
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900795 if (genuChipPSstate != CHIP_WAKEDUP) {
796 /* chip is already sleeping. Do nothing */
797 return;
798 }
799 acquire_bus(ACQUIRE_ONLY);
800
801#ifdef WILC_OPTIMIZE_SLEEP_INT
802 chip_allow_sleep();
803#endif
804
805 /* Trigger the manual sleep interrupt */
806 g_wlan.hif_func.hif_write_reg(0x10a8, 1);
807
808 genuChipPSstate = CHIP_SLEEPING_MANUAL;
809 release_bus(RELEASE_ONLY);
810
811}
812
813
814/********************************************
815 *
816 * Tx, Rx queue handle functions
817 *
818 ********************************************/
Glen Leea1332ca2015-10-27 18:27:47 +0900819int wilc_wlan_handle_txq(struct net_device *dev, u32 *pu32TxqCount)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900820{
821 wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
822 int i, entries = 0;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900823 u32 sum;
824 u32 reg;
Chaehyun Lim51e825f2015-09-15 14:06:14 +0900825 u8 *txb = p->tx_buffer;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900826 u32 offset = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900827 int vmm_sz = 0;
828 struct txq_entry_t *tqe;
829 int ret = 0;
830 int counter;
831 int timeout;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +0900832 u32 vmm_table[WILC_VMM_TBL_SIZE];
Glen Leea1332ca2015-10-27 18:27:47 +0900833 perInterface_wlan_t *nic;
834 struct wilc *wilc;
835
836 nic = netdev_priv(dev);
837 wilc = nic->wilc;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +0900838
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900839 p->txq_exit = 0;
840 do {
841 if (p->quit)
842 break;
843
Glen Leea1332ca2015-10-27 18:27:47 +0900844 linux_wlan_lock_timeout(&wilc->txq_add_to_head_cs,
Glen Leeb002e202015-09-24 18:15:05 +0900845 CFG_PKTS_TIMEOUT);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900846#ifdef TCP_ACK_FILTER
Glen Leec029e992015-10-27 18:27:48 +0900847 wilc_wlan_txq_filter_dup_tcp_ack(dev);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900848#endif
849 /**
850 * build the vmm list
851 **/
852 PRINT_D(TX_DBG, "Getting the head of the TxQ\n");
853 tqe = wilc_wlan_txq_get_first();
854 i = 0;
855 sum = 0;
856 do {
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900857 if ((tqe != NULL) && (i < (WILC_VMM_TBL_SIZE - 1)) /* reserve last entry to 0 */) {
858
Alison Schofield39823a52015-10-08 21:18:03 -0700859 if (tqe->type == WILC_CFG_PKT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900860 vmm_sz = ETH_CONFIG_PKT_HDR_OFFSET;
Alison Schofield39823a52015-10-08 21:18:03 -0700861
862 else if (tqe->type == WILC_NET_PKT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900863 vmm_sz = ETH_ETHERNET_HDR_OFFSET;
Alison Schofield39823a52015-10-08 21:18:03 -0700864
865 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900866 vmm_sz = HOST_HDR_OFFSET;
Alison Schofield39823a52015-10-08 21:18:03 -0700867
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900868 vmm_sz += tqe->buffer_size;
869 PRINT_D(TX_DBG, "VMM Size before alignment = %d\n", vmm_sz);
870 if (vmm_sz & 0x3) { /* has to be word aligned */
871 vmm_sz = (vmm_sz + 4) & ~0x3;
872 }
Alison Schofield39823a52015-10-08 21:18:03 -0700873 if ((sum + vmm_sz) > LINUX_TX_SIZE)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900874 break;
Alison Schofield39823a52015-10-08 21:18:03 -0700875
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900876 PRINT_D(TX_DBG, "VMM Size AFTER alignment = %d\n", vmm_sz);
877 vmm_table[i] = vmm_sz / 4; /* table take the word size */
878 PRINT_D(TX_DBG, "VMMTable entry size = %d\n", vmm_table[i]);
879
880 if (tqe->type == WILC_CFG_PKT) {
Anish Bhattffda2032015-09-29 12:15:49 -0700881 vmm_table[i] |= BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900882 PRINT_D(TX_DBG, "VMMTable entry changed for CFG packet = %d\n", vmm_table[i]);
883 }
884#ifdef BIG_ENDIAN
885 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
886#endif
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900887
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900888 i++;
889 sum += vmm_sz;
890 PRINT_D(TX_DBG, "sum = %d\n", sum);
891 tqe = wilc_wlan_txq_get_next(tqe);
892 } else {
893 break;
894 }
895 } while (1);
896
897 if (i == 0) { /* nothing in the queue */
898 PRINT_D(TX_DBG, "Nothing in TX-Q\n");
899 break;
900 } else {
901 PRINT_D(TX_DBG, "Mark the last entry in VMM table - number of previous entries = %d\n", i);
902 vmm_table[i] = 0x0; /* mark the last element to 0 */
903 }
904 acquire_bus(ACQUIRE_AND_WAKEUP);
905 counter = 0;
906 do {
907
908 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
909 if (!ret) {
910 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg vmm_tbl_entry..\n");
911 break;
912 }
913
914 if ((reg & 0x1) == 0) {
915 /**
916 * write to vmm table
917 **/
918 PRINT_D(TX_DBG, "Writing VMM table ... with Size = %d\n", ((i + 1) * 4));
919 break;
920 } else {
921 counter++;
922 if (counter > 200) {
923 counter = 0;
924 PRINT_D(TX_DBG, "Looping in tx ctrl , forcce quit\n");
925 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, 0);
926 break;
927 }
928 /**
929 * wait for vmm table is ready
930 **/
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530931 PRINT_WRN(GENERIC_DBG, "[wilc txq]: warn, vmm table not clear yet, wait...\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900932 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700933 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900934 acquire_bus(ACQUIRE_AND_WAKEUP);
935 }
936 } while (!p->quit);
937
Alison Schofield39823a52015-10-08 21:18:03 -0700938 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900939 goto _end_;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900940
941 timeout = 200;
942 do {
943
944 /**
945 * write to vmm table
946 **/
Chaehyun Limc3ca6372015-09-20 15:51:19 +0900947 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 +0900948 if (!ret) {
949 wilc_debug(N_ERR, "ERR block TX of VMM table.\n");
950 break;
951 }
952
953
954 /**
955 * interrupt firmware
956 **/
957 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x2);
958 if (!ret) {
959 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg host_vmm_ctl..\n");
960 break;
961 }
962
963 /**
964 * wait for confirm...
965 **/
966
967 do {
968 ret = p->hif_func.hif_read_reg(WILC_HOST_VMM_CTL, &reg);
969 if (!ret) {
970 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg host_vmm_ctl..\n");
971 break;
972 }
973 if ((reg >> 2) & 0x1) {
974 /**
975 * Get the entries
976 **/
977 entries = ((reg >> 3) & 0x3f);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900978 break;
979 } else {
980 release_bus(RELEASE_ALLOW_SLEEP);
Greg Kroah-Hartman2b922cb2015-09-04 09:30:51 -0700981 usleep_range(3000, 3000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900982 acquire_bus(ACQUIRE_AND_WAKEUP);
983 PRINT_WRN(GENERIC_DBG, "Can't get VMM entery - reg = %2x\n", reg);
984 }
985 } while (--timeout);
986 if (timeout <= 0) {
987 ret = p->hif_func.hif_write_reg(WILC_HOST_VMM_CTL, 0x0);
988 break;
989 }
990
Alison Schofield39823a52015-10-08 21:18:03 -0700991 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900992 break;
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900993
994 if (entries == 0) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +0530995 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 +0900996
997 /* undo the transaction. */
998 ret = p->hif_func.hif_read_reg(WILC_HOST_TX_CTRL, &reg);
999 if (!ret) {
1000 wilc_debug(N_ERR, "[wilc txq]: fail can't read reg WILC_HOST_TX_CTRL..\n");
1001 break;
1002 }
Anish Bhattffda2032015-09-29 12:15:49 -07001003 reg &= ~BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001004 ret = p->hif_func.hif_write_reg(WILC_HOST_TX_CTRL, reg);
1005 if (!ret) {
1006 wilc_debug(N_ERR, "[wilc txq]: fail can't write reg WILC_HOST_TX_CTRL..\n");
1007 break;
1008 }
1009 break;
1010 } else {
1011 break;
1012 }
1013 } while (1);
1014
Alison Schofield39823a52015-10-08 21:18:03 -07001015 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001016 goto _end_;
Alison Schofield39823a52015-10-08 21:18:03 -07001017
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001018 if (entries == 0) {
1019 ret = WILC_TX_ERR_NO_BUF;
1020 goto _end_;
1021 }
1022
1023 /* since copying data into txb takes some time, then
1024 * allow the bus lock to be released let the RX task go. */
1025 release_bus(RELEASE_ALLOW_SLEEP);
1026
1027 /**
1028 * Copy data to the TX buffer
1029 **/
1030 offset = 0;
1031 i = 0;
1032 do {
1033 tqe = wilc_wlan_txq_remove_from_head();
1034 if (tqe != NULL && (vmm_table[i] != 0)) {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001035 u32 header, buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001036
1037#ifdef BIG_ENDIAN
1038 vmm_table[i] = BYTE_SWAP(vmm_table[i]);
1039#endif
1040 vmm_sz = (vmm_table[i] & 0x3ff); /* in word unit */
1041 vmm_sz *= 4;
1042 header = (tqe->type << 31) | (tqe->buffer_size << 15) | vmm_sz;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301043 if (tqe->type == WILC_MGMT_PKT)
Anish Bhattffda2032015-09-29 12:15:49 -07001044 header |= BIT(30);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301045 else
Anish Bhattffda2032015-09-29 12:15:49 -07001046 header &= ~BIT(30);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001047
1048#ifdef BIG_ENDIAN
1049 header = BYTE_SWAP(header);
1050#endif
1051 memcpy(&txb[offset], &header, 4);
1052 if (tqe->type == WILC_CFG_PKT) {
1053 buffer_offset = ETH_CONFIG_PKT_HDR_OFFSET;
1054 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001055 else if (tqe->type == WILC_NET_PKT) {
1056 char *pBSSID = ((struct tx_complete_data *)(tqe->priv))->pBssid;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001057
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001058 buffer_offset = ETH_ETHERNET_HDR_OFFSET;
1059 /* copy the bssid at the sart of the buffer */
1060 memcpy(&txb[offset + 4], pBSSID, 6);
1061 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001062 else {
1063 buffer_offset = HOST_HDR_OFFSET;
1064 }
1065
1066 memcpy(&txb[offset + buffer_offset], tqe->buffer, tqe->buffer_size);
1067 offset += vmm_sz;
1068 i++;
1069 tqe->status = 1; /* mark the packet send */
1070 if (tqe->tx_complete_func)
1071 tqe->tx_complete_func(tqe->priv, tqe->status);
1072 #ifdef TCP_ACK_FILTER
Alison Schofield39823a52015-10-08 21:18:03 -07001073 if (tqe->tcp_PendingAck_index != NOT_TCP_ACK)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001074 Pending_Acks_info[tqe->tcp_PendingAck_index].txqe = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001075 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001076 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001077 } else {
1078 break;
1079 }
1080 } while (--entries);
1081
1082 /**
1083 * lock the bus
1084 **/
1085 acquire_bus(ACQUIRE_AND_WAKEUP);
1086
1087 ret = p->hif_func.hif_clear_int_ext(ENABLE_TX_VMM);
1088 if (!ret) {
1089 wilc_debug(N_ERR, "[wilc txq]: fail can't start tx VMM ...\n");
1090 goto _end_;
1091 }
1092
1093 /**
1094 * transfer
1095 **/
1096 ret = p->hif_func.hif_block_tx_ext(0, txb, offset);
1097 if (!ret) {
1098 wilc_debug(N_ERR, "[wilc txq]: fail can't block tx ext...\n");
1099 goto _end_;
1100 }
1101
1102_end_:
1103
1104 release_bus(RELEASE_ALLOW_SLEEP);
1105 if (ret != 1)
1106 break;
1107 } while (0);
Glen Leea1332ca2015-10-27 18:27:47 +09001108 up(&wilc->txq_add_to_head_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001109
1110 p->txq_exit = 1;
1111 PRINT_D(TX_DBG, "THREAD: Exiting txq\n");
1112 /* return tx[]q count */
1113 *pu32TxqCount = p->txq_entries;
1114 return ret;
1115}
1116
Glen Lee39ce4d32015-10-27 18:27:42 +09001117static void wilc_wlan_handle_rxq(struct wilc *wilc)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001118{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301119 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001120 int offset = 0, size, has_packet = 0;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001121 u8 *buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001122 struct rxq_entry_t *rqe;
1123
1124 p->rxq_exit = 0;
1125
1126
1127
1128
1129 do {
1130 if (p->quit) {
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301131 PRINT_D(RX_DBG, "exit 1st do-while due to Clean_UP function\n");
Glen Lee39ce4d32015-10-27 18:27:42 +09001132 up(&wilc->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001133 break;
1134 }
1135 rqe = wilc_wlan_rxq_remove();
1136 if (rqe == NULL) {
1137 PRINT_D(RX_DBG, "nothing in the queue - exit 1st do-while\n");
1138 break;
1139 }
1140 buffer = rqe->buffer;
1141 size = rqe->buffer_size;
1142 PRINT_D(RX_DBG, "rxQ entery Size = %d - Address = %p\n", size, buffer);
1143 offset = 0;
1144
1145
1146
1147 do {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001148 u32 header;
1149 u32 pkt_len, pkt_offset, tp_len;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001150 int is_cfg_packet;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001151
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001152 PRINT_D(RX_DBG, "In the 2nd do-while\n");
1153 memcpy(&header, &buffer[offset], 4);
1154#ifdef BIG_ENDIAN
1155 header = BYTE_SWAP(header);
1156#endif
1157 PRINT_D(RX_DBG, "Header = %04x - Offset = %d\n", header, offset);
1158
1159
1160
1161 is_cfg_packet = (header >> 31) & 0x1;
1162 pkt_offset = (header >> 22) & 0x1ff;
1163 tp_len = (header >> 11) & 0x7ff;
1164 pkt_len = header & 0x7ff;
1165
1166 if (pkt_len == 0 || tp_len == 0) {
1167 wilc_debug(N_RXQ, "[wilc rxq]: data corrupt, packet len or tp_len is 0 [%d][%d]\n", pkt_len, tp_len);
1168 break;
1169 }
1170
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
Glen Lee11f4b2e2015-10-27 18:27:51 +09001180 WILC_WFI_mgmt_rx(wilc, &buffer[offset + HOST_HDR_OFFSET], pkt_len);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001181 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001182 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001183 {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001184
1185 if (!is_cfg_packet) {
Glen Lee63611672015-09-24 18:14:52 +09001186 if (pkt_len > 0) {
1187 frmw_to_linux(&buffer[offset],
1188 pkt_len,
1189 pkt_offset);
1190 has_packet = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001191 }
1192 } else {
1193 wilc_cfg_rsp_t rsp;
1194
1195
1196
Glen Lee30f535a2015-10-02 14:22:10 +09001197 wilc_wlan_cfg_indicate_rx(&buffer[pkt_offset + offset], pkt_len, &rsp);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001198 if (rsp.type == WILC_CFG_RSP) {
1199 /**
1200 * wake up the waiting task...
1201 **/
1202 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 -07001203 if (p->cfg_seq_no == rsp.seq_no)
Glen Lee39ce4d32015-10-27 18:27:42 +09001204 up(&wilc->cfg_event);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001205 } else if (rsp.type == WILC_CFG_RSP_STATUS) {
1206 /**
1207 * Call back to indicate status...
1208 **/
Glen Lee64f2b712015-10-27 18:27:43 +09001209 linux_wlan_mac_indicate(wilc, WILC_MAC_INDICATE_STATUS);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001210
1211 } else if (rsp.type == WILC_CFG_RSP_SCAN) {
Glen Lee64f2b712015-10-27 18:27:43 +09001212 linux_wlan_mac_indicate(wilc, WILC_MAC_INDICATE_SCAN);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001213 }
1214 }
1215 }
1216 offset += tp_len;
1217 if (offset >= size)
1218 break;
1219 } while (1);
1220
1221
1222#ifndef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001223 kfree(buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001224#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001225 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001226
Alison Schofield39823a52015-10-08 21:18:03 -07001227 if (has_packet)
Glen Leec0cadaa2015-09-24 18:14:54 +09001228 linux_wlan_rx_complete();
Alison Schofield39823a52015-10-08 21:18:03 -07001229
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001230 } while (1);
1231
1232 p->rxq_exit = 1;
Chandra S Gorentla17aacd42015-08-08 17:41:35 +05301233 PRINT_D(RX_DBG, "THREAD: Exiting RX thread\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001234}
1235
1236/********************************************
1237 *
1238 * Fast DMA Isr
1239 *
1240 ********************************************/
1241static void wilc_unknown_isr_ext(void)
1242{
1243 g_wlan.hif_func.hif_clear_int_ext(0);
1244}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001245static void wilc_pllupdate_isr_ext(u32 int_stats)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001246{
1247
1248 int trials = 10;
1249
1250 g_wlan.hif_func.hif_clear_int_ext(PLL_INT_CLR);
1251
1252 /* Waiting for PLL */
Greg Kroah-Hartmanc2e4c0f2015-09-03 19:09:50 -07001253 mdelay(WILC_PLL_TO);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001254
1255 /* poll till read a valid data */
Dean Lee72ed4dc2015-06-12 14:11:44 +09001256 while (!(ISWILC1000(wilc_get_chipid(true)) && --trials)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001257 PRINT_D(TX_DBG, "PLL update retrying\n");
Greg Kroah-Hartmanc2e4c0f2015-09-03 19:09:50 -07001258 mdelay(1);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001259 }
1260}
1261
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001262static void wilc_sleeptimer_isr_ext(u32 int_stats1)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001263{
1264 g_wlan.hif_func.hif_clear_int_ext(SLEEP_INT_CLR);
1265#ifndef WILC_OPTIMIZE_SLEEP_INT
1266 genuChipPSstate = CHIP_SLEEPING_AUTO;
1267#endif
1268}
1269
Glen Lee3bcd45b2015-10-27 18:27:41 +09001270static void wilc_wlan_handle_isr_ext(struct wilc *wilc, u32 int_status)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001271{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301272 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001273#ifdef MEMORY_STATIC
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001274 u32 offset = p->rx_buffer_offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001275#endif
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001276 u8 *buffer = NULL;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001277 u32 size;
1278 u32 retries = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001279 int ret = 0;
1280 struct rxq_entry_t *rqe;
1281
1282
1283 /**
1284 * Get the rx size
1285 **/
1286
1287 size = ((int_status & 0x7fff) << 2);
1288
1289 while (!size && retries < 10) {
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001290 u32 time = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001291 /*looping more secure*/
1292 /*zero size make a crashe because the dma will not happen and that will block the firmware*/
1293 wilc_debug(N_ERR, "RX Size equal zero ... Trying to read it again for %d time\n", time++);
1294 p->hif_func.hif_read_size(&size);
1295 size = ((size & 0x7fff) << 2);
1296 retries++;
1297
1298 }
1299
1300 if (size > 0) {
1301#ifdef MEMORY_STATIC
Glen Lee03eb7262015-09-24 18:15:03 +09001302 if (LINUX_RX_SIZE - offset < size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001303 offset = 0;
1304
1305 if (p->rx_buffer)
1306 buffer = &p->rx_buffer[offset];
1307 else {
1308 wilc_debug(N_ERR, "[wilc isr]: fail Rx Buffer is NULL...drop the packets (%d)\n", size);
1309 goto _end_;
1310 }
1311
1312#else
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001313 buffer = kmalloc(size, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001314 if (buffer == NULL) {
1315 wilc_debug(N_ERR, "[wilc isr]: fail alloc host memory...drop the packets (%d)\n", size);
Greg Kroah-Hartman80e29c72015-08-14 19:42:23 -07001316 usleep_range(100 * 1000, 100 * 1000);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001317 goto _end_;
1318 }
1319#endif
1320
1321 /**
1322 * clear the chip's interrupt after getting size some register getting corrupted after clear the interrupt
1323 **/
1324 p->hif_func.hif_clear_int_ext(DATA_INT_CLR | ENABLE_RX_VMM);
1325
1326
1327 /**
1328 * start transfer
1329 **/
1330 ret = p->hif_func.hif_block_rx_ext(0, buffer, size);
1331
1332 if (!ret) {
1333 wilc_debug(N_ERR, "[wilc isr]: fail block rx...\n");
1334 goto _end_;
1335 }
1336_end_:
1337
1338
1339 if (ret) {
1340#ifdef MEMORY_STATIC
1341 offset += size;
1342 p->rx_buffer_offset = offset;
1343#endif
1344 /**
1345 * add to rx queue
1346 **/
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001347 rqe = kmalloc(sizeof(struct rxq_entry_t), GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001348 if (rqe != NULL) {
1349 rqe->buffer = buffer;
1350 rqe->buffer_size = size;
1351 PRINT_D(RX_DBG, "rxq entery Size= %d - Address = %p\n", rqe->buffer_size, rqe->buffer);
1352 wilc_wlan_rxq_add(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001353 }
1354 } else {
1355#ifndef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001356 kfree(buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001357#endif
1358 }
1359 }
Glen Lee39ce4d32015-10-27 18:27:42 +09001360 wilc_wlan_handle_rxq(wilc);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001361}
1362
Glen Lee50b929e2015-10-27 18:27:40 +09001363void wilc_handle_isr(void *wilc)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001364{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001365 u32 int_status;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001366
1367 acquire_bus(ACQUIRE_AND_WAKEUP);
1368 g_wlan.hif_func.hif_read_int(&int_status);
1369
Alison Schofield39823a52015-10-08 21:18:03 -07001370 if (int_status & PLL_INT_EXT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001371 wilc_pllupdate_isr_ext(int_status);
Alison Schofield39823a52015-10-08 21:18:03 -07001372
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001373 if (int_status & DATA_INT_EXT) {
Glen Lee3bcd45b2015-10-27 18:27:41 +09001374 wilc_wlan_handle_isr_ext(wilc, int_status);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001375 #ifndef WILC_OPTIMIZE_SLEEP_INT
1376 /* Chip is up and talking*/
1377 genuChipPSstate = CHIP_WAKEDUP;
1378 #endif
1379 }
Alison Schofield39823a52015-10-08 21:18:03 -07001380 if (int_status & SLEEP_INT_EXT)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001381 wilc_sleeptimer_isr_ext(int_status);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001382
1383 if (!(int_status & (ALL_INT_EXT))) {
1384#ifdef WILC_SDIO
1385 PRINT_D(TX_DBG, ">> UNKNOWN_INTERRUPT - 0x%08x\n", int_status);
1386#endif
1387 wilc_unknown_isr_ext();
1388 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001389 release_bus(RELEASE_ALLOW_SLEEP);
1390}
1391
1392/********************************************
1393 *
1394 * Firmware download
1395 *
1396 ********************************************/
Glen Lee63d7ab82015-10-01 16:03:32 +09001397int wilc_wlan_firmware_download(const u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001398{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301399 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001400 u32 offset;
1401 u32 addr, size, size2, blksz;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001402 u8 *dma_buffer;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001403 int ret = 0;
1404
Anish Bhattffda2032015-09-29 12:15:49 -07001405 blksz = BIT(12);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001406 /* Allocate a DMA coherent buffer. */
1407
Greg Kroah-Hartmanf019b9d2015-09-03 18:50:27 -07001408 dma_buffer = kmalloc(blksz, GFP_KERNEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001409 if (dma_buffer == NULL) {
1410 /*EIO 5*/
1411 ret = -5;
1412 PRINT_ER("Can't allocate buffer for firmware download IO error\n ");
1413 goto _fail_1;
1414 }
1415
1416 PRINT_D(INIT_DBG, "Downloading firmware size = %d ...\n", buffer_size);
1417 /**
1418 * load the firmware
1419 **/
1420 offset = 0;
1421 do {
1422 memcpy(&addr, &buffer[offset], 4);
1423 memcpy(&size, &buffer[offset + 4], 4);
1424#ifdef BIG_ENDIAN
1425 addr = BYTE_SWAP(addr);
1426 size = BYTE_SWAP(size);
1427#endif
1428 acquire_bus(ACQUIRE_ONLY);
1429 offset += 8;
1430 while (((int)size) && (offset < buffer_size)) {
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301431 if (size <= blksz)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001432 size2 = size;
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05301433 else
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001434 size2 = blksz;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001435 /* Copy firmware into a DMA coherent buffer */
1436 memcpy(dma_buffer, &buffer[offset], size2);
1437 ret = p->hif_func.hif_block_tx(addr, dma_buffer, size2);
1438 if (!ret)
1439 break;
1440
1441 addr += size2;
1442 offset += size2;
1443 size -= size2;
1444 }
1445 release_bus(RELEASE_ONLY);
1446
1447 if (!ret) {
1448 /*EIO 5*/
1449 ret = -5;
1450 PRINT_ER("Can't download firmware IO error\n ");
1451 goto _fail_;
1452 }
1453 PRINT_D(INIT_DBG, "Offset = %d\n", offset);
1454 } while (offset < buffer_size);
1455
1456_fail_:
1457
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001458 kfree(dma_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001459
1460_fail_1:
1461
1462 return (ret < 0) ? ret : 0;
1463}
1464
1465/********************************************
1466 *
1467 * Common
1468 *
1469 ********************************************/
Glen Leee42563b2015-10-01 16:03:33 +09001470int wilc_wlan_start(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001471{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301472 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001473 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001474 int ret;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001475 u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001476
1477 /**
1478 * Set the host interface
1479 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001480 if (p->io_func.io_type == HIF_SDIO) {
1481 reg = 0;
Anish Bhattffda2032015-09-29 12:15:49 -07001482 reg |= BIT(3); /* bug 4456 and 4557 */
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001483 } else if (p->io_func.io_type == HIF_SPI) {
1484 reg = 1;
1485 }
1486 acquire_bus(ACQUIRE_ONLY);
1487 ret = p->hif_func.hif_write_reg(WILC_VMM_CORE_CFG, reg);
1488 if (!ret) {
1489 wilc_debug(N_ERR, "[wilc start]: fail write reg vmm_core_cfg...\n");
1490 release_bus(RELEASE_ONLY);
1491 /* EIO 5*/
1492 ret = -5;
1493 return ret;
1494 }
1495 reg = 0;
1496#ifdef WILC_SDIO_IRQ_GPIO
1497 reg |= WILC_HAVE_SDIO_IRQ_GPIO;
1498#endif
1499
1500#ifdef WILC_DISABLE_PMU
1501#else
1502 reg |= WILC_HAVE_USE_PMU;
1503#endif
1504
1505#ifdef WILC_SLEEP_CLK_SRC_XO
1506 reg |= WILC_HAVE_SLEEP_CLK_SRC_XO;
1507#elif defined WILC_SLEEP_CLK_SRC_RTC
1508 reg |= WILC_HAVE_SLEEP_CLK_SRC_RTC;
1509#endif
1510
1511#ifdef WILC_EXT_PA_INV_TX_RX
1512 reg |= WILC_HAVE_EXT_PA_INV_TX_RX;
1513#endif
1514
1515 reg |= WILC_HAVE_LEGACY_RF_SETTINGS;
1516
1517
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001518/*Set oscillator frequency*/
1519#ifdef XTAL_24
1520 reg |= WILC_HAVE_XTAL_24;
1521#endif
1522
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001523/*Enable/Disable GPIO configuration for FW logs*/
1524#ifdef DISABLE_WILC_UART
1525 reg |= WILC_HAVE_DISABLE_WILC_UART;
1526#endif
1527
1528 ret = p->hif_func.hif_write_reg(WILC_GP_REG_1, reg);
1529 if (!ret) {
1530 wilc_debug(N_ERR, "[wilc start]: fail write WILC_GP_REG_1 ...\n");
1531 release_bus(RELEASE_ONLY);
1532 /* EIO 5*/
1533 ret = -5;
1534 return ret;
1535 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001536
1537 /**
1538 * Bus related
1539 **/
1540 p->hif_func.hif_sync_ext(NUM_INT_EXT);
1541
1542 ret = p->hif_func.hif_read_reg(0x1000, &chipid);
1543 if (!ret) {
1544 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1000 ...\n");
1545 release_bus(RELEASE_ONLY);
1546 /* EIO 5*/
1547 ret = -5;
1548 return ret;
1549 }
1550
1551 /**
1552 * Go...
1553 **/
1554
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001555
1556 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
Anish Bhattffda2032015-09-29 12:15:49 -07001557 if ((reg & BIT(10)) == BIT(10)) {
1558 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001559 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1560 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1561 }
1562
Anish Bhattffda2032015-09-29 12:15:49 -07001563 reg |= BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001564 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1565 p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1566 release_bus(RELEASE_ONLY);
1567
1568 return (ret < 0) ? ret : 0;
1569}
1570
1571void wilc_wlan_global_reset(void)
1572{
1573
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301574 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Lim8dfaafd2015-08-18 23:18:11 +09001575
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001576 acquire_bus(ACQUIRE_AND_WAKEUP);
1577 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, 0x0);
1578 release_bus(RELEASE_ONLY);
1579}
Glen Lee8cec7412015-10-01 16:03:34 +09001580int wilc_wlan_stop(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001581{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301582 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001583 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001584 int ret;
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001585 u8 timeout = 10;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001586 /**
1587 * TODO: stop the firmware, need a re-download
1588 **/
1589 acquire_bus(ACQUIRE_AND_WAKEUP);
1590
1591 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1592 if (!ret) {
1593 PRINT_ER("Error while reading reg\n");
1594 release_bus(RELEASE_ALLOW_SLEEP);
1595 return ret;
1596 }
1597
Anish Bhattffda2032015-09-29 12:15:49 -07001598 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001599
1600
1601 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1602 if (!ret) {
1603 PRINT_ER("Error while writing reg\n");
1604 release_bus(RELEASE_ALLOW_SLEEP);
1605 return ret;
1606 }
1607
1608
1609
1610 do {
1611 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1612 if (!ret) {
1613 PRINT_ER("Error while reading reg\n");
1614 release_bus(RELEASE_ALLOW_SLEEP);
1615 return ret;
1616 }
1617 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1618 /*Workaround to ensure that the chip is actually reset*/
Anish Bhattffda2032015-09-29 12:15:49 -07001619 if ((reg & BIT(10))) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001620 PRINT_D(GENERIC_DBG, "Bit 10 not reset : Retry %d\n", timeout);
Anish Bhattffda2032015-09-29 12:15:49 -07001621 reg &= ~BIT(10);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001622 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
1623 timeout--;
1624 } else {
1625 PRINT_D(GENERIC_DBG, "Bit 10 reset after : Retry %d\n", timeout);
1626 ret = p->hif_func.hif_read_reg(WILC_GLB_RESET_0, &reg);
1627 if (!ret) {
1628 PRINT_ER("Error while reading reg\n");
1629 release_bus(RELEASE_ALLOW_SLEEP);
1630 return ret;
1631 }
1632 PRINT_D(GENERIC_DBG, "Read RESET Reg %x : Retry%d\n", reg, timeout);
1633 break;
1634 }
1635
1636 } while (timeout);
Anish Bhattffda2032015-09-29 12:15:49 -07001637 reg = (BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(8) | BIT(9) | BIT(26) |
1638 BIT(29) | BIT(30) | BIT(31));
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001639
1640 p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Anish Bhattffda2032015-09-29 12:15:49 -07001641 reg = (u32)~BIT(10);
Anish Bhatt65ead4e2015-09-29 12:15:48 -07001642
1643 ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001644
1645 release_bus(RELEASE_ALLOW_SLEEP);
1646
1647 return ret;
1648}
1649
Glen Lee2de7cbe2015-10-27 18:27:54 +09001650void wilc_wlan_cleanup(struct net_device *dev)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001651{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301652 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001653 struct txq_entry_t *tqe;
1654 struct rxq_entry_t *rqe;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001655 u32 reg = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001656 int ret;
1657
1658 p->quit = 1;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001659 do {
1660 tqe = wilc_wlan_txq_remove_from_head();
1661 if (tqe == NULL)
1662 break;
1663 if (tqe->tx_complete_func)
1664 tqe->tx_complete_func(tqe->priv, 0);
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001665 kfree(tqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001666 } while (1);
1667
1668 do {
1669 rqe = wilc_wlan_rxq_remove();
1670 if (rqe == NULL)
1671 break;
Javier Martinez Canillas6a272242015-09-22 15:24:50 +02001672#ifndef MEMORY_STATIC
1673 kfree(rqe->buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001674#endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001675 kfree(rqe);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001676 } while (1);
1677
1678 /**
1679 * clean up buffer
1680 **/
1681
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001682 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001683 kfree(p->rx_buffer);
1684 p->rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001685 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07001686 kfree(p->tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001687
1688 acquire_bus(ACQUIRE_AND_WAKEUP);
1689
1690
1691 ret = p->hif_func.hif_read_reg(WILC_GP_REG_0, &reg);
1692 if (!ret) {
1693 PRINT_ER("Error while reading reg\n");
1694 release_bus(RELEASE_ALLOW_SLEEP);
1695 }
1696 PRINT_ER("Writing ABORT reg\n");
1697 ret = p->hif_func.hif_write_reg(WILC_GP_REG_0, (reg | ABORT_INT));
1698 if (!ret) {
1699 PRINT_ER("Error while writing reg\n");
1700 release_bus(RELEASE_ALLOW_SLEEP);
1701 }
1702 release_bus(RELEASE_ALLOW_SLEEP);
1703 /**
1704 * io clean up
1705 **/
1706 p->hif_func.hif_deinit(NULL);
1707
1708}
1709
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001710static int wilc_wlan_cfg_commit(int type, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001711{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301712 wilc_wlan_dev_t *p = &g_wlan;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001713 wilc_cfg_frame_t *cfg = &p->cfg_frame;
1714 int total_len = p->cfg_frame_offset + 4 + DRIVER_HANDLER_SIZE;
1715 int seq_no = p->cfg_seq_no % 256;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09001716 int driver_handler = (u32)drvHandler;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001717
1718
1719 /**
1720 * Set up header
1721 **/
1722 if (type == WILC_CFG_SET) { /* Set */
1723 cfg->wid_header[0] = 'W';
1724 } else { /* Query */
1725 cfg->wid_header[0] = 'Q';
1726 }
1727 cfg->wid_header[1] = seq_no; /* sequence number */
Chaehyun Lim51e825f2015-09-15 14:06:14 +09001728 cfg->wid_header[2] = (u8)total_len;
1729 cfg->wid_header[3] = (u8)(total_len >> 8);
1730 cfg->wid_header[4] = (u8)driver_handler;
1731 cfg->wid_header[5] = (u8)(driver_handler >> 8);
1732 cfg->wid_header[6] = (u8)(driver_handler >> 16);
1733 cfg->wid_header[7] = (u8)(driver_handler >> 24);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001734 p->cfg_seq_no = seq_no;
1735
1736 /**
1737 * Add to TX queue
1738 **/
1739
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001740 if (!wilc_wlan_txq_add_cfg_pkt(&cfg->wid_header[0], total_len))
1741 return -1;
1742
1743 return 0;
1744}
1745
Glen Lee1028e5a2015-10-01 16:03:40 +09001746int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
1747 int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001748{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301749 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001750 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001751 int ret_size;
1752
1753
1754 if (p->cfg_frame_in_use)
1755 return 0;
1756
1757 if (start)
1758 p->cfg_frame_offset = 0;
1759
1760 offset = p->cfg_frame_offset;
Glen Lee17e8f162015-10-02 14:22:07 +09001761 ret_size = wilc_wlan_cfg_set_wid(p->cfg_frame.frame, offset, (u16)wid,
1762 buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001763 offset += ret_size;
1764 p->cfg_frame_offset = offset;
1765
1766 if (commit) {
1767 PRINT_D(TX_DBG, "[WILC]PACKET Commit with sequence number %d\n", p->cfg_seq_no);
1768 PRINT_D(RX_DBG, "Processing cfg_set()\n");
1769 p->cfg_frame_in_use = 1;
1770
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001771 if (wilc_wlan_cfg_commit(WILC_CFG_SET, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001772 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001773
Glen Leeb002e202015-09-24 18:15:05 +09001774 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1775 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001776 PRINT_D(TX_DBG, "Set Timed Out\n");
1777 ret_size = 0;
1778 }
1779 p->cfg_frame_in_use = 0;
1780 p->cfg_frame_offset = 0;
1781 p->cfg_seq_no += 1;
1782
1783 }
1784
1785 return ret_size;
1786}
Glen Lee07056a82015-10-01 16:03:41 +09001787int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001788{
Shivani Bhardwaj7ee82912015-10-13 17:04:48 +05301789 wilc_wlan_dev_t *p = &g_wlan;
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001790 u32 offset;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001791 int ret_size;
1792
1793
1794 if (p->cfg_frame_in_use)
1795 return 0;
1796
1797 if (start)
1798 p->cfg_frame_offset = 0;
1799
1800 offset = p->cfg_frame_offset;
Glen Leeec1b86b2015-10-02 14:22:08 +09001801 ret_size = wilc_wlan_cfg_get_wid(p->cfg_frame.frame, offset, (u16)wid);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001802 offset += ret_size;
1803 p->cfg_frame_offset = offset;
1804
1805 if (commit) {
1806 p->cfg_frame_in_use = 1;
1807
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001808 if (wilc_wlan_cfg_commit(WILC_CFG_QUERY, drvHandler))
Chaehyun Lim5af6b852015-09-17 16:48:48 +09001809 ret_size = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001810
1811
Glen Leeb002e202015-09-24 18:15:05 +09001812 if (linux_wlan_lock_timeout(&g_linux_wlan->cfg_event,
1813 CFG_PKTS_TIMEOUT)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001814 PRINT_D(TX_DBG, "Get Timed Out\n");
1815 ret_size = 0;
1816 }
1817 PRINT_D(GENERIC_DBG, "[WILC]Get Response received\n");
1818 p->cfg_frame_in_use = 0;
1819 p->cfg_frame_offset = 0;
1820 p->cfg_seq_no += 1;
1821 }
1822
1823 return ret_size;
1824}
1825
Glen Lee894de36b2015-10-01 16:03:42 +09001826int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001827{
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001828 int ret;
1829
Glen Lee355cca22015-10-02 14:22:09 +09001830 ret = wilc_wlan_cfg_get_wid_value((u16)wid, buffer, buffer_size);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001831
1832 return ret;
1833}
1834
1835void wilc_bus_set_max_speed(void)
1836{
1837
1838 /* Increase bus speed to max possible. */
1839 g_wlan.hif_func.hif_set_max_bus_speed();
1840}
1841
1842void wilc_bus_set_default_speed(void)
1843{
1844
1845 /* Restore bus speed to default. */
1846 g_wlan.hif_func.hif_set_default_bus_speed();
1847}
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001848u32 init_chip(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001849{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001850 u32 chipid;
1851 u32 reg, ret = 0;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001852
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001853 acquire_bus(ACQUIRE_ONLY);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001854
Dean Lee72ed4dc2015-06-12 14:11:44 +09001855 chipid = wilc_get_chipid(true);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001856
1857
1858
1859 if ((chipid & 0xfff) != 0xa0) {
1860 /**
1861 * Avoid booting from boot ROM. Make sure that Drive IRQN [SDIO platform]
1862 * or SD_DAT3 [SPI platform] to ?1?
1863 **/
1864 /* Set cortus reset register to register control. */
1865 ret = g_wlan.hif_func.hif_read_reg(0x1118, &reg);
1866 if (!ret) {
1867 wilc_debug(N_ERR, "[wilc start]: fail read reg 0x1118 ...\n");
1868 return ret;
1869 }
Anish Bhattffda2032015-09-29 12:15:49 -07001870 reg |= BIT(0);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001871 ret = g_wlan.hif_func.hif_write_reg(0x1118, reg);
1872 if (!ret) {
1873 wilc_debug(N_ERR, "[wilc start]: fail write reg 0x1118 ...\n");
1874 return ret;
1875 }
1876 /**
1877 * Write branch intruction to IRAM (0x71 trap) at location 0xFFFF0000
1878 * (Cortus map) or C0000 (AHB map).
1879 **/
1880 ret = g_wlan.hif_func.hif_write_reg(0xc0000, 0x71);
1881 if (!ret) {
1882 wilc_debug(N_ERR, "[wilc start]: fail write reg 0xc0000 ...\n");
1883 return ret;
1884 }
1885 }
1886
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001887 release_bus(RELEASE_ONLY);
1888
1889 return ret;
1890
1891}
1892
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001893u32 wilc_get_chipid(u8 update)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001894{
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001895 static u32 chipid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001896 /* SDIO can't read into global variables */
1897 /* Use this variable as a temp, then copy to the global */
Chaehyun Limfbc2fe12015-09-15 14:06:16 +09001898 u32 tempchipid = 0;
1899 u32 rfrevid;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001900
1901 if (chipid == 0 || update != 0) {
1902 g_wlan.hif_func.hif_read_reg(0x1000, &tempchipid);
1903 g_wlan.hif_func.hif_read_reg(0x13f4, &rfrevid);
1904 if (!ISWILC1000(tempchipid)) {
1905 chipid = 0;
1906 goto _fail_;
1907 }
1908 if (tempchipid == 0x1002a0) {
1909 if (rfrevid == 0x1) { /* 1002A0 */
1910 } else { /* if (rfrevid == 0x2) */ /* 1002A1 */
1911 tempchipid = 0x1002a1;
1912 }
1913 } else if (tempchipid == 0x1002b0) {
1914 if (rfrevid == 3) { /* 1002B0 */
1915 } else if (rfrevid == 4) { /* 1002B1 */
1916 tempchipid = 0x1002b1;
1917 } else { /* if(rfrevid == 5) */ /* 1002B2 */
1918 tempchipid = 0x1002b2;
1919 }
1920 } else {
1921 }
1922
1923 chipid = tempchipid;
1924 }
1925_fail_:
1926 return chipid;
1927}
1928
Glen Leec9d48342015-10-01 16:03:43 +09001929int wilc_wlan_init(wilc_wlan_inp_t *inp)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001930{
1931
1932 int ret = 0;
1933
1934 PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n");
1935
1936 memset((void *)&g_wlan, 0, sizeof(wilc_wlan_dev_t));
1937
1938 /**
1939 * store the input
1940 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001941 memcpy((void *)&g_wlan.io_func, (void *)&inp->io_func, sizeof(wilc_wlan_io_func_t));
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001942 /***
1943 * host interface init
1944 **/
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001945 if ((inp->io_func.io_type & 0x1) == HIF_SDIO) {
1946 if (!hif_sdio.hif_init(inp, wilc_debug)) {
1947 /* EIO 5 */
1948 ret = -5;
1949 goto _fail_;
1950 }
1951 memcpy((void *)&g_wlan.hif_func, &hif_sdio, sizeof(wilc_hif_func_t));
1952 } else {
1953 if ((inp->io_func.io_type & 0x1) == HIF_SPI) {
1954 /**
1955 * TODO:
1956 **/
1957 if (!hif_spi.hif_init(inp, wilc_debug)) {
1958 /* EIO 5 */
1959 ret = -5;
1960 goto _fail_;
1961 }
1962 memcpy((void *)&g_wlan.hif_func, &hif_spi, sizeof(wilc_hif_func_t));
1963 } else {
1964 /* EIO 5 */
1965 ret = -5;
1966 goto _fail_;
1967 }
1968 }
1969
1970 /***
1971 * mac interface init
1972 **/
Glen Lee814bc362015-10-02 14:22:11 +09001973 if (!wilc_wlan_cfg_init(wilc_debug)) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001974 /* ENOBUFS 105 */
1975 ret = -105;
1976 goto _fail_;
1977 }
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001978
1979 /**
1980 * alloc tx, rx buffer
1981 **/
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001982 if (g_wlan.tx_buffer == NULL)
Glen Lee7015b5d2015-09-24 18:15:02 +09001983 g_wlan.tx_buffer = kmalloc(LINUX_TX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02001984 PRINT_D(TX_DBG, "g_wlan.tx_buffer = %p\n", g_wlan.tx_buffer);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001985
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001986 if (g_wlan.tx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001987 /* ENOBUFS 105 */
1988 ret = -105;
1989 PRINT_ER("Can't allocate Tx Buffer");
1990 goto _fail_;
1991 }
1992
1993/* rx_buffer is not used unless we activate USE_MEM STATIC which is not applicable, allocating such memory is useless*/
1994#if defined (MEMORY_STATIC)
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001995 if (g_wlan.rx_buffer == NULL)
Glen Lee03eb7262015-09-24 18:15:03 +09001996 g_wlan.rx_buffer = kmalloc(LINUX_RX_SIZE, GFP_KERNEL);
Arnd Bergmann7a8fd842015-06-01 21:06:45 +02001997 PRINT_D(TX_DBG, "g_wlan.rx_buffer =%p\n", g_wlan.rx_buffer);
Greg Kroah-Hartmanb1413b62015-06-02 14:11:12 +09001998 if (g_wlan.rx_buffer == NULL) {
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001999 /* ENOBUFS 105 */
2000 ret = -105;
2001 PRINT_ER("Can't allocate Rx Buffer");
2002 goto _fail_;
2003 }
2004#endif
2005
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002006 if (!init_chip()) {
2007 /* EIO 5 */
2008 ret = -5;
2009 goto _fail_;
2010 }
2011#ifdef TCP_ACK_FILTER
2012 Init_TCP_tracking();
2013#endif
2014
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002015 return 1;
2016
2017_fail_:
2018
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002019 #ifdef MEMORY_STATIC
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002020 kfree(g_wlan.rx_buffer);
2021 g_wlan.rx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002022 #endif
Greg Kroah-Hartmana18dd632015-09-03 19:04:19 -07002023 kfree(g_wlan.tx_buffer);
2024 g_wlan.tx_buffer = NULL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002025
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002026 return ret;
2027
2028}
2029
Dean Lee72ed4dc2015-06-12 14:11:44 +09002030u16 Set_machw_change_vir_if(bool bValue)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002031{
Chaehyun Limd85f5322015-06-11 14:35:54 +09002032 u16 ret;
Chaehyun Lim4e4467f2015-06-11 14:35:55 +09002033 u32 reg;
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002034
2035 /*Reset WILC_CHANGING_VIR_IF register to allow adding futrue keys to CE H/W*/
Glen Lee187f1ef2015-09-24 18:15:01 +09002036 mutex_lock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002037 ret = (&g_wlan)->hif_func.hif_read_reg(WILC_CHANGING_VIR_IF, &reg);
Alison Schofield39823a52015-10-08 21:18:03 -07002038 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002039 PRINT_ER("Error while Reading reg WILC_CHANGING_VIR_IF\n");
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002040
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302041 if (bValue)
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002042 reg |= BIT(31);
Chandra S Gorentla78174ad2015-08-08 17:41:36 +05302043 else
Chaehyun Lim50b51da2015-09-16 20:11:26 +09002044 reg &= ~BIT(31);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002045
2046 ret = (&g_wlan)->hif_func.hif_write_reg(WILC_CHANGING_VIR_IF, reg);
2047
Alison Schofield39823a52015-10-08 21:18:03 -07002048 if (!ret)
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002049 PRINT_ER("Error while writing reg WILC_CHANGING_VIR_IF\n");
Alison Schofield39823a52015-10-08 21:18:03 -07002050
Glen Lee187f1ef2015-09-24 18:15:01 +09002051 mutex_unlock(&g_linux_wlan->hif_cs);
Johnny Kimc5c77ba2015-05-11 14:30:56 +09002052
2053 return ret;
2054}