mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-07-03 03:56:00 +00:00
rtl8188eu: Copy the code from the kernel into a new branch
This version takes advantage of all the cleanups to the code. It has been modified to build on older kernels. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
30901e601a
commit
77d786b6e8
156 changed files with 6564 additions and 41050 deletions
|
@ -1,30 +1,13 @@
|
|||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
*
|
||||
******************************************************************************/
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/* Copyright(c) 2007 - 2012 Realtek Corporation. */
|
||||
|
||||
#define _OSDEP_SERVICE_C_
|
||||
|
||||
#include <osdep_service.h>
|
||||
#include <drv_types.h>
|
||||
#include <recv_osdep.h>
|
||||
#include <linux/vmalloc.h>
|
||||
#include <rtw_ioctl_set.h>
|
||||
#include "../include/osdep_service.h"
|
||||
#include "../include/drv_types.h"
|
||||
#include "../include/recv_osdep.h"
|
||||
#include "../include/rtw_ioctl_set.h"
|
||||
#include <linux/version.h>
|
||||
|
||||
/*
|
||||
* Translate the OS dependent @param error_code to OS independent RTW_STATUS_CODE
|
||||
|
@ -37,82 +20,20 @@ inline int RTW_STATUS_CODE(int error_code)
|
|||
return _FAIL;
|
||||
}
|
||||
|
||||
u32 rtw_atoi(u8 *s)
|
||||
{
|
||||
int num = 0, flag = 0;
|
||||
int i;
|
||||
for (i = 0; i <= strlen(s); i++) {
|
||||
if (s[i] >= '0' && s[i] <= '9')
|
||||
num = num * 10 + s[i] - '0';
|
||||
else if (s[0] == '-' && i == 0)
|
||||
flag = 1;
|
||||
else
|
||||
break;
|
||||
}
|
||||
if (flag == 1)
|
||||
num = num * -1;
|
||||
return num;
|
||||
}
|
||||
|
||||
inline u8 *_rtw_vmalloc(u32 sz)
|
||||
{
|
||||
u8 *pbuf;
|
||||
pbuf = vmalloc(sz);
|
||||
return pbuf;
|
||||
}
|
||||
|
||||
inline u8 *_rtw_zvmalloc(u32 sz)
|
||||
{
|
||||
u8 *pbuf;
|
||||
pbuf = _rtw_vmalloc(sz);
|
||||
if (pbuf != NULL)
|
||||
memset(pbuf, 0, sz);
|
||||
return pbuf;
|
||||
}
|
||||
|
||||
inline void _rtw_vmfree(u8 *pbuf, u32 sz)
|
||||
{
|
||||
vfree(pbuf);
|
||||
}
|
||||
|
||||
u8 *_rtw_malloc(u32 sz)
|
||||
{
|
||||
u8 *pbuf = NULL;
|
||||
|
||||
pbuf = kmalloc(sz, in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
|
||||
return pbuf;
|
||||
}
|
||||
|
||||
u8 *_rtw_zmalloc(u32 sz)
|
||||
{
|
||||
u8 *pbuf = _rtw_malloc(sz);
|
||||
|
||||
if (pbuf != NULL)
|
||||
memset(pbuf, 0, sz);
|
||||
return pbuf;
|
||||
}
|
||||
|
||||
void *rtw_malloc2d(int h, int w, int size)
|
||||
{
|
||||
int j;
|
||||
|
||||
void **a = (void **)rtw_zmalloc(h*sizeof(void *) + h*w*size);
|
||||
if (a == NULL) {
|
||||
pr_info("%s: alloc memory fail!\n", __func__);
|
||||
void **a = kzalloc(h * sizeof(void *) + h * w * size, GFP_KERNEL);
|
||||
if (!a)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
for (j = 0; j < h; j++)
|
||||
a[j] = ((char *)(a+h)) + j*w*size;
|
||||
a[j] = ((char *)(a + h)) + j * w * size;
|
||||
|
||||
return a;
|
||||
}
|
||||
|
||||
void rtw_mfree2d(void *pbuf, int h, int w, int size)
|
||||
{
|
||||
kfree(pbuf);
|
||||
}
|
||||
|
||||
/*
|
||||
For the following list_xxx operations,
|
||||
caller must guarantee the atomic context.
|
||||
|
@ -122,34 +43,6 @@ Otherwise, there will be racing condition.
|
|||
Caller must check if the list is empty before calling rtw_list_delete
|
||||
*/
|
||||
|
||||
u32 _rtw_down_sema(struct semaphore *sema)
|
||||
{
|
||||
if (down_interruptible(sema))
|
||||
return _FAIL;
|
||||
else
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
void _rtw_mutex_init(struct mutex *pmutex)
|
||||
{
|
||||
mutex_init(pmutex);
|
||||
}
|
||||
|
||||
void _rtw_mutex_free(struct mutex *pmutex)
|
||||
{
|
||||
mutex_destroy(pmutex);
|
||||
}
|
||||
|
||||
void _rtw_spinlock_free(spinlock_t *plock)
|
||||
{
|
||||
}
|
||||
|
||||
void _rtw_init_queue(struct __queue *pqueue)
|
||||
{
|
||||
INIT_LIST_HEAD(&(pqueue->queue));
|
||||
spin_lock_init(&(pqueue->lock));
|
||||
}
|
||||
|
||||
inline u32 rtw_systime_to_ms(u32 systime)
|
||||
{
|
||||
return systime * 1000 / HZ;
|
||||
|
@ -163,120 +56,15 @@ inline u32 rtw_ms_to_systime(u32 ms)
|
|||
/* the input parameter start use the same unit as jiffies */
|
||||
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);
|
||||
}
|
||||
|
||||
void rtw_sleep_schedulable(int ms)
|
||||
{
|
||||
u32 delta;
|
||||
|
||||
delta = (ms * HZ)/1000;/* ms) */
|
||||
if (delta == 0)
|
||||
delta = 1;/* 1 ms */
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
if (schedule_timeout(delta) != 0)
|
||||
return;
|
||||
}
|
||||
|
||||
void rtw_msleep_os(int ms)
|
||||
{
|
||||
msleep((unsigned int)ms);
|
||||
return rtw_systime_to_ms(jiffies - start);
|
||||
}
|
||||
|
||||
void rtw_usleep_os(int us)
|
||||
{
|
||||
if (1 < (us/1000))
|
||||
if (1 < (us / 1000))
|
||||
msleep(1);
|
||||
else
|
||||
msleep((us/1000) + 1);
|
||||
}
|
||||
|
||||
void rtw_mdelay_os(int ms)
|
||||
{
|
||||
mdelay((unsigned long)ms);
|
||||
}
|
||||
|
||||
void rtw_udelay_os(int us)
|
||||
{
|
||||
udelay((unsigned long)us);
|
||||
}
|
||||
|
||||
void rtw_yield_os(void)
|
||||
{
|
||||
yield();
|
||||
}
|
||||
|
||||
#define RTW_SUSPEND_LOCK_NAME "rtw_wifi"
|
||||
|
||||
inline void rtw_suspend_lock_init(void)
|
||||
{
|
||||
}
|
||||
|
||||
inline void rtw_suspend_lock_uninit(void)
|
||||
{
|
||||
}
|
||||
|
||||
inline void rtw_lock_suspend(void)
|
||||
{
|
||||
}
|
||||
|
||||
inline void rtw_unlock_suspend(void)
|
||||
{
|
||||
}
|
||||
|
||||
inline void ATOMIC_SET(ATOMIC_T *v, int i)
|
||||
{
|
||||
atomic_set(v, i);
|
||||
}
|
||||
|
||||
inline int ATOMIC_READ(ATOMIC_T *v)
|
||||
{
|
||||
return atomic_read(v);
|
||||
}
|
||||
|
||||
inline void ATOMIC_ADD(ATOMIC_T *v, int i)
|
||||
{
|
||||
atomic_add(i, v);
|
||||
}
|
||||
|
||||
inline void ATOMIC_SUB(ATOMIC_T *v, int i)
|
||||
{
|
||||
atomic_sub(i, v);
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
return atomic_add_return(i, v);
|
||||
}
|
||||
|
||||
inline int ATOMIC_SUB_RETURN(ATOMIC_T *v, int i)
|
||||
{
|
||||
return atomic_sub_return(i, v);
|
||||
}
|
||||
|
||||
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);
|
||||
msleep((us / 1000) + 1);
|
||||
}
|
||||
|
||||
static const struct device_type wlan_type = {
|
||||
|
@ -313,7 +101,7 @@ struct net_device *rtw_alloc_etherdev(int sizeof_priv)
|
|||
|
||||
pnpi = netdev_priv(pnetdev);
|
||||
|
||||
pnpi->priv = rtw_zvmalloc(sizeof_priv);
|
||||
pnpi->priv = vzalloc(sizeof_priv);
|
||||
if (!pnpi->priv) {
|
||||
free_netdev(pnetdev);
|
||||
pnetdev = NULL;
|
||||
|
@ -337,7 +125,7 @@ void rtw_free_netdev(struct net_device *netdev)
|
|||
if (!pnpi->priv)
|
||||
goto RETURN;
|
||||
|
||||
rtw_vmfree(pnpi->priv, pnpi->sizeof_priv);
|
||||
vfree(pnpi->priv);
|
||||
free_netdev(netdev);
|
||||
|
||||
RETURN:
|
||||
|
@ -368,8 +156,6 @@ int rtw_change_ifname(struct adapter *padapter, const char *ifname)
|
|||
else
|
||||
unregister_netdevice(cur_pnetdev);
|
||||
|
||||
rtw_proc_remove_one(cur_pnetdev);
|
||||
|
||||
rereg_priv->old_pnetdev = cur_pnetdev;
|
||||
|
||||
pnetdev = rtw_init_netdev(padapter);
|
||||
|
@ -385,44 +171,24 @@ int rtw_change_ifname(struct adapter *padapter, const char *ifname)
|
|||
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 17, 0)
|
||||
memcpy(pnetdev->dev_addr, padapter->eeprompriv.mac_addr, ETH_ALEN);
|
||||
#else
|
||||
dev_addr_set(pnetdev, padapter->eeprompriv.mac_addr);
|
||||
eth_hw_addr_set(pnetdev, padapter->eeprompriv.mac_addr);
|
||||
#endif
|
||||
|
||||
if (!rtnl_is_locked())
|
||||
ret = register_netdev(pnetdev);
|
||||
else
|
||||
ret = register_netdevice(pnetdev);
|
||||
if (ret != 0) {
|
||||
RT_TRACE(_module_hci_intfs_c_, _drv_err_,
|
||||
("register_netdev() failed\n"));
|
||||
if (ret != 0)
|
||||
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)
|
||||
{
|
||||
*buf_len = 0;
|
||||
kfree(*buf);
|
||||
*buf = NULL;
|
||||
}
|
||||
|
||||
void rtw_buf_update(u8 **buf, u32 *buf_len, u8 *src, u32 src_len)
|
||||
{
|
||||
u32 ori_len = 0, dup_len = 0;
|
||||
u32 dup_len = 0;
|
||||
u8 *ori = NULL;
|
||||
u8 *dup = NULL;
|
||||
|
||||
|
@ -433,7 +199,7 @@ void rtw_buf_update(u8 **buf, u32 *buf_len, u8 *src, u32 src_len)
|
|||
goto keep_ori;
|
||||
|
||||
/* duplicate src */
|
||||
dup = rtw_malloc(src_len);
|
||||
dup = kmalloc(src_len, GFP_ATOMIC);
|
||||
if (dup) {
|
||||
dup_len = src_len;
|
||||
memcpy(dup, src, dup_len);
|
||||
|
@ -441,7 +207,6 @@ void rtw_buf_update(u8 **buf, u32 *buf_len, u8 *src, u32 src_len)
|
|||
|
||||
keep_ori:
|
||||
ori = *buf;
|
||||
ori_len = *buf_len;
|
||||
|
||||
/* replace buf with dup */
|
||||
*buf_len = 0;
|
||||
|
@ -452,17 +217,6 @@ keep_ori:
|
|||
kfree(ori);
|
||||
}
|
||||
|
||||
/**
|
||||
* rtw_cbuf_full - test if cbuf is full
|
||||
* @cbuf: pointer of struct rtw_cbuf
|
||||
*
|
||||
* Returns: true if cbuf is full
|
||||
*/
|
||||
inline bool rtw_cbuf_full(struct rtw_cbuf *cbuf)
|
||||
{
|
||||
return (cbuf->write == cbuf->read-1) ? true : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* rtw_cbuf_empty - test if cbuf is empty
|
||||
* @cbuf: pointer of struct rtw_cbuf
|
||||
|
@ -474,27 +228,6 @@ inline bool rtw_cbuf_empty(struct rtw_cbuf *cbuf)
|
|||
return (cbuf->write == cbuf->read) ? true : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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
|
||||
* Returns: true push success
|
||||
*/
|
||||
bool rtw_cbuf_push(struct rtw_cbuf *cbuf, void *buf)
|
||||
{
|
||||
if (rtw_cbuf_full(cbuf))
|
||||
return _FAIL;
|
||||
|
||||
if (0)
|
||||
DBG_88E("%s on %u\n", __func__, cbuf->write);
|
||||
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
|
||||
|
@ -508,10 +241,8 @@ void *rtw_cbuf_pop(struct rtw_cbuf *cbuf)
|
|||
if (rtw_cbuf_empty(cbuf))
|
||||
return NULL;
|
||||
|
||||
if (0)
|
||||
DBG_88E("%s on %u\n", __func__, cbuf->read);
|
||||
buf = cbuf->bufs[cbuf->read];
|
||||
cbuf->read = (cbuf->read+1)%cbuf->size;
|
||||
cbuf->read = (cbuf->read + 1) % cbuf->size;
|
||||
|
||||
return buf;
|
||||
}
|
||||
|
@ -526,8 +257,7 @@ struct rtw_cbuf *rtw_cbuf_alloc(u32 size)
|
|||
{
|
||||
struct rtw_cbuf *cbuf;
|
||||
|
||||
cbuf = (struct rtw_cbuf *)rtw_malloc(sizeof(*cbuf) +
|
||||
sizeof(void *)*size);
|
||||
cbuf = kmalloc(struct_size(cbuf, bufs, size), GFP_KERNEL);
|
||||
|
||||
if (cbuf) {
|
||||
cbuf->write = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue