123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- /******************************************************************************
- *
- * Copyright(c) 2007 - 2013 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
- *
- *
- ******************************************************************************/
- #ifndef __OSDEP_LINUX_SERVICE_H_
- #define __OSDEP_LINUX_SERVICE_H_
- #include <linux/version.h>
- #include <linux/spinlock.h>
- #include <linux/compiler.h>
- #include <linux/kernel.h>
- #include <linux/errno.h>
- #include <linux/init.h>
- #include <linux/slab.h>
- #include <linux/module.h>
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,5))
- #include <linux/kref.h>
- #endif
- //#include <linux/smp_lock.h>
- #include <linux/netdevice.h>
- #include <linux/skbuff.h>
- #include <linux/circ_buf.h>
- #include <asm/uaccess.h>
- #include <asm/byteorder.h>
- #include <asm/atomic.h>
- #include <asm/io.h>
- #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26))
- #include <asm/semaphore.h>
- #else
- #include <linux/semaphore.h>
- #endif
- #include <linux/sem.h>
- #include <linux/sched.h>
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0))
- #include <linux/sched/signal.h>
- #endif
- #include <linux/etherdevice.h>
- #include <linux/wireless.h>
- #include <net/iw_handler.h>
- #include <linux/if_arp.h>
- #include <linux/rtnetlink.h>
- #include <linux/delay.h>
- #include <linux/proc_fs.h> // Necessary because we use the proc fs
- #include <linux/interrupt.h> // for struct tasklet_struct
- #include <linux/ip.h>
- #include <linux/kthread.h>
- #include <linux/list.h>
- #include <linux/vmalloc.h>
- #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,5,41))
- #include <linux/tqueue.h>
- #endif
- #ifdef RTK_DMP_PLATFORM
- #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,12))
- #include <linux/pageremap.h>
- #endif
- #include <asm/io.h>
- #endif
- #ifdef CONFIG_IOCTL_CFG80211
- // #include <linux/ieee80211.h>
- #include <net/ieee80211_radiotap.h>
- #include <net/cfg80211.h>
- #endif //CONFIG_IOCTL_CFG80211
- #ifdef CONFIG_TCP_CSUM_OFFLOAD_TX
- #include <linux/in.h>
- #include <linux/udp.h>
- #endif
- #ifdef CONFIG_HAS_EARLYSUSPEND
- #include <linux/earlysuspend.h>
- #endif //CONFIG_HAS_EARLYSUSPEND
- #ifdef CONFIG_EFUSE_CONFIG_FILE
- #include <linux/fs.h>
- #endif //CONFIG_EFUSE_CONFIG_FILE
- #ifdef CONFIG_USB_HCI
- #include <linux/usb.h>
- #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21))
- #include <linux/usb_ch9.h>
- #else
- #include <linux/usb/ch9.h>
- #endif
- #endif
- #ifdef CONFIG_USB_HCI
- typedef struct urb * PURB;
- #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,22))
- #ifdef CONFIG_USB_SUSPEND
- #define CONFIG_AUTOSUSPEND 1
- #endif
- #endif
- #endif
- typedef struct semaphore _sema;
- typedef spinlock_t _lock;
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
- typedef struct mutex _mutex;
- #else
- typedef struct semaphore _mutex;
- #endif
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- typedef struct legacy_timer_emu {
- struct timer_list t;
- void (*function)(unsigned long);
- unsigned long data;
- } _timer;
- #else
- typedef struct timer_list _timer;
- #endif //(LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- struct __queue {
- struct list_head queue;
- _lock lock;
- };
- typedef struct sk_buff _pkt;
- typedef unsigned char _buffer;
- typedef struct __queue _queue;
- typedef struct list_head _list;
- typedef int _OS_STATUS;
- //typedef u32 _irqL;
- typedef unsigned long _irqL;
- typedef struct net_device * _nic_hdl;
- typedef void* _thread_hdl_;
- typedef int thread_return;
- typedef void* thread_context;
-
- #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 17, 0)
- #define thread_exit() complete_and_exit(NULL, 0)
- #else
- #define thread_exit() kthread_complete_and_exit(NULL, 0)
- #endif
- typedef void timer_hdl_return;
- typedef void* timer_hdl_context;
- #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,41))
- typedef struct work_struct _workitem;
- #else
- typedef struct tq_struct _workitem;
- #endif
- #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24))
- #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
- #endif
- #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22))
- // Porting from linux kernel, for compatible with old kernel.
- static inline unsigned char *skb_tail_pointer(const struct sk_buff *skb)
- {
- return skb->tail;
- }
- static inline void skb_reset_tail_pointer(struct sk_buff *skb)
- {
- skb->tail = skb->data;
- }
- static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
- {
- skb->tail = skb->data + offset;
- }
- static inline unsigned char *skb_end_pointer(const struct sk_buff *skb)
- {
- return skb->end;
- }
- #endif
- __inline static _list *get_next(_list *list)
- {
- return list->next;
- }
- __inline static _list *get_list_head(_queue *queue)
- {
- return (&(queue->queue));
- }
- #define LIST_CONTAINOR(ptr, type, member) \
- ((type *)((char *)(ptr)-(SIZE_T)(&((type *)0)->member)))
- __inline static void _enter_critical(_lock *plock, _irqL *pirqL)
- {
- spin_lock_irqsave(plock, *pirqL);
- }
- __inline static void _exit_critical(_lock *plock, _irqL *pirqL)
- {
- spin_unlock_irqrestore(plock, *pirqL);
- }
- __inline static void _enter_critical_ex(_lock *plock, _irqL *pirqL)
- {
- spin_lock_irqsave(plock, *pirqL);
- }
- __inline static void _exit_critical_ex(_lock *plock, _irqL *pirqL)
- {
- spin_unlock_irqrestore(plock, *pirqL);
- }
- __inline static void _enter_critical_bh(_lock *plock, _irqL *pirqL)
- {
- spin_lock_bh(plock);
- }
- __inline static void _exit_critical_bh(_lock *plock, _irqL *pirqL)
- {
- spin_unlock_bh(plock);
- }
- __inline static int _enter_critical_mutex(_mutex *pmutex, _irqL *pirqL)
- {
- int ret = 0;
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
- //mutex_lock(pmutex);
- ret = mutex_lock_interruptible(pmutex);
- #else
- ret = down_interruptible(pmutex);
- #endif
- return ret;
- }
- __inline static void _exit_critical_mutex(_mutex *pmutex, _irqL *pirqL)
- {
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
- mutex_unlock(pmutex);
- #else
- up(pmutex);
- #endif
- }
- __inline static void rtw_list_delete(_list *plist)
- {
- list_del_init(plist);
- }
- #define RTW_TIMER_HDL_ARGS void *FunctionContext
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- static void legacy_timer_emu_func(struct timer_list *t)
- {
- struct legacy_timer_emu *lt = from_timer(lt, t, t);
- lt->function(lt->data);
- }
- #endif //(LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- __inline static void _init_timer(_timer *ptimer,_nic_hdl nic_hdl,void *pfunc,void* cntx)
- {
- //setup_timer(ptimer, pfunc,(u32)cntx);
- ptimer->function = pfunc;
- ptimer->data = (unsigned long)cntx;
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- timer_setup(&ptimer->t, legacy_timer_emu_func, 0);
- #else
- init_timer(ptimer);
- #endif //(LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- }
- __inline static void _set_timer(_timer *ptimer,u32 delay_time)
- {
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- mod_timer(&ptimer->t, (jiffies+(delay_time * HZ / 1000)));
- #else
- mod_timer(ptimer , (jiffies+(delay_time*HZ/1000)));
- #endif //(LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- }
- __inline static void _cancel_timer(_timer *ptimer,u8 *bcancelled)
- {
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- *bcancelled = del_timer_sync(&ptimer->t) == 1 ? 1 : 0;
- #else
- *bcancelled = del_timer_sync(ptimer) == 1 ? 1 : 0;
- #endif
- }
- __inline static void _init_workitem(_workitem *pwork, void *pfunc, PVOID cntx)
- {
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20))
- INIT_WORK(pwork, pfunc);
- #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,41))
- INIT_WORK(pwork, pfunc,pwork);
- #else
- INIT_TQUEUE(pwork, pfunc,pwork);
- #endif
- }
- __inline static void _set_workitem(_workitem *pwork)
- {
- #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,41))
- schedule_work(pwork);
- #else
- schedule_task(pwork);
- #endif
- }
- __inline static void _cancel_workitem_sync(_workitem *pwork)
- {
- #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,22))
- cancel_work_sync(pwork);
- #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,41))
- flush_scheduled_work();
- #else
- flush_scheduled_tasks();
- #endif
- }
- //
- // Global Mutex: can only be used at PASSIVE level.
- //
- #define ACQUIRE_GLOBAL_MUTEX(_MutexCounter) \
- { \
- while (atomic_inc_return((atomic_t *)&(_MutexCounter)) != 1)\
- { \
- atomic_dec((atomic_t *)&(_MutexCounter)); \
- msleep(10); \
- } \
- }
- #define RELEASE_GLOBAL_MUTEX(_MutexCounter) \
- { \
- atomic_dec((atomic_t *)&(_MutexCounter)); \
- }
- static inline int rtw_netif_queue_stopped(struct net_device *pnetdev)
- {
- #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35))
- return (netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 0)) &&
- netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 1)) &&
- netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 2)) &&
- netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 3)) );
- #else
- return netif_queue_stopped(pnetdev);
- #endif
- }
- static inline void rtw_netif_wake_queue(struct net_device *pnetdev)
- {
- #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35))
- netif_tx_wake_all_queues(pnetdev);
- #else
- netif_wake_queue(pnetdev);
- #endif
- }
- static inline void rtw_netif_start_queue(struct net_device *pnetdev)
- {
- #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35))
- netif_tx_start_all_queues(pnetdev);
- #else
- netif_start_queue(pnetdev);
- #endif
- }
- static inline void rtw_netif_stop_queue(struct net_device *pnetdev)
- {
- #if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35))
- netif_tx_stop_all_queues(pnetdev);
- #else
- netif_stop_queue(pnetdev);
- #endif
- }
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
- #define rtw_signal_process(pid, sig) kill_pid(find_vpid((pid)),(sig), 1)
- #else //(LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
- #define rtw_signal_process(pid, sig) kill_proc((pid), (sig), 1)
- #endif //(LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
- // Suspend lock prevent system from going suspend
- #ifdef CONFIG_WAKELOCK
- #include <linux/wakelock.h>
- #elif defined(CONFIG_ANDROID_POWER)
- #include <linux/android_power.h>
- #endif
- // limitation of path length
- #define PATH_LENGTH_MAX PATH_MAX
- //Atomic integer operations
- #define ATOMIC_T atomic_t
- #define rtw_netdev_priv(netdev) ( ((struct rtw_netdev_priv_indicator *)netdev_priv(netdev))->priv )
- #define NDEV_FMT "%s"
- #define NDEV_ARG(ndev) ndev->name
- #define ADPT_FMT "%s"
- #define ADPT_ARG(adapter) adapter->pnetdev->name
- #define FUNC_NDEV_FMT "%s(%s)"
- #define FUNC_NDEV_ARG(ndev) __func__, ndev->name
- #define FUNC_ADPT_FMT "%s(%s)"
- #define FUNC_ADPT_ARG(adapter) __func__, adapter->pnetdev->name
- struct rtw_netdev_priv_indicator {
- void *priv;
- u32 sizeof_priv;
- };
- struct net_device *rtw_alloc_etherdev_with_old_priv(int sizeof_priv, void *old_priv);
- extern struct net_device * rtw_alloc_etherdev(int sizeof_priv);
- #define STRUCT_PACKED __attribute__ ((packed))
- #endif
|