ar5311reg.h
来自「Atheros wifi driver source code」· C头文件 代码 · 共 40 行
H
40 行
/* * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting * Copyright (c) 2002-2005 Atheros Communications, Inc. * All rights reserved. * * $Id: ar5311reg.h,v 1.1.1.1 2006/09/12 03:45:27 steven Exp $ */#ifndef _DEV_ATH_AR5311REG_H_#define _DEV_ATH_AR5311REG_H_/* * Definitions for the Atheros 5311 chipset. */#define AR5311_QDCLKGATE 0x005c /* MAC QCU/DCU clock gating control */#define AR5311_QDCLKGATE_QCU_M 0x0000FFFF /* QCU clock disable */#define AR5311_QDCLKGATE_DCU_M 0x07FF0000 /* DCU clock disable */#define AR5311_RXCFG_DEF_RX_ANTENNA 0x00000008 /* Default Receive Antenna *//* * NOTE: MAC_5211/MAC_5311 difference * On Oahu the TX latency field has increased from 6 bits to 9 bits. * The RX latency field is unchanged but is shifted over 3 bits. */#define AR5311_USEC_TX_LAT_M 0x000FC000 /* tx latency (usec) */#define AR5311_USEC_TX_LAT_S 14#define AR5311_USEC_RX_LAT_M 0x03F00000 /* rx latency (usec) */#define AR5311_USEC_RX_LAT_S 20/* * NOTE: MAC_5211/MAC_5311 difference * On Maui2/Spirit the frame sequence number is controlled per DCU. * On Oahu the frame sequence number is global across all DCUs and * is controlled */#define AR5311_D_MISC_SEQ_NUM_CONTROL 0x01000000 /* seq num local or global */#define AR5311_DIAG_USE_ECO 0x00000400 /* "super secret" enable ECO */#endif /* _DEV_ATH_AR5311REG_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?