/******************************************************************************
|
*
|
* 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.
|
*
|
*****************************************************************************/
|
#ifndef _PHL_UTIL_H_
|
#define _PHL_UTIL_H_
|
|
#define phlcom_to_drvpriv(_pcom) (_pcom->drv_priv)
|
#define phl_is_mp_mode(_phl_com) (_phl_com->drv_mode >= RTW_DRV_MODE_MP_SMDL_START && _phl_com->drv_mode <= RTW_DRV_MODE_MP_SMDL_END)
|
#define phl_mp_is_tmac_mode(_phl_com) (_phl_com->drv_mode == RTW_DRV_MODE_MP_TMAC)
|
#define phl_is_fpga_mode(_phl_com) (_phl_com->drv_mode >= RTW_DRV_MODE_FPGA_SMDL_START && _phl_com->drv_mode <= RTW_DRV_MODE_FPGA_SMDL_END)
|
|
#ifndef is_broadcast_mac_addr
|
#define is_broadcast_mac_addr(addr) ((((addr[0]) & 0xff) == 0xff) && (((addr[1]) & 0xff) == 0xff) && \
|
(((addr[2]) & 0xff) == 0xff) && (((addr[3]) & 0xff) == 0xff) && (((addr[4]) & 0xff) == 0xff) && \
|
(((addr[5]) & 0xff) == 0xff))
|
#endif
|
#ifndef MIN
|
#define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
|
#endif
|
|
#ifndef DIFF
|
#define DIFF(_x_, _y_) ((_x_ >= _y_) ? (_x_ - _y_) : (_y_ - _x_))
|
#endif
|
|
#ifndef RANGE_OVERLAP
|
#define RANGE_OVERLAP(hi_a, lo_a, hi_b, lo_b) (((hi_a) > (lo_b)) && ((lo_a) < (hi_b)))
|
#endif
|
|
#define SET_STATUS_FLAG(_status,_flags) \
|
((_status) |= (_flags))
|
#define TEST_STATUS_FLAG(_status,_flags)\
|
(((_status) & (_flags))==(_flags))
|
#define CLEAR_STATUS_FLAG(_status,_flags)\
|
((_status) &= ~(_flags))
|
|
#define rtw_phl_is_ap_category(_type) (_type == PHL_RTYPE_AP ||\
|
_type == PHL_RTYPE_P2P_GO ||\
|
_type == PHL_RTYPE_VAP)
|
#define rtw_phl_is_client_category(_type) (_type == PHL_RTYPE_STATION ||\
|
_type == PHL_RTYPE_P2P_GC ||\
|
_type == PHL_RTYPE_TDLS)
|
#define rtw_phl_role_is_ap_category(_wrole) (rtw_phl_is_ap_category(_wrole->type))
|
#define rtw_phl_role_is_client_category(_wrole) (rtw_phl_is_client_category(_wrole->type))
|
|
#ifdef CONFIG_DBCC_SUPPORT
|
#define is_dbcc_sup(_phl_com) (_phl_com->dev_cap.dbcc_sup == true)
|
#define is_frc_bdand1_role(_phl_com, _rid) (_phl_com->dev_cap.dbcc_force_rmap & BIT(_rid))
|
#ifdef CONFIG_DBCC_FORCE
|
#define is_frc_dbcc_mode(_phl_com) (_phl_com->dev_cap.dbcc_force_mode)
|
#endif
|
#endif
|
|
static inline void _add_bitmap_bit(u8 *bitmap, u8 max_map_len,u8 *arr, u8 cnt)
|
{
|
u8 k = 0;
|
|
for(k = 0; k < (cnt); k++) {
|
if ((arr[k] / 8) < max_map_len)
|
bitmap[arr[k] / 8] |= (BIT0 << (arr[k] % 8));
|
}
|
}
|
|
static inline void _clr_bitmap_bit(u8 *bitmap, u8 max_map_len, u8 *arr, u8 cnt)
|
{
|
u8 k = 0;
|
|
for(k = 0; k < (cnt); k++) {
|
if ((arr[k] / 8) < max_map_len)
|
bitmap[arr[k] / 8] &= ~(BIT0 << (arr[k] % 8));
|
}
|
}
|
|
static inline bool _chk_bitmap_bit(u8 *bitmap, u8 max_map_len, u8 _id)
|
{
|
if ((_id / 8) < max_map_len)
|
return (bitmap[(_id) / 8] & (BIT0 << ((_id) % 8)));
|
|
/*_os_warn_on(1);*/
|
return false;
|
}
|
|
|
#define _reset_bitmap(_d, _bitmap ,_len) _os_mem_set(_d, _bitmap, 0, _len)
|
|
static inline void _and_bitmaps( u8* ref_bitmap, u8* _bitmap, u32 len)
|
{
|
u8 k = 0;
|
|
for(k = 0; k < len; k++)
|
_bitmap[k] &= ref_bitmap[k];
|
}
|
|
|
/*phl_queue*/
|
struct phl_queue {
|
_os_list queue;
|
_os_lock lock;
|
int cnt;
|
};
|
static inline _os_list *_get_next(_os_list *list)
|
{
|
return list->next;
|
}
|
|
static inline _os_list *_get_prev(_os_list *list)
|
{
|
return list->prev;
|
}
|
|
|
static inline _os_list *_get_list_head(struct phl_queue *q)
|
{
|
return (&q->queue);
|
}
|
|
void pq_init(void *d, struct phl_queue *q);
|
void pq_deinit(void *d, struct phl_queue *q);
|
void pq_reset(void *d, struct phl_queue *q, enum lock_type type);
|
u8 pq_push(void *d, struct phl_queue *q, _os_list *obj, u8 pos, enum lock_type type);
|
u8 pq_pop(void *d, struct phl_queue *q, _os_list **obj, u8 pos, enum lock_type type);
|
u8 pq_get_next(void *d, struct phl_queue *queue, _os_list *cur_obj,
|
_os_list **obj, enum lock_type type);
|
u8 pq_get_front(void *d, struct phl_queue *queue, _os_list **obj,
|
enum lock_type type);
|
u8 pq_get_tail(void *d, struct phl_queue *q, _os_list **obj, enum lock_type type);
|
u8 pq_get_prev(void *d, struct phl_queue *queue, _os_list *cur_obj,
|
_os_list **obj, enum lock_type type);
|
void pq_del_node(void *d, struct phl_queue *q, _os_list *obj, enum lock_type type);
|
|
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));
|
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));
|
u32 phl_get_passing_time_us(u32 start);
|
u32 phl_get_passing_time_ms(u32 start);
|
|
#ifdef DBG_MONITOR_TIME
|
void phl_fun_monitor_start(u32 *start_t, bool show_caller, const char *caller);
|
|
void phl_fun_monitor_end(u32 *start_t, const char *caller);
|
#endif /* DBG_MONITOR_TIME */
|
|
enum rtw_ac phl_tid_to_ac(u8 tid);
|
#endif /*_PHL_UTIL_H_*/
|