
Added QCA5424 target header files based on E2R38 under QCA5424 to make fw-api project compatible to host. Update the CE base address for QCA5424. patch_3: updated the E3R42 hw header files Change-Id: I2c0d42d37faa2082199c8b1f97bac31f1d5ddea5 CRs-Fixed: 3822334
76 lines
2.5 KiB
C
76 lines
2.5 KiB
C
|
|
/*
|
|
* Copyright (c) 2024, Qualcomm Innovation Center, Inc. All rights reserved.
|
|
* SPDX-License-Identifier: ISC
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _L_SIG_B_INFO_H_
|
|
#define _L_SIG_B_INFO_H_
|
|
#if !defined(__ASSEMBLER__)
|
|
#endif
|
|
|
|
#define NUM_OF_DWORDS_L_SIG_B_INFO 1
|
|
|
|
|
|
struct l_sig_b_info {
|
|
#ifndef WIFI_BIT_ORDER_BIG_ENDIAN
|
|
uint32_t rate : 4,
|
|
length : 12,
|
|
reserved : 15,
|
|
rx_integrity_check_passed : 1;
|
|
#else
|
|
uint32_t rx_integrity_check_passed : 1,
|
|
reserved : 15,
|
|
length : 12,
|
|
rate : 4;
|
|
#endif
|
|
};
|
|
|
|
|
|
|
|
|
|
#define L_SIG_B_INFO_RATE_OFFSET 0x00000000
|
|
#define L_SIG_B_INFO_RATE_LSB 0
|
|
#define L_SIG_B_INFO_RATE_MSB 3
|
|
#define L_SIG_B_INFO_RATE_MASK 0x0000000f
|
|
|
|
|
|
|
|
|
|
#define L_SIG_B_INFO_LENGTH_OFFSET 0x00000000
|
|
#define L_SIG_B_INFO_LENGTH_LSB 4
|
|
#define L_SIG_B_INFO_LENGTH_MSB 15
|
|
#define L_SIG_B_INFO_LENGTH_MASK 0x0000fff0
|
|
|
|
|
|
|
|
|
|
#define L_SIG_B_INFO_RESERVED_OFFSET 0x00000000
|
|
#define L_SIG_B_INFO_RESERVED_LSB 16
|
|
#define L_SIG_B_INFO_RESERVED_MSB 30
|
|
#define L_SIG_B_INFO_RESERVED_MASK 0x7fff0000
|
|
|
|
|
|
|
|
|
|
#define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_OFFSET 0x00000000
|
|
#define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_LSB 31
|
|
#define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_MSB 31
|
|
#define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_MASK 0x80000000
|
|
|
|
|
|
|
|
#endif
|