1 /* SPDX-License-Identifier: GPL-2.0 */
2 /******************************************************************************
3  *
4  * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
5  *
6  ******************************************************************************/
7 #ifndef __RTL8712_RATECTRL_BITDEF_H__
8 #define __RTL8712_RATECTRL_BITDEF_H__
9 
10 /*INIRTSMCS_SEL*/
11 #define	_INIRTSMCS_SEL_MSK		0x3F
12 
13 /* RRSR*/
14 #define	_RRSR_SHORT			BIT(23)
15 #define	_RRSR_RSC_MSK		0x600000
16 #define	_RRSR_RSC_SHT		21
17 #define	_RRSR_BITMAP_MSK	0x0FFFFF
18 #define	_RRSR_BITMAP_SHT	0
19 
20 /* AGGLEN_LMT_H*/
21 #define	_AGGLMT_MCS32_MSK			0xF0
22 #define	_AGGLMT_MCS32_SHT			4
23 #define	_AGGLMT_MCS15_SGI_MSK		0x0F
24 #define	_AGGLMT_MCS15_SGI_SHT		0
25 
26 /* DARFRC*/
27 /* RARFRC*/
28 /* MCS_TXAGC*/
29 /* CCK_TXAGC*/
30 #define	_CCK_MSK			0xFF00
31 #define	_CCK_SHT			8
32 #define	_BARKER_MSK			0x00FF
33 #define	_BARKER_SHT			0
34 
35 #endif	/*	__RTL8712_RATECTRL_BITDEF_H__*/
36 
37