亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? common_atheros_sdiostack_ar6000_wlan.patch

?? ar6k 的WIFI驅動
?? PATCH
?? 第 1 頁 / 共 5 頁
字號:
Index: linux-2.6.18/drivers/sdio/function/Kconfig===================================================================--- linux-2.6.18.orig/drivers/sdio/function/Kconfig+++ linux-2.6.18/drivers/sdio/function/Kconfig@@ -1,36 +1,42 @@  menu "SDIO function drivers" +config SDIO_AR6000_WLAN+	tristate "ar6000 wireless networking over sdio"+	default m+	help+	  good luck.+ config SDIO_BLUETOOTH-       tristate "bluetooth over sdio"-       default m-       help-	good luck.+	tristate "bluetooth over sdio"+	default m+	help+	  good luck.   config SDIO_GPS-       tristate "gps over sdio"-       default m-       help-	good luck.+	tristate "gps over sdio"+	default m+	help+	  good luck.  config SDIO_MEMORY-       tristate "memory card over sdio"-       default m-       help-	good luck.+	tristate "memory card over sdio"+	default m+	help+	  good luck.  config SDIO_SAMPLE-       tristate "sample function driver for sdio"-       default m-       help-	good luck.+	tristate "sample function driver for sdio"+	default m+	help+	  good luck.  config SDIO_BENCHMARK-       tristate "benchmark function drivers for sdio"-       default m-       help-	good luck.+	tristate "benchmark function drivers for sdio"+	default m+	help+	  good luck.   endmenuIndex: linux-2.6.18/drivers/sdio/function/Makefile===================================================================--- linux-2.6.18.orig/drivers/sdio/function/Makefile+++ linux-2.6.18/drivers/sdio/function/Makefile@@ -6,3 +6,4 @@ obj-$(CONFIG_SDIO_GPS)			+= gps/ obj-$(CONFIG_SDIO_MEMORY)		+= memory/ obj-$(CONFIG_SDIO_SAMPLE)		+= sample/ obj-$(CONFIG_SDIO_BENCHMARK)		+= bench/+obj-$(CONFIG_SDIO_AR6000_WLAN)		+= wlan/Index: linux-2.6.18/drivers/sdio/function/wlan/Makefile===================================================================--- /dev/null+++ linux-2.6.18/drivers/sdio/function/wlan/Makefile@@ -0,0 +1,4 @@+#+# SDIO wlan ar600 card function driver+#+obj-$(CONFIG_SDIO_AR6000_WLAN)		+= ar6000/Index: linux-2.6.18/drivers/sdio/function/wlan/ar6000/Makefile===================================================================--- /dev/null+++ linux-2.6.18/drivers/sdio/function/wlan/ar6000/Makefile@@ -0,0 +1,29 @@+#+#  AR6K Kernel Module makefile.+#+REV ?= 2+++EXTRA_CFLAGS += -DLINUX -DDEBUG -D__KERNEL__ -DHTC_RAW_INTERFACE \+ 	-DSEND_EVENT_TO_APP#\+ 	-DMULTIPLE_FRAMES_PER_INTERRUPT -DAR6000REV$(REV) \+ 	-DBLOCK_TX_PATH_FLAG \++EXTRA_CFLAGS += -DKERNEL_2_6++obj-dir		:= /bmi /htc /hif++obj-m += ar6000.o+ar6000-objs += htc/htc.o		\+ 	htc/htc_send.o			\+ 	htc/htc_recv.o			\+ 	htc/htc_utils.o			\+ 	htc/htc_events.o		\+ 	bmi/bmi.o			\+	hif/hif.o			\+ 	ar6000/ar6000_drv.o		\+ 	wmi/wmi.o			\+ 	wlan/wlan_node.o		\+ 	wlan/wlan_recv_beacon.o		\+ 	wlan/wlan_utils.o+Index: linux-2.6.18/drivers/sdio/function/wlan/ar6000/include/bmi.h===================================================================--- /dev/null+++ linux-2.6.18/drivers/sdio/function/wlan/ar6000/include/bmi.h@@ -0,0 +1,76 @@+/*+ * Copyright (c) 2004-2006 Atheros Communications Inc.+ *+ *  Wireless Network driver for Atheros AR6001+ *+ *  This program is free software; you can redistribute it and/or modify+ *  it under the terms of the GNU General Public License version 2 as+ *  published by the Free Software Foundation;+ *+ *  Software distributed under the License is distributed on an "AS+ *  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or+ *  implied. See the License for the specific language governing+ *  rights and limitations under the License.+ *+ *+ * BMI declarations and prototypes+ */++#ifndef _BMI_H_+#define _BMI_H_++#ifdef __cplusplus+extern "C" {+#endif /* __cplusplus */++/* Header files */+#include "../include/athdefs.h"+#include "../include/athtypes.h"+#include "../include/hif.h"+#include "../include/osapi.h"++void+BMIInit(void);++A_STATUS+BMIDone(HIF_DEVICE *device);++A_STATUS+BMIGetTargetId(HIF_DEVICE *device, A_UINT32 *id);++A_STATUS+BMIReadMemory(HIF_DEVICE *device,+              A_UINT32 address,+              A_UCHAR *buffer,+              A_UINT32 length);++A_STATUS+BMIWriteMemory(HIF_DEVICE *device,+               A_UINT32 address,+               A_UCHAR *buffer,+               A_UINT32 length);++A_STATUS+BMIExecute(HIF_DEVICE *device,+           A_UINT32 address,+           A_UINT32 *param);++A_STATUS+BMISetAppStart(HIF_DEVICE *device,+               A_UINT32 address);++A_STATUS+BMIReadSOCRegister(HIF_DEVICE *device,+                   A_UINT32 address,+                   A_UINT32 *param);++A_STATUS+BMIWriteSOCRegister(HIF_DEVICE *device,+                    A_UINT32 address,+                    A_UINT32 param);++#ifdef __cplusplus+}+#endif++#endif /* _BMI_H_ */Index: linux-2.6.18/drivers/sdio/function/wlan/ar6000/ar6000/ar6000_drv.h===================================================================--- /dev/null+++ linux-2.6.18/drivers/sdio/function/wlan/ar6000/ar6000/ar6000_drv.h@@ -0,0 +1,133 @@+/*+ * Copyright (c) 2004-2006 Atheros Communications Inc.+ *+ *  Wireless Network driver for Atheros AR6001+ *+ *  This program is free software; you can redistribute it and/or modify+ *  it under the terms of the GNU General Public License version 2 as+ *  published by the Free Software Foundation;+ *+ *  Software distributed under the License is distributed on an "AS+ *  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or+ *  implied. See the License for the specific language governing+ *  rights and limitations under the License.+ *+ *+ * This file contains the definitions for the AR6000 linux driver.+ *+ */++#ifndef _AR6000_H_+#define _AR6000_H_++#ifdef __cplusplus+extern "C" {+#endif++#define MAX_AR6000                  1+#define AR6000_MAX_RX_BUFFERS       16+#define AR6000_BUFFER_SIZE          1552+#define AR6000_DATA_OFFSET          64+#define AR6000_TX_TIMEOUT           10+#define AR6000_ETH_ADDR_LEN         6+#define AR6000_MAX_ENDPOINTS        4+#define MAX_NODE_NUM                15+#define MAX_COOKIE_NUM              150++struct ar_wep_key {+    A_UINT8                 arKeyIndex;+    A_UINT8                 arKeyLen;+    A_UINT8                 arKey[64];+} ;++struct ar_node_mapping {+    A_UINT8                 macAddress[6];+    A_UINT8                 epId;+    A_UINT8                 txPending;+};++struct ar_cookie {+    A_UINT32               arc_bp[2];    /* Must be first field */+    struct ar_cookie *arc_list_next;+};++typedef struct ar6_softc {+    struct net_device       *arNetDev;    /* net_device pointer */+    void                    *arWmi;+    int                     arTxPending[AR6000_MAX_ENDPOINTS];+    int                     arTotalTxDataPending;+    A_UINT8                 arNumDataEndPts;+    A_BOOL                  arWmiEnabled;+    A_BOOL                  arWmiReady;+    A_BOOL                  arConnected;+    void                    *arHtcTarget;+    void                    *arHifDevice;+    spinlock_t              arLock;+    struct semaphore        arSem;+    int                     arRxBuffers[AR6000_MAX_ENDPOINTS];+    int                     arSsidLen;+    u_char                  arSsid[32];+    A_UINT8                 arNetworkType;+    A_UINT8                 arDot11AuthMode;+    A_UINT8                 arAuthMode;+    A_UINT8                 arPairwiseCrypto;+    A_UINT8                 arPairwiseCryptoLen;+    A_UINT8                 arGroupCrypto;+    A_UINT8                 arGroupCryptoLen;+    A_UINT8                 arDefTxKeyIndex;+    struct ar_wep_key       arWepKeyList[WMI_MAX_KEY_INDEX + 1];+    A_UINT8                 arBssid[6];+    A_UINT8                 arReqBssid[6];+    A_UINT16                arChannelHint;+    A_UINT16                arBssChannel;+    A_UINT16                arListenInterval;+    struct ar6000_version   arVersion;+    A_INT8                  arRssi;+    A_UINT8                 arTxPwr;+    A_BOOL                  arTxPwrSet;+    A_INT32                 arBitRate;+    struct net_device_stats arNetStats;+    struct iw_statistics    arIwStats;+    A_INT8                  arNumChannels;+    A_UINT16                arChannelList[32];+    A_UINT32                arRegCode;+    A_BOOL                  statsUpdatePending;+    TARGET_STATS            arTargetStats;+    A_INT8                  arMaxRetries;+    A_UINT8                 arPhyCapability;+    AR6000_WLAN_STATE       arWlanState;+    struct ar_node_mapping  arNodeMap[MAX_NODE_NUM];+    A_UINT8                 arIbssPsEnable;+    A_UINT8                 arNodeNum;+    A_UINT8                 arNexEpId;+    struct ar_cookie        *arCookieList;+    A_BOOL                  arConnectPending;+} AR_SOFTC_T;++struct ar_giwscan_param {+    char    *current_ev;+    char    *end_buf;+    A_BOOL  firstPass;+};++#define AR6000_STAT_INC(ar, stat)       (ar->arNetStats.stat++)++#define AR6000_SPIN_LOCK(lock, param)   do {                            \+    if (irqs_disabled()) {                                              \+        AR_DEBUG_PRINTF("IRQs disabled:AR6000_LOCK\n");                 \+    }                                                                   \+    spin_lock_bh(lock);                                                 \+} while (0)++#define AR6000_SPIN_UNLOCK(lock, param) do {                            \+    if (irqs_disabled()) {                                              \+        AR_DEBUG_PRINTF("IRQs disabled: AR6000_UNLOCK\n");              \+    }                                                                   \+    spin_unlock_bh(lock);                                               \+} while (0)++#ifdef __cplusplus+}+#endif++#endif /* _AR6000_H_ */Index: linux-2.6.18/drivers/sdio/function/wlan/ar6000/include/ar6000_api.h===================================================================--- /dev/null+++ linux-2.6.18/drivers/sdio/function/wlan/ar6000/include/ar6000_api.h@@ -0,0 +1,84 @@+/*+ * Copyright (c) 2004-2006 Atheros Communications Inc.+ *+ *  Wireless Network driver for Atheros AR6001+ *+ *  This program is free software; you can redistribute it and/or modify+ *  it under the terms of the GNU General Public License version 2 as+ *  published by the Free Software Foundation;+ *+ *  Software distributed under the License is distributed on an "AS+ *  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or+ *  implied. See the License for the specific language governing+ *  rights and limitations under the License.+ *+ *+ * This file contains the API to access the OS dependent atheros host driver+ * by the WMI or WLAN generic modules.+ *+ */++#ifndef _AR6000_API_H_+#define _AR6000_API_H_++#ifdef __cplusplus+extern "C" {+#endif++struct ar6_softc;++void ar6000_ready_event(void *devt, A_UINT8 *datap, A_UINT8 phyCap);+A_UINT8 ar6000_iptos_to_userPriority(A_UINT8 *pkt);+A_STATUS ar6000_control_tx(void *devt, void *osbuf, int endPt);+void ar6000_connect_event(struct ar6_softc *ar, A_UINT16 channel,+                          A_UINT8 *bssid, A_UINT16 listenInterval,+                          A_UINT8 beaconIeLen, A_UINT8 assocReqLen,+                          A_UINT8 assocRespLen,A_UINT8 *assocInfo);+void ar6000_disconnect_event(struct ar6_softc *ar, A_UINT8 reason,+                             A_UINT8 *bssid, A_UINT8 assocRespLen,+                             A_UINT8 *assocInfo);+void ar6000_tkip_micerr_event(struct ar6_softc *ar, A_UINT8 keyid,+                              A_BOOL ismcast);+void ar6000_bitrate_rx(void *devt, A_INT32 rateKbps);+void ar6000_channelList_rx(void *devt, A_INT8 numChan, A_UINT16 *chanList);+void ar6000_regDomain_event(struct ar6_softc *ar, A_UINT32 regCode);+void ar6000_txPwr_rx(void *devt, A_UINT8 txPwr);+void ar6000_neighborReport_event(struct ar6_softc *ar, int numAps,+                                 WMI_NEIGHBOR_INFO *info);+void ar6000_set_numdataendpts(struct ar6_softc *ar, A_UINT32 num);+void ar6000_scanComplete_event(struct ar6_softc *ar);+void ar6000_targetStats_event(struct ar6_softc *ar,  WMI_TARGET_STATS *pStats);+void ar6000_rssiThreshold_event(struct ar6_softc *, WMI_RSSI_THRESHOLD_VAL);+void ar6000_reportError_event(struct ar6_softc *, WMI_TARGET_ERROR_VAL errorVal);+void ar6000_cac_event(struct ar6_softc *ar, A_UINT8 ac, A_UINT8 cac_indication,+                                A_UINT8 statusCode, A_UINT8 *tspecSuggestion);++void+ar6000_roam_tbl_event(struct ar6_softc *ar, WMI_TARGET_ROAM_TBL *pTbl);++void+ar6000_roam_data_event(struct ar6_softc **ar, WMI_TARGET_ROAM_DATA *p);++void ar6000_dset_open_req(void *devt,+                          A_UINT32 id,+                          A_UINT32 targ_handle,+                          A_UINT32 targ_reply_fn,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久这里都是精品| 国产精品盗摄一区二区三区| 一区二区三区色| 日韩三级在线观看| 日本va欧美va精品发布| 欧美军同video69gay| 亚洲chinese男男1069| 欧美图区在线视频| 视频在线观看一区| 91精品国产91热久久久做人人 | 欧美va亚洲va国产综合| 裸体一区二区三区| 国产三级精品在线| 欧洲生活片亚洲生活在线观看| 亚洲最大成人综合| 日韩亚洲欧美中文三级| 国产福利一区二区三区视频在线| 国产精品久久久久aaaa樱花 | 亚洲国产精品一区二区尤物区| 欧美色老头old∨ideo| 色欧美乱欧美15图片| 调教+趴+乳夹+国产+精品| 欧美色中文字幕| 麻豆国产一区二区| 国产精品你懂的在线| 欧美中文字幕不卡| 激情文学综合丁香| 亚洲精品视频观看| 欧美精品一区二区三区蜜桃视频| 成人深夜视频在线观看| 亚洲国产视频a| 久久综合久久久久88| 91久久一区二区| 精品一区二区三区在线播放| 国产精品理论在线观看| 7777女厕盗摄久久久| 国产丶欧美丶日本不卡视频| 亚洲一区二区三区四区五区中文| 精品国产一区二区三区av性色| 91丨porny丨中文| 精品一区二区三区的国产在线播放| 中文字幕一区在线| 亚洲国产精品影院| 蜜臀久久99精品久久久久久9| 久久综合一区二区| 色哟哟日韩精品| 狠狠色丁香婷婷综合久久片| 亚洲人成7777| 久久久亚洲精华液精华液精华液| 欧美自拍偷拍午夜视频| 国产一区二区免费在线| 亚洲电影一级片| 亚洲视频图片小说| 国产日产精品一区| 欧美成人国产一区二区| 在线视频欧美精品| 91视频.com| 国产精品亚洲人在线观看| 免费人成精品欧美精品| 五月天一区二区| 亚洲免费在线看| 久久精品免费在线观看| 日韩色视频在线观看| 欧美日韩午夜在线视频| 色综合天天综合给合国产| 中文字幕第一区第二区| 一区二区三区视频在线观看| 国产日产欧美精品一区二区三区| 欧美一级欧美三级在线观看| 欧美视频三区在线播放| 91老师片黄在线观看| 白白色 亚洲乱淫| 国产成人鲁色资源国产91色综| 九九精品视频在线看| 免费观看91视频大全| 日韩综合在线视频| 亚洲3atv精品一区二区三区| 亚洲中国最大av网站| 一区二区三区自拍| 亚洲综合激情网| 一二三四社区欧美黄| 夜夜嗨av一区二区三区网页 | 国产成人啪免费观看软件| 久久se这里有精品| 国产一区二区三区在线观看精品 | 国产一区欧美日韩| 国产精品一区二区久久精品爱涩| 久久久高清一区二区三区| caoporm超碰国产精品| 国产美女精品人人做人人爽| 国产精品自产自拍| 成人综合婷婷国产精品久久| 成人免费高清视频| av在线不卡免费看| 91成人看片片| 在线不卡中文字幕播放| 日韩网站在线看片你懂的| 精品奇米国产一区二区三区| 久久久久久久网| 亚洲欧美怡红院| 亚洲r级在线视频| 国内久久精品视频| 成人精品视频一区| 欧美亚洲综合一区| 欧美电影免费观看高清完整版在 | 亚洲第一精品在线| 狂野欧美性猛交blacked| 国产一区二区三区精品欧美日韩一区二区三区| 国产一区二区女| 国产精品色哟哟| 成人丝袜18视频在线观看| 美女一区二区视频| 欧美aaaaaa午夜精品| 蜜臀91精品一区二区三区| 韩国欧美国产一区| 成人毛片视频在线观看| 91视频在线看| 26uuu国产日韩综合| 日韩视频在线观看一区二区| 在线观看不卡一区| 欧美zozo另类异族| 中文字幕亚洲综合久久菠萝蜜| 亚洲午夜日本在线观看| 国内一区二区在线| 欧美色图天堂网| 久久久激情视频| 三级不卡在线观看| 亚洲色图20p| 亚洲欧美经典视频| 亚洲成人www| 国产精品一二三四区| 日本高清成人免费播放| 精品国产欧美一区二区| 一区二区三区.www| 黄色资源网久久资源365| 在线观看一区二区精品视频| www国产成人| 免费成人在线网站| 色哟哟日韩精品| 中文字幕va一区二区三区| 美女国产一区二区| 欧美日韩午夜在线视频| 日韩理论片一区二区| 奇米色一区二区| 欧美在线啊v一区| 亚洲人成网站影音先锋播放| 精品系列免费在线观看| 欧美日韩黄色一区二区| 麻豆91精品视频| 欧美在线免费观看视频| 亚洲视频在线一区观看| 丁香天五香天堂综合| 精品久久久影院| 日韩av在线播放中文字幕| 强制捆绑调教一区二区| 成人国产精品视频| 亚洲精品在线一区二区| 亚洲一二三级电影| 91久久久免费一区二区| 国产精品久久久99| 国产suv一区二区三区88区| 日韩精品一区二| 欧美丰满一区二区免费视频| 亚洲国产精品久久久久秋霞影院| 亚洲精品高清在线观看| 欧美影片第一页| 日本vs亚洲vs韩国一区三区二区| 日韩欧美一卡二卡| 欧美影院一区二区| 免费的成人av| 亚洲一区二区综合| 欧美一区二区三区视频在线 | 欧美视频一区在线| 中文字幕av不卡| 成人美女视频在线观看18| 久久久国产精华| 91丝袜美腿高跟国产极品老师| 国产午夜精品一区二区三区视频 | 欧美一区三区四区| 男女性色大片免费观看一区二区 | 夜夜嗨av一区二区三区中文字幕| 色婷婷综合激情| 亚洲午夜成aⅴ人片| 欧美美女网站色| 日本欧美在线看| 久久综合99re88久久爱| 成人午夜视频免费看| 亚洲视频一区二区在线观看| 精品1区2区3区| 日本成人在线一区| 久久久久久久久99精品| 成人a免费在线看| 日本欧美在线观看| 亚洲黄色尤物视频| 欧美在线免费播放| 日日夜夜精品免费视频| 日韩一区二区三区四区| 激情偷乱视频一区二区三区| ...中文天堂在线一区| 欧美日免费三级在线|