1 /******************************************************************************
2  *
3  * Copyright(c) 2009-2014  Realtek Corporation.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * The full GNU General Public License is included in this distribution in the
15  * file called LICENSE.
16  *
17  * Contact Information:
18  * wlanfae <wlanfae@realtek.com>
19  * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
20  * Hsinchu 300, Taiwan.
21  *
22  * Larry Finger <Larry.Finger@lwfinger.net>
23  *
24  *****************************************************************************/
25 
26 #ifndef __RTL8723BE_DEF_H__
27 #define __RTL8723BE_DEF_H__
28 
29 #define HAL_PRIME_CHNL_OFFSET_DONT_CARE		0
30 #define HAL_PRIME_CHNL_OFFSET_LOWER		1
31 #define HAL_PRIME_CHNL_OFFSET_UPPER		2
32 
33 
34 #define RX_MPDU_QUEUE				0
35 #define CHIP_8723B				(BIT(1) | BIT(2))
36 #define NORMAL_CHIP				BIT(3)
37 #define CHIP_VENDOR_SMIC			BIT(8)
38 /* Currently only for RTL8723B */
39 #define EXT_VENDOR_ID				(BIT(18) | BIT(19))
40 
41 enum rtl_desc_qsel {
42 	QSLT_BK = 0x2,
43 	QSLT_BE = 0x0,
44 	QSLT_VI = 0x5,
45 	QSLT_VO = 0x7,
46 	QSLT_BEACON = 0x10,
47 	QSLT_HIGH = 0x11,
48 	QSLT_MGNT = 0x12,
49 	QSLT_CMD = 0x13,
50 };
51 
52 enum rtl_desc8723e_rate {
53 	DESC92C_RATE1M = 0x00,
54 	DESC92C_RATE2M = 0x01,
55 	DESC92C_RATE5_5M = 0x02,
56 	DESC92C_RATE11M = 0x03,
57 
58 	DESC92C_RATE6M = 0x04,
59 	DESC92C_RATE9M = 0x05,
60 	DESC92C_RATE12M = 0x06,
61 	DESC92C_RATE18M = 0x07,
62 	DESC92C_RATE24M = 0x08,
63 	DESC92C_RATE36M = 0x09,
64 	DESC92C_RATE48M = 0x0a,
65 	DESC92C_RATE54M = 0x0b,
66 
67 	DESC92C_RATEMCS0 = 0x0c,
68 	DESC92C_RATEMCS1 = 0x0d,
69 	DESC92C_RATEMCS2 = 0x0e,
70 	DESC92C_RATEMCS3 = 0x0f,
71 	DESC92C_RATEMCS4 = 0x10,
72 	DESC92C_RATEMCS5 = 0x11,
73 	DESC92C_RATEMCS6 = 0x12,
74 	DESC92C_RATEMCS7 = 0x13,
75 	DESC92C_RATEMCS8 = 0x14,
76 	DESC92C_RATEMCS9 = 0x15,
77 	DESC92C_RATEMCS10 = 0x16,
78 	DESC92C_RATEMCS11 = 0x17,
79 	DESC92C_RATEMCS12 = 0x18,
80 	DESC92C_RATEMCS13 = 0x19,
81 	DESC92C_RATEMCS14 = 0x1a,
82 	DESC92C_RATEMCS15 = 0x1b,
83 };
84 #endif
85