hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/******************************************************************************
 *
 * Copyright(c) 2019 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#include "phl_headers.h"
#define _PHL_UTIL_C_
 
 
/* phl queue general API */
void pq_init(void *d, struct phl_queue *q)
{
   INIT_LIST_HEAD(&q->queue);
   _os_spinlock_init(d, &q->lock);
   q->cnt = 0;
}
 
void pq_deinit(void *d, struct phl_queue *q)
{
   _os_spinlock_free(d, &q->lock);
}
 
void pq_reset(void *d, struct phl_queue *q, enum lock_type type)
{
   _os_spinlockfg sp_flags;
 
   _os_spinlock(d, &q->lock, type, &sp_flags);
   INIT_LIST_HEAD(&q->queue);
   q->cnt = 0;
   _os_spinunlock(d, &q->lock, type, &sp_flags);
}
 
u8 pq_push(void *d, struct phl_queue *q, _os_list *obj, u8 pos, enum lock_type type)
{
   _os_spinlockfg sp_flags;
 
   _os_spinlock(d, &q->lock, type, &sp_flags);
   if(pos == _first)
       list_add(obj, &q->queue);
   else
       list_add_tail(obj, &q->queue);
   q->cnt++;
   _os_spinunlock(d, &q->lock, type, &sp_flags);
   return true;
}
 
u8 pq_pop(void *d, struct phl_queue *q, _os_list **obj, u8 pos, enum lock_type type)
{
   _os_spinlockfg sp_flags = 0;
 
   (*obj) = NULL;
   _os_spinlock(d, &q->lock, type, &sp_flags);
   if(!list_empty(&q->queue) && (q->cnt > 0)) {
       if(pos == _first)
           (*obj) = _get_next(&q->queue);
       else
           (*obj) = _get_prev(&q->queue);
       list_del(*obj);
       q->cnt--;
   }
   _os_spinunlock(d, &q->lock, type, &sp_flags);
 
   return ((*obj) == NULL || (*obj) == &q->queue) ? (false) : (true);
}
 
u8 pq_get_front(void *d, struct phl_queue *q, _os_list **obj, enum lock_type type)
{
   _os_spinlockfg sp_flags = 0;
 
   (*obj) = NULL;
 
   _os_spinlock(d, &q->lock, type, &sp_flags);
   if(!list_empty(&q->queue) && (q->cnt > 0))
       (*obj) = q->queue.next;
   _os_spinunlock(d, &q->lock, type, &sp_flags);
   return ((*obj) == NULL || (*obj) == &q->queue) ? (false) : (true);
}
 
u8 pq_get_next(void *d, struct phl_queue *queue, _os_list *cur_obj,
          _os_list **obj, enum lock_type type)
{
   _os_spinlockfg sp_flags;
 
   (*obj) = NULL;
   if(cur_obj == NULL)
       return false;
   _os_spinlock(d, &queue->lock, type, &sp_flags);
   (*obj) = cur_obj->next;
   _os_spinunlock(d, &queue->lock, type, &sp_flags);
   return ((*obj) == NULL || (*obj) == &(queue->queue)) ? (false) : (true);
}
 
u8 pq_get_tail(void *d, struct phl_queue *q, _os_list **obj, enum lock_type type)
{
   _os_spinlockfg sp_flags = 0;
 
   (*obj) = NULL;
 
   _os_spinlock(d, &q->lock, type, &sp_flags);
   if(!list_empty(&q->queue) && (q->cnt > 0))
       (*obj) = q->queue.prev;
   _os_spinunlock(d, &q->lock, type, &sp_flags);
   return ((*obj) == NULL || (*obj) == &q->queue) ? (false) : (true);
}
 
u8 pq_get_prev(void *d, struct phl_queue *queue, _os_list *cur_obj,
          _os_list **obj, enum lock_type type)
{
   _os_spinlockfg sp_flags;
 
   (*obj) = NULL;
   if(cur_obj == NULL)
       return false;
   _os_spinlock(d, &queue->lock, type, &sp_flags);
   (*obj) = cur_obj->prev;
   _os_spinunlock(d, &queue->lock, type, &sp_flags);
   return ((*obj) == NULL || (*obj) == &(queue->queue)) ? (false) : (true);
}
 
