⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rt_linux.h

📁 Linux下的RT系列无线网卡驱动,可以直接在x86平台上编译
💻 H
📖 第 1 页 / 共 2 页
字号:
/* ************************************************************************* * Ralink Tech Inc. * 4F, No. 2 Technology 5th Rd. * Science-based Industrial Park * Hsin-chu, Taiwan, R.O.C. * * (c) Copyright 2002-2007, Ralink Technology, Inc. * * This program is free software; you can redistribute it and/or modify  *  * it under the terms of the GNU General Public License as published by  *  * the Free Software Foundation; either version 2 of the License, or     *  * (at your option) any later version.                                   *  *                                                                       *  * 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.,                                       *  * 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *  *                                                                       *  ************************************************************************* */ /***********************************************************************//*                                                                     *//*   Program:    rt_linux.c                                            *//*   Created:    4/21/2006 1:17:38 PM                                  *//*   Author:     Wu Xi-Kun                                             *//*   Comments:   `description`                                         *//*                                                                     *//*---------------------------------------------------------------------*//*                                                                     *//* History:                                                            *//*    Revision 1.1 4/21/2006 1:17:38 PM  xsikun                        *//*    Initial revision                                                 *//*                                                                     *//***********************************************************************/#include <linux/module.h>#include <linux/version.h>#include <linux/kernel.h>#include <linux/spinlock.h>#include <linux/init.h>#include <linux/string.h>#include <linux/timer.h>#include <linux/errno.h>#include <linux/slab.h>#include <linux/interrupt.h>#include <linux/pci.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <linux/skbuff.h>#include <linux/ethtool.h>#include <linux/wireless.h>#include <linux/proc_fs.h>#include <linux/delay.h>#include <linux/if_arp.h>#include <linux/ctype.h>#include <linux/vmalloc.h>#include <linux/wireless.h>#include <net/iw_handler.h>// load firmware#define __KERNEL_SYSCALLS__#include <linux/unistd.h>#include <asm/uaccess.h>#define MEM_ALLOC_FLAG      (GFP_ATOMIC) //(GFP_DMA | GFP_ATOMIC)//#define CONFIG_CKIP_SUPPORT#undef __inline#define __inline	   static inline #define CHAR            signed char#define INT             signed int#define SHORT           signed short#define UINT            unsigned int #undef  ULONG           //#define ULONG           unsigned int#define ULONG           unsigned long /* 32-bit in 32-bit CPU or										 64-bit in 64-bit CPU */#define USHORT          unsigned short#define UCHAR           unsigned chartypedef int					INT32;typedef int (*HARD_START_XMIT_FUNC)(struct sk_buff *skb, struct net_device *net_dev);// add by kathy#ifdef CONFIG_STA_SUPPORT#define PROFILE_PATH			"/etc/Wireless/RT2860STA/RT2860STA.dat"#define RT2860_IMAGE_FILE_NAME  "/etc/Wireless/RT2860STA/RT2860STA.bin"#define NIC_DEVICE_NAME			"RT2860STA"#define DRIVER_VERSION			"1.3.0.0"#endif // CONFIG_STA_SUPPORT //#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)#define RTMP_TIME_AFTER(a,b)		\	(typecheck(unsigned long, (unsigned long)a) && \	 typecheck(unsigned long, (unsigned long)b) && \	 ((long)(b) - (long)(a) < 0))#define RTMP_TIME_AFTER_EQ(a,b)	\	(typecheck(unsigned long, (unsigned long)a) && \	 typecheck(unsigned long, (unsigned long)b) && \	 ((long)(a) - (long)(b) >= 0))#define RTMP_TIME_BEFORE(a,b)	RTMP_TIME_AFTER_EQ(b,a)#else#define RTMP_TIME_AFTER(a,b) time_after(a, b)#endif#define BOOLEAN         unsigned char//#define LARGE_INTEGER s64#define VOID            void//#define LONG            int#define LONG 			long#define LONGLONG        s64#define ULONGLONG       u64typedef VOID            *PVOID;typedef CHAR            *PCHAR;typedef UCHAR           *PUCHAR;typedef USHORT          *PUSHORT;typedef LONG            *PLONG;typedef ULONG           *PULONG;typedef UINT            *PUINT;#define OS_HZ			HZtypedef union _LARGE_INTEGER {    struct {        UINT LowPart;        INT32 HighPart;    } ;    struct {        UINT LowPart;        INT32 HighPart;    } u;    s64 QuadPart;} LARGE_INTEGER;#define ETH_LENGTH_OF_ADDRESS	6#define IN#define OUT#define TRUE        1#define FALSE       0#define NDIS_STATUS                             INT#define NDIS_STATUS_SUCCESS                     0x00#define NDIS_STATUS_FAILURE                     0x01#define NDIS_STATUS_INVALID_DATA				0x02#define NDIS_STATUS_RESOURCES                   0x03#define MIN_NET_DEVICE_FOR_AID			0x00		//0x00~0x3f#define MIN_NET_DEVICE_FOR_MBSSID		0x00		//0x00,0x10,0x20,0x30#define MIN_NET_DEVICE_FOR_WDS			0x10		//0x40,0x50,0x60,0x70#define MIN_NET_DEVICE_FOR_APCLI		0x20#ifdef CONFIG_STA_SUPPORT#define NDIS_PACKET_TYPE_DIRECTED		0#define NDIS_PACKET_TYPE_MULTICAST		1#define NDIS_PACKET_TYPE_BROADCAST		2#define NDIS_PACKET_TYPE_ALL_MULTICAST	3#endif // CONFIG_STA_SUPPORT //struct os_lock  {	spinlock_t		lock;	unsigned long  	flags;};struct os_cookie {	struct pci_dev 			*pci_dev;	dma_addr_t		  		pAd_pa;		struct tasklet_struct 	rx_done_task;	struct tasklet_struct 	mgmt_dma_done_task;	struct tasklet_struct 	ac0_dma_done_task;	struct tasklet_struct 	ac1_dma_done_task;	struct tasklet_struct 	ac2_dma_done_task;	struct tasklet_struct 	ac3_dma_done_task;	struct tasklet_struct 	hcca_dma_done_task;	struct tasklet_struct	fifo_statistic_full_task;	unsigned long			apd_pid; //802.1x daemon pid	INT						ioctl_if_type;	INT 					ioctl_if;};	typedef struct _VIRTUAL_ADAPTER{	struct net_device		*RtmpDev;	struct net_device		*VirtualDev;} VIRTUAL_ADAPTER, PVIRTUAL_ADAPTER;#undef  ASSERT#define ASSERT(x)                                                               \{                                                                               \    if (!(x))                                                                   \    {                                                                           \        printk(KERN_WARNING __FILE__ ":%d assert " #x "failed\n", __LINE__);    \    }                                                                           \}	typedef struct os_cookie	* POS_COOKIE;	typedef struct pci_dev 		* PPCI_DEV;	typedef struct net_device	* PNET_DEV;typedef void				* PNDIS_PACKET;typedef char				NDIS_PACKET;typedef PNDIS_PACKET		* PPNDIS_PACKET;typedef	dma_addr_t			NDIS_PHYSICAL_ADDRESS;typedef	dma_addr_t			* PNDIS_PHYSICAL_ADDRESS;//typedef struct timer_list	RALINK_TIMER_STRUCT;//typedef struct timer_list	* PRALINK_TIMER_STRUCT;//typedef struct os_lock		NDIS_SPIN_LOCK;typedef spinlock_t			NDIS_SPIN_LOCK;typedef struct timer_list	NDIS_MINIPORT_TIMER;typedef void				* NDIS_HANDLE;typedef char 				* PNDIS_BUFFER;void hex_dump(char *str, unsigned char *pSrcBufVA, unsigned int SrcBufLen);dma_addr_t linux_pci_map_single(void *handle, void *ptr, size_t size, int direction);void linux_pci_unmap_single(void *handle, dma_addr_t dma_addr, size_t size, int direction);////////////////////////////////////////// MOVE TO rtmp.h ?/////////////////////////////////////////#define PKTSRC_NDIS             0x7f#define PKTSRC_DRIVER           0x0f#define PRINT_MAC(addr)	\	addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]#define RT2860_PCI_DEVICE_ID		0x0601#define PCI_MAP_SINGLE(_handle, _ptr, _size, _dir) \	linux_pci_map_single(_handle, _ptr, _size, _dir)#define PCI_UNMAP_SINGLE(_handle, _ptr, _size, _dir) \	linux_pci_unmap_single(_handle, _ptr, _size, _dir)#define BEACON_FRAME_DMA_CACHE_WBACK(_ptr, _size)	\	dma_cache_wback(_ptr, _size)//////////////////////////////////////////////////////////////////////////////////////#define NdisMIndicateStatus(_w, _x, _y, _z)#define NdisMediaStateConnected		1#define NdisMediaStateDisconnected	0typedef unsigned int	NDIS_MEDIA_STATE;typedef struct timer_list	RTMP_OS_TIMER;typedef struct  _RALINK_TIMER_STRUCT    {    RTMP_OS_TIMER		TimerObj;       // Ndis Timer object	BOOLEAN				Valid;			// Set to True when call RTMPInitTimer    BOOLEAN             State;          // True if timer cancelled    BOOLEAN             Repeat;         // True if periodic timer    ULONG               TimerValue;     // Timer value in milliseconds	ULONG				cookie;			// os specific object}   RALINK_TIMER_STRUCT, *PRALINK_TIMER_STRUCT;//#define DBG	1////  MACRO for debugging information//#ifdef DBGextern ULONG    RTDebugLevel;#define DBGPRINT_RAW(Level, Fmt)    \{                                   \    if (Level <= RTDebugLevel)      \    {                               \        printk Fmt;               \    }                               \}#define DBGPRINT(Level, Fmt)    DBGPRINT_RAW(Level, Fmt)#define DBGPRINT_ERR(Fmt)           \{                                   \    printk("ERROR!!! ");          \    printk Fmt;                  \}#define DBGPRINT_S(Status, Fmt)		\{									\	printk Fmt;					\}			#else#define DBGPRINT(Level, Fmt)#define DBGPRINT_RAW(Level, Fmt)#define DBGPRINT_S(Status, Fmt)#define DBGPRINT_ERR(Fmt)#endif////  spin_lock enhanced for Nested spin lock//#define NdisAllocateSpinLock(__lock)      \{                                       \    spin_lock_init((spinlock_t *)(__lock));               \}#define NdisFreeSpinLock(lock)          \{                                       \}#define RTMP_SEM_LOCK(__lock)					\{												\	spin_lock_bh((spinlock_t *)(__lock));				\}#define RTMP_SEM_UNLOCK(__lock)					\{												\	spin_unlock_bh((spinlock_t *)(__lock));				\}#define RTMP_IRQ_LOCK(__lock, __irqflags)					\{													\	spin_lock_irqsave((spinlock_t *)__lock, __irqflags);	\	pAd->irq_disabled |= 1; \}#define RTMP_IRQ_UNLOCK(__lock, __irqflag)						\{														\	pAd->irq_disabled &= 0; \	spin_unlock_irqrestore((spinlock_t *)(__lock), ((unsigned long)__irqflag));	\}#if 1#ifdef INF_TWINPASS

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -