mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-15 03:35:55 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
77 lines
1.4 KiB
C
77 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/* Copyright(c) 2019-2022 Realtek Corporation
|
|
*/
|
|
|
|
#ifndef __RTW89_8852C_H__
|
|
#define __RTW89_8852C_H__
|
|
|
|
#include "core.h"
|
|
|
|
#define RF_PATH_NUM_8852C 2
|
|
|
|
struct rtw8852c_u_efuse {
|
|
u8 rsvd[0x38];
|
|
u8 mac_addr[ETH_ALEN];
|
|
};
|
|
|
|
struct rtw8852c_e_efuse {
|
|
u8 mac_addr[ETH_ALEN];
|
|
};
|
|
|
|
struct rtw8852c_tssi_offset {
|
|
u8 cck_tssi[TSSI_CCK_CH_GROUP_NUM];
|
|
u8 bw40_tssi[TSSI_MCS_2G_CH_GROUP_NUM];
|
|
u8 rsvd[7];
|
|
u8 bw40_1s_tssi_5g[TSSI_MCS_5G_CH_GROUP_NUM];
|
|
} __packed;
|
|
|
|
struct rtw8852c_efuse {
|
|
u8 rsvd[0x210];
|
|
struct rtw8852c_tssi_offset path_a_tssi;
|
|
u8 rsvd1[10];
|
|
struct rtw8852c_tssi_offset path_b_tssi;
|
|
u8 rsvd2[94];
|
|
u8 channel_plan;
|
|
u8 xtal_k;
|
|
u8 rsvd3;
|
|
u8 iqk_lck;
|
|
u8 rsvd4[5];
|
|
u8 reg_setting:2;
|
|
u8 tx_diversity:1;
|
|
u8 rx_diversity:2;
|
|
u8 ac_mode:1;
|
|
u8 module_type:2;
|
|
u8 rsvd5;
|
|
u8 shared_ant:1;
|
|
u8 coex_type:3;
|
|
u8 ant_iso:1;
|
|
u8 radio_on_off:1;
|
|
u8 rsvd6:2;
|
|
u8 eeprom_version;
|
|
u8 customer_id;
|
|
u8 tx_bb_swing_2g;
|
|
u8 tx_bb_swing_5g;
|
|
u8 tx_cali_pwr_trk_mode;
|
|
u8 trx_path_selection;
|
|
u8 rfe_type;
|
|
u8 country_code[2];
|
|
u8 rsvd7[3];
|
|
u8 path_a_therm;
|
|
u8 path_b_therm;
|
|
u8 rsvd8[46];
|
|
u8 bw40_1s_tssi_6g_a[TSSI_MCS_6G_CH_GROUP_NUM];
|
|
u8 rsvd9[10];
|
|
u8 bw40_1s_tssi_6g_b[TSSI_MCS_6G_CH_GROUP_NUM];
|
|
u8 rsvd10[110];
|
|
u8 channel_plan_6g;
|
|
u8 rsvd11[71];
|
|
union {
|
|
struct rtw8852c_u_efuse u;
|
|
struct rtw8852c_e_efuse e;
|
|
};
|
|
} __packed;
|
|
|
|
extern const struct rtw89_chip_info rtw8852c_chip_info;
|
|
|
|
#endif
|