2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
|
2013-05-19 04:28:07 +00:00
|
|
|
*
|
2013-05-08 21:45:39 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#define _OSDEP_SERVICE_C_
|
|
|
|
|
|
|
|
#include <osdep_service.h>
|
|
|
|
#include <drv_types.h>
|
|
|
|
#include <recv_osdep.h>
|
|
|
|
#include <linux/vmalloc.h>
|
2013-06-03 19:52:18 +00:00
|
|
|
#include <rtw_ioctl_set.h>
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Translate the OS dependent @param error_code to OS independent RTW_STATUS_CODE
|
|
|
|
* @return: one of RTW_STATUS_CODE
|
|
|
|
*/
|
2013-08-10 17:57:27 +00:00
|
|
|
inline int RTW_STATUS_CODE(int error_code)
|
|
|
|
{
|
|
|
|
if (error_code >= 0)
|
2013-05-08 21:45:39 +00:00
|
|
|
return _SUCCESS;
|
2013-08-10 17:57:27 +00:00
|
|
|
return _FAIL;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
u32 rtw_atoi(u8 *s)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-26 02:17:38 +00:00
|
|
|
int num = 0, flag = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
int i;
|
2013-05-26 02:17:38 +00:00
|
|
|
for (i = 0; i <= strlen(s); i++) {
|
2013-08-10 17:57:27 +00:00
|
|
|
if (s[i] >= '0' && s[i] <= '9')
|
|
|
|
num = num * 10 + s[i] - '0';
|
|
|
|
else if (s[0] == '-' && i == 0)
|
|
|
|
flag = 1;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2013-05-09 04:04:25 +00:00
|
|
|
if (flag == 1)
|
2013-08-10 17:57:27 +00:00
|
|
|
num = num * -1;
|
|
|
|
return num;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-05-26 02:17:38 +00:00
|
|
|
inline u8 *_rtw_vmalloc(u32 sz)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
u8 *pbuf;
|
2013-05-08 21:45:39 +00:00
|
|
|
pbuf = vmalloc(sz);
|
2013-05-19 04:28:07 +00:00
|
|
|
return pbuf;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
inline u8 *_rtw_zvmalloc(u32 sz)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
u8 *pbuf;
|
2013-05-08 21:45:39 +00:00
|
|
|
pbuf = _rtw_vmalloc(sz);
|
|
|
|
if (pbuf != NULL)
|
|
|
|
memset(pbuf, 0, sz);
|
2013-05-19 04:28:07 +00:00
|
|
|
return pbuf;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void _rtw_vmfree(u8 *pbuf, u32 sz)
|
|
|
|
{
|
|
|
|
vfree(pbuf);
|
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
u8 *_rtw_malloc(u32 sz)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
u8 *pbuf = NULL;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
pbuf = kmalloc(sz, in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
|
2013-05-19 04:28:07 +00:00
|
|
|
return pbuf;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
u8 *_rtw_zmalloc(u32 sz)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
u8 *pbuf = _rtw_malloc(sz);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-26 02:17:38 +00:00
|
|
|
if (pbuf != NULL)
|
2013-05-08 21:45:39 +00:00
|
|
|
memset(pbuf, 0, sz);
|
2013-05-19 04:28:07 +00:00
|
|
|
return pbuf;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
void *rtw_malloc2d(int h, int w, int size)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
void **a = (void **)rtw_zmalloc(h*sizeof(void *) + h*w*size);
|
2013-05-26 02:17:38 +00:00
|
|
|
if (a == NULL) {
|
|
|
|
pr_info("%s: alloc memory fail!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
for (j = 0; j < h; j++)
|
2013-05-08 21:45:39 +00:00
|
|
|
a[j] = ((char *)(a+h)) + j*w*size;
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rtw_mfree2d(void *pbuf, int h, int w, int size)
|
|
|
|
{
|
2013-10-19 17:45:47 +00:00
|
|
|
kfree(pbuf);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
int _rtw_memcmp(void *dst, void *src, u32 sz)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
/* under Linux/GNU/GLibc, the return value of memcmp for two same
|
|
|
|
* mem. chunk is 0 */
|
2013-05-08 21:45:39 +00:00
|
|
|
if (!(memcmp(dst, src, sz)))
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-05-26 03:02:10 +00:00
|
|
|
return false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _rtw_memset(void *pbuf, int c, u32 sz)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
memset(pbuf, c, sz);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-25 14:49:25 +00:00
|
|
|
void _rtw_init_listhead(struct list_head *list)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
INIT_LIST_HEAD(list);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-05-19 04:28:07 +00:00
|
|
|
For the following list_xxx operations,
|
2013-05-08 21:45:39 +00:00
|
|
|
caller must guarantee the atomic context.
|
|
|
|
Otherwise, there will be racing condition.
|
|
|
|
*/
|
2013-07-25 14:49:25 +00:00
|
|
|
u32 rtw_is_list_empty(struct list_head *phead)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
if (list_empty(phead))
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-05-26 03:02:10 +00:00
|
|
|
return false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-25 14:49:25 +00:00
|
|
|
void rtw_list_insert_head(struct list_head *plist, struct list_head *phead)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
list_add(plist, phead);
|
|
|
|
}
|
|
|
|
|
2013-07-25 14:49:25 +00:00
|
|
|
void rtw_list_insert_tail(struct list_head *plist, struct list_head *phead)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
list_add_tail(plist, phead);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Caller must check if the list is empty before calling rtw_list_delete
|
|
|
|
*/
|
|
|
|
|
2013-07-24 19:17:51 +00:00
|
|
|
void _rtw_init_sema(struct semaphore *sema, int init_val)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
sema_init(sema, init_val);
|
|
|
|
}
|
|
|
|
|
2013-07-24 19:17:51 +00:00
|
|
|
void _rtw_free_sema(struct semaphore *sema)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-26 02:17:38 +00:00
|
|
|
}
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-24 19:17:51 +00:00
|
|
|
void _rtw_up_sema(struct semaphore *sema)
|
2013-05-26 02:17:38 +00:00
|
|
|
{
|
|
|
|
up(sema);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-24 19:17:51 +00:00
|
|
|
u32 _rtw_down_sema(struct semaphore *sema)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
if (down_interruptible(sema))
|
|
|
|
return _FAIL;
|
|
|
|
else
|
|
|
|
return _SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-07-24 19:00:39 +00:00
|
|
|
void _rtw_mutex_init(struct mutex *pmutex)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
mutex_init(pmutex);
|
|
|
|
}
|
|
|
|
|
2013-07-24 19:00:39 +00:00
|
|
|
void _rtw_mutex_free(struct mutex *pmutex)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
mutex_destroy(pmutex);
|
|
|
|
}
|
|
|
|
|
2013-07-24 20:00:47 +00:00
|
|
|
void _rtw_spinlock_init(spinlock_t *plock)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
spin_lock_init(plock);
|
|
|
|
}
|
|
|
|
|
2013-07-24 20:00:47 +00:00
|
|
|
void _rtw_spinlock_free(spinlock_t *plock)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-24 22:55:38 +00:00
|
|
|
void _rtw_init_queue(struct __queue *pqueue)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
_rtw_init_listhead(&(pqueue->queue));
|
|
|
|
_rtw_spinlock_init(&(pqueue->lock));
|
|
|
|
}
|
|
|
|
|
2013-07-24 22:55:38 +00:00
|
|
|
u32 _rtw_queue_empty(struct __queue *pqueue)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-26 02:17:38 +00:00
|
|
|
return rtw_is_list_empty(&(pqueue->queue));
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-25 14:49:25 +00:00
|
|
|
u32 rtw_end_of_queue_search(struct list_head *head, struct list_head *plist)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
if (head == plist)
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-05-26 03:02:10 +00:00
|
|
|
return false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 rtw_get_current_time(void)
|
|
|
|
{
|
|
|
|
return jiffies;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 rtw_systime_to_ms(u32 systime)
|
|
|
|
{
|
|
|
|
return systime * 1000 / HZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 rtw_ms_to_systime(u32 ms)
|
|
|
|
{
|
|
|
|
return ms * HZ / 1000;
|
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
/* the input parameter start use the same unit as returned by
|
|
|
|
* rtw_get_current_time */
|
2013-05-08 21:45:39 +00:00
|
|
|
inline s32 rtw_get_passing_time_ms(u32 start)
|
|
|
|
{
|
|
|
|
return rtw_systime_to_ms(jiffies-start);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline s32 rtw_get_time_interval_ms(u32 start, u32 end)
|
|
|
|
{
|
|
|
|
return rtw_systime_to_ms(end-start);
|
|
|
|
}
|
|
|
|
|
2013-05-19 04:28:07 +00:00
|
|
|
void rtw_sleep_schedulable(int ms)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
u32 delta;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
delta = (ms * HZ)/1000;/* ms) */
|
|
|
|
if (delta == 0)
|
|
|
|
delta = 1;/* 1 ms */
|
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
if (schedule_timeout(delta) != 0)
|
|
|
|
return;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void rtw_msleep_os(int ms)
|
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
msleep((unsigned int)ms);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-26 02:17:38 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
void rtw_usleep_os(int us)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
if (1 < (us/1000))
|
2013-05-26 02:17:38 +00:00
|
|
|
msleep(1);
|
|
|
|
else
|
2013-08-10 17:57:27 +00:00
|
|
|
msleep((us/1000) + 1);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void rtw_mdelay_os(int ms)
|
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
mdelay((unsigned long)ms);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-26 02:17:38 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
void rtw_udelay_os(int us)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
udelay((unsigned long)us);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-06-03 19:52:18 +00:00
|
|
|
void rtw_yield_os(void)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
yield();
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RTW_SUSPEND_LOCK_NAME "rtw_wifi"
|
|
|
|
|
2013-06-03 19:52:18 +00:00
|
|
|
inline void rtw_suspend_lock_init(void)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-03 19:52:18 +00:00
|
|
|
inline void rtw_suspend_lock_uninit(void)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-03 19:52:18 +00:00
|
|
|
inline void rtw_lock_suspend(void)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-03 19:52:18 +00:00
|
|
|
inline void rtw_unlock_suspend(void)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ATOMIC_SET(ATOMIC_T *v, int i)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
atomic_set(v, i);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int ATOMIC_READ(ATOMIC_T *v)
|
|
|
|
{
|
|
|
|
return atomic_read(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ATOMIC_ADD(ATOMIC_T *v, int i)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
atomic_add(i, v);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-26 02:17:38 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
inline void ATOMIC_SUB(ATOMIC_T *v, int i)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
atomic_sub(i, v);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void ATOMIC_INC(ATOMIC_T *v)
|
|
|
|
{
|
|
|
|
atomic_inc(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ATOMIC_DEC(ATOMIC_T *v)
|
|
|
|
{
|
|
|
|
atomic_dec(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int ATOMIC_ADD_RETURN(ATOMIC_T *v, int i)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
return atomic_add_return(i, v);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int ATOMIC_SUB_RETURN(ATOMIC_T *v, int i)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
return atomic_sub_return(i, v);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int ATOMIC_INC_RETURN(ATOMIC_T *v)
|
|
|
|
{
|
|
|
|
return atomic_inc_return(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int ATOMIC_DEC_RETURN(ATOMIC_T *v)
|
|
|
|
{
|
|
|
|
return atomic_dec_return(v);
|
|
|
|
}
|
|
|
|
|
2014-11-15 23:58:17 +00:00
|
|
|
static const struct device_type wlan_type = {
|
|
|
|
.name = "wlan",
|
|
|
|
};
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
struct net_device *rtw_alloc_etherdev_with_old_priv(int sizeof_priv,
|
|
|
|
void *old_priv)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct net_device *pnetdev;
|
|
|
|
struct rtw_netdev_priv_indicator *pnpi;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
pnetdev = alloc_etherdev_mq(sizeof(struct rtw_netdev_priv_indicator), 4);
|
2013-05-08 21:45:39 +00:00
|
|
|
if (!pnetdev)
|
|
|
|
goto RETURN;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-11-15 23:58:17 +00:00
|
|
|
pnetdev->dev.type = &wlan_type;
|
2013-05-08 21:45:39 +00:00
|
|
|
pnpi = netdev_priv(pnetdev);
|
2013-08-10 17:57:27 +00:00
|
|
|
pnpi->priv = old_priv;
|
|
|
|
pnpi->sizeof_priv = sizeof_priv;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
RETURN:
|
|
|
|
return pnetdev;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct net_device *rtw_alloc_etherdev(int sizeof_priv)
|
|
|
|
{
|
|
|
|
struct net_device *pnetdev;
|
|
|
|
struct rtw_netdev_priv_indicator *pnpi;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
pnetdev = alloc_etherdev_mq(sizeof(struct rtw_netdev_priv_indicator), 4);
|
2013-05-08 21:45:39 +00:00
|
|
|
if (!pnetdev)
|
|
|
|
goto RETURN;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pnpi = netdev_priv(pnetdev);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pnpi->priv = rtw_zvmalloc(sizeof_priv);
|
|
|
|
if (!pnpi->priv) {
|
|
|
|
free_netdev(pnetdev);
|
|
|
|
pnetdev = NULL;
|
|
|
|
goto RETURN;
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
pnpi->sizeof_priv = sizeof_priv;
|
2013-05-08 21:45:39 +00:00
|
|
|
RETURN:
|
|
|
|
return pnetdev;
|
|
|
|
}
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
void rtw_free_netdev(struct net_device *netdev)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct rtw_netdev_priv_indicator *pnpi;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (!netdev)
|
2013-05-08 21:45:39 +00:00
|
|
|
goto RETURN;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pnpi = netdev_priv(netdev);
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (!pnpi->priv)
|
2013-05-08 21:45:39 +00:00
|
|
|
goto RETURN;
|
|
|
|
|
|
|
|
rtw_vmfree(pnpi->priv, pnpi->sizeof_priv);
|
|
|
|
free_netdev(netdev);
|
|
|
|
|
|
|
|
RETURN:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-27 01:08:39 +00:00
|
|
|
int rtw_change_ifname(struct adapter *padapter, const char *ifname)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct net_device *pnetdev;
|
2013-11-29 22:10:20 +00:00
|
|
|
struct net_device *cur_pnetdev;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct rereg_nd_name_data *rereg_priv;
|
|
|
|
int ret;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (!padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
goto error;
|
|
|
|
|
2013-11-29 22:10:20 +00:00
|
|
|
cur_pnetdev = padapter->pnetdev;
|
2013-05-08 21:45:39 +00:00
|
|
|
rereg_priv = &padapter->rereg_nd_name_priv;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
/* free the old_pnetdev */
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rereg_priv->old_pnetdev) {
|
2013-05-08 21:45:39 +00:00
|
|
|
free_netdev(rereg_priv->old_pnetdev);
|
|
|
|
rereg_priv->old_pnetdev = NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (!rtnl_is_locked())
|
2013-05-08 21:45:39 +00:00
|
|
|
unregister_netdev(cur_pnetdev);
|
|
|
|
else
|
|
|
|
unregister_netdevice(cur_pnetdev);
|
|
|
|
|
|
|
|
rtw_proc_remove_one(cur_pnetdev);
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
rereg_priv->old_pnetdev = cur_pnetdev;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pnetdev = rtw_init_netdev(padapter);
|
|
|
|
if (!pnetdev) {
|
|
|
|
ret = -1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SET_NETDEV_DEV(pnetdev, dvobj_to_dev(adapter_to_dvobj(padapter)));
|
|
|
|
|
|
|
|
rtw_init_netdev_name(pnetdev, ifname);
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pnetdev->dev_addr, padapter->eeprompriv.mac_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (!rtnl_is_locked())
|
2013-05-08 21:45:39 +00:00
|
|
|
ret = register_netdev(pnetdev);
|
|
|
|
else
|
|
|
|
ret = register_netdevice(pnetdev);
|
2013-08-10 17:57:27 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
RT_TRACE(_module_hci_intfs_c_, _drv_err_,
|
|
|
|
("register_netdev() failed\n"));
|
2013-05-08 21:45:39 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
rtw_proc_init_one(pnetdev);
|
|
|
|
return 0;
|
|
|
|
error:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 rtw_modular64(u64 x, u64 y)
|
|
|
|
{
|
|
|
|
return do_div(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 rtw_division64(u64 x, u64 y)
|
|
|
|
{
|
|
|
|
do_div(x, y);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rtw_buf_free(u8 **buf, u32 *buf_len)
|
|
|
|
{
|
2013-10-19 17:45:47 +00:00
|
|
|
*buf_len = 0;
|
|
|
|
kfree(*buf);
|
|
|
|
*buf = NULL;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void rtw_buf_update(u8 **buf, u32 *buf_len, u8 *src, u32 src_len)
|
|
|
|
{
|
|
|
|
u32 ori_len = 0, dup_len = 0;
|
|
|
|
u8 *ori = NULL;
|
|
|
|
u8 *dup = NULL;
|
|
|
|
|
|
|
|
if (!buf || !buf_len)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!src || !src_len)
|
|
|
|
goto keep_ori;
|
|
|
|
|
|
|
|
/* duplicate src */
|
|
|
|
dup = rtw_malloc(src_len);
|
|
|
|
if (dup) {
|
|
|
|
dup_len = src_len;
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(dup, src, dup_len);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
keep_ori:
|
|
|
|
ori = *buf;
|
|
|
|
ori_len = *buf_len;
|
|
|
|
|
|
|
|
/* replace buf with dup */
|
|
|
|
*buf_len = 0;
|
|
|
|
*buf = dup;
|
|
|
|
*buf_len = dup_len;
|
|
|
|
|
|
|
|
/* free ori */
|
2013-10-19 17:45:47 +00:00
|
|
|
kfree(ori);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* rtw_cbuf_full - test if cbuf is full
|
|
|
|
* @cbuf: pointer of struct rtw_cbuf
|
|
|
|
*
|
2013-05-26 03:02:10 +00:00
|
|
|
* Returns: true if cbuf is full
|
2013-05-08 21:45:39 +00:00
|
|
|
*/
|
|
|
|
inline bool rtw_cbuf_full(struct rtw_cbuf *cbuf)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
return (cbuf->write == cbuf->read-1) ? true : false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* rtw_cbuf_empty - test if cbuf is empty
|
|
|
|
* @cbuf: pointer of struct rtw_cbuf
|
|
|
|
*
|
2013-05-26 03:02:10 +00:00
|
|
|
* Returns: true if cbuf is empty
|
2013-05-08 21:45:39 +00:00
|
|
|
*/
|
|
|
|
inline bool rtw_cbuf_empty(struct rtw_cbuf *cbuf)
|
|
|
|
{
|
2013-08-10 17:57:27 +00:00
|
|
|
return (cbuf->write == cbuf->read) ? true : false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* rtw_cbuf_push - push a pointer into cbuf
|
|
|
|
* @cbuf: pointer of struct rtw_cbuf
|
|
|
|
* @buf: pointer to push in
|
|
|
|
*
|
|
|
|
* Lock free operation, be careful of the use scheme
|
2013-05-26 03:02:10 +00:00
|
|
|
* Returns: true push success
|
2013-05-08 21:45:39 +00:00
|
|
|
*/
|
|
|
|
bool rtw_cbuf_push(struct rtw_cbuf *cbuf, void *buf)
|
|
|
|
{
|
|
|
|
if (rtw_cbuf_full(cbuf))
|
|
|
|
return _FAIL;
|
|
|
|
|
|
|
|
if (0)
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("%s on %u\n", __func__, cbuf->write);
|
2013-05-08 21:45:39 +00:00
|
|
|
cbuf->bufs[cbuf->write] = buf;
|
|
|
|
cbuf->write = (cbuf->write+1)%cbuf->size;
|
|
|
|
|
|
|
|
return _SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* rtw_cbuf_pop - pop a pointer from cbuf
|
|
|
|
* @cbuf: pointer of struct rtw_cbuf
|
|
|
|
*
|
|
|
|
* Lock free operation, be careful of the use scheme
|
|
|
|
* Returns: pointer popped out
|
|
|
|
*/
|
|
|
|
void *rtw_cbuf_pop(struct rtw_cbuf *cbuf)
|
|
|
|
{
|
|
|
|
void *buf;
|
|
|
|
if (rtw_cbuf_empty(cbuf))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (0)
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("%s on %u\n", __func__, cbuf->read);
|
2013-05-08 21:45:39 +00:00
|
|
|
buf = cbuf->bufs[cbuf->read];
|
|
|
|
cbuf->read = (cbuf->read+1)%cbuf->size;
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-29 22:10:20 +00:00
|
|
|
* rtw_cbuf_alloc - allocate a rtw_cbuf with given size and do initialization
|
2013-05-08 21:45:39 +00:00
|
|
|
* @size: size of pointer
|
|
|
|
*
|
|
|
|
* Returns: pointer of srtuct rtw_cbuf, NULL for allocation failure
|
|
|
|
*/
|
|
|
|
struct rtw_cbuf *rtw_cbuf_alloc(u32 size)
|
|
|
|
{
|
|
|
|
struct rtw_cbuf *cbuf;
|
|
|
|
|
2013-08-10 17:57:27 +00:00
|
|
|
cbuf = (struct rtw_cbuf *)rtw_malloc(sizeof(*cbuf) +
|
|
|
|
sizeof(void *)*size);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
if (cbuf) {
|
2013-08-10 17:57:27 +00:00
|
|
|
cbuf->write = 0;
|
|
|
|
cbuf->read = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
cbuf->size = size;
|
|
|
|
}
|
|
|
|
return cbuf;
|
|
|
|
}
|