18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* Copyright(c) 2009-2014 Realtek Corporation.*/ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef __RTL8723BE_DEF_H__ 58c2ecf20Sopenharmony_ci#define __RTL8723BE_DEF_H__ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#define HAL_PRIME_CHNL_OFFSET_DONT_CARE 0 88c2ecf20Sopenharmony_ci#define HAL_PRIME_CHNL_OFFSET_LOWER 1 98c2ecf20Sopenharmony_ci#define HAL_PRIME_CHNL_OFFSET_UPPER 2 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ci#define RX_MPDU_QUEUE 0 138c2ecf20Sopenharmony_ci#define CHIP_8723B (BIT(1) | BIT(2)) 148c2ecf20Sopenharmony_ci#define NORMAL_CHIP BIT(3) 158c2ecf20Sopenharmony_ci#define CHIP_VENDOR_SMIC BIT(8) 168c2ecf20Sopenharmony_ci/* Currently only for RTL8723B */ 178c2ecf20Sopenharmony_ci#define EXT_VENDOR_ID (BIT(18) | BIT(19)) 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_cienum rtl_desc_qsel { 208c2ecf20Sopenharmony_ci QSLT_BK = 0x2, 218c2ecf20Sopenharmony_ci QSLT_BE = 0x0, 228c2ecf20Sopenharmony_ci QSLT_VI = 0x5, 238c2ecf20Sopenharmony_ci QSLT_VO = 0x7, 248c2ecf20Sopenharmony_ci QSLT_BEACON = 0x10, 258c2ecf20Sopenharmony_ci QSLT_HIGH = 0x11, 268c2ecf20Sopenharmony_ci QSLT_MGNT = 0x12, 278c2ecf20Sopenharmony_ci QSLT_CMD = 0x13, 288c2ecf20Sopenharmony_ci}; 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_cienum rtl_desc8723e_rate { 318c2ecf20Sopenharmony_ci DESC92C_RATE1M = 0x00, 328c2ecf20Sopenharmony_ci DESC92C_RATE2M = 0x01, 338c2ecf20Sopenharmony_ci DESC92C_RATE5_5M = 0x02, 348c2ecf20Sopenharmony_ci DESC92C_RATE11M = 0x03, 358c2ecf20Sopenharmony_ci 368c2ecf20Sopenharmony_ci DESC92C_RATE6M = 0x04, 378c2ecf20Sopenharmony_ci DESC92C_RATE9M = 0x05, 388c2ecf20Sopenharmony_ci DESC92C_RATE12M = 0x06, 398c2ecf20Sopenharmony_ci DESC92C_RATE18M = 0x07, 408c2ecf20Sopenharmony_ci DESC92C_RATE24M = 0x08, 418c2ecf20Sopenharmony_ci DESC92C_RATE36M = 0x09, 428c2ecf20Sopenharmony_ci DESC92C_RATE48M = 0x0a, 438c2ecf20Sopenharmony_ci DESC92C_RATE54M = 0x0b, 448c2ecf20Sopenharmony_ci 458c2ecf20Sopenharmony_ci DESC92C_RATEMCS0 = 0x0c, 468c2ecf20Sopenharmony_ci DESC92C_RATEMCS1 = 0x0d, 478c2ecf20Sopenharmony_ci DESC92C_RATEMCS2 = 0x0e, 488c2ecf20Sopenharmony_ci DESC92C_RATEMCS3 = 0x0f, 498c2ecf20Sopenharmony_ci DESC92C_RATEMCS4 = 0x10, 508c2ecf20Sopenharmony_ci DESC92C_RATEMCS5 = 0x11, 518c2ecf20Sopenharmony_ci DESC92C_RATEMCS6 = 0x12, 528c2ecf20Sopenharmony_ci DESC92C_RATEMCS7 = 0x13, 538c2ecf20Sopenharmony_ci DESC92C_RATEMCS8 = 0x14, 548c2ecf20Sopenharmony_ci DESC92C_RATEMCS9 = 0x15, 558c2ecf20Sopenharmony_ci DESC92C_RATEMCS10 = 0x16, 568c2ecf20Sopenharmony_ci DESC92C_RATEMCS11 = 0x17, 578c2ecf20Sopenharmony_ci DESC92C_RATEMCS12 = 0x18, 588c2ecf20Sopenharmony_ci DESC92C_RATEMCS13 = 0x19, 598c2ecf20Sopenharmony_ci DESC92C_RATEMCS14 = 0x1a, 608c2ecf20Sopenharmony_ci DESC92C_RATEMCS15 = 0x1b, 618c2ecf20Sopenharmony_ci}; 628c2ecf20Sopenharmony_ci#endif 63