u8 pq_search_node(void *d, struct phl_queue *q, _os_list **obj,
         enum lock_type type, bool bdel, void *priv,
         u8 (*search_fun)(void *d, void *obj, void *priv))
{
   _os_spinlockfg sp_flags = 0;
   _os_list *newobj = NULL;
   bool bhit = false;
 
   (*obj) = NULL;
   _os_spinlock(d, &q->lock, type, &sp_flags);
 
   if(!list_empty(&q->queue) && (q->cnt > 0))
       newobj = _get_next(&q->queue);
 
   while(newobj && (newobj != &(q->queue)))  {
 
       if(search_fun)
           bhit = search_fun(d, newobj, priv);
 
       if(bhit && bdel) {
           list_del(newobj);
           q->cnt--;
       }
 
       if(bhit) {
           (*obj) = newobj;
           break;
       }
 
       newobj = newobj->next;
   };
   _os_spinunlock(d, &q->lock, type, &sp_flags);
 
   return ((*obj) == NULL || (*obj) == &(q->queue)) ? (false) : (true);
}
 
void pq_del_node(void *d, struct phl_queue *q, _os_list *obj, enum lock_type type)
{
   _os_spinlockfg sp_flags;
 
   if(obj == NULL)
       return;
   _os_spinlock(d, &q->lock, type, &sp_flags);
   list_del(obj);
   q->cnt--;
   _os_spinunlock(d, &q->lock, type, &sp_flags);
}
 
u8 pq_insert(void *d, struct phl_queue *q, enum lock_type type, void *priv, _os_list *input,
         u8 (*pq_predicate)(void *d, void *priv,_os_list *input, _os_list *obj))
{
   _os_spinlockfg sp_flags;
   _os_list *obj = NULL;
 
   _os_spinlock(d, &q->lock, type, &sp_flags);
   obj = q->queue.next;
   while (obj != &(q->queue)) {
       if (pq_predicate && (pq_predicate(d, priv, input, obj) == true))
           break;
       obj = obj->next;
   }
   list_add_tail(input, obj);
   q->cnt++;
   _os_spinunlock(d, &q->lock, type, &sp_flags);
   return true;
}
u32 phl_get_passing_time_us(u32 start)
{
   u32 now = _os_get_cur_time_us();
   u32 pass = 0;
 
   if (now == start)
       pass = 0;
   else if (now > start)
       /* -- start -- now -- */
       pass = now - start;
   else
       /* -- now -- start -- */
       pass = 0xffffffff - start + now;
 
   return pass;
}
 
u32 phl_get_passing_time_ms(u32 start)
{
   u32 now = _os_get_cur_time_ms();
   u32 pass = 0;
 
   if (now == start)
       pass = 0;
   else if (now > start)
       /* -- start -- now -- */
       pass = now - start;
   else
       /* -- now -- start -- */
       pass = 0xffffffff - start + now;
 
   return pass;
}
 
#ifdef DBG_MONITOR_TIME
void phl_fun_monitor_start(u32 *start_t, bool show_caller, const char *caller)
{
   *start_t = _os_get_cur_time_us();
   if (show_caller)
       PHL_TRACE(COMP_PHL_DBG, _PHL_INFO_, ">> %s:\n", caller);
}
 
void phl_fun_monitor_end(u32 *start_t, const char *caller)
{
   PHL_TRACE(COMP_PHL_DBG, _PHL_INFO_, "<< %s: Process time(us): %d\n",
       caller, phl_get_passing_time_us(*start_t));
}
#endif /* DBG_MONITOR_TIME */
 
enum rtw_ac phl_tid_to_ac(u8 tid)
{
   enum rtw_ac ac = RTW_AC_MAX;
 
   switch (tid) {
   case 0:
   case 3:
       ac = RTW_AC_BE;
       break;
   case 1:
   case 2:
       ac = RTW_AC_BK;
       break;
   case 4:
   case 5:
       ac = RTW_AC_VI;
       break;
   case 6:
   case 7:
       ac = RTW_AC_VO;
       break;
   default:
       PHL_WARN("%s: Invalid TID %d\n", __func__, tid);
       break;
   }
   return ac;
}