hc
2023-03-13 2ec15ae1cb4be1b4fcb56c6d621123d7ebdaad6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* SPDX-License-Identifier: GPL-2.0 */
/******************************************************************************
 *
 * Copyright(c) 2007 - 2016  Realtek Corporation.
 *
 * Contact Information:
 * wlanfae <wlanfae@realtek.com>
 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
 * Hsinchu 300, Taiwan.
 *
 * Larry Finger <Larry.Finger@lwfinger.net>
 *
 *****************************************************************************/
#ifndef __INC_PHYDM_API_H_8822B__
#define __INC_PHYDM_API_H_8822B__
 
/*2016.08.01 (HW user guide version: R27, SW user guide version: R05,
 *            Modification: R31)
 */
#define PHY_CONFIG_VERSION_8822B "27.5.31"
 
#define INVALID_RF_DATA 0xffffffff
#define INVALID_TXAGC_DATA 0xff
 
#define config_phydm_read_rf_check_8822b(data) (data != INVALID_RF_DATA)
#define config_phydm_read_txagc_check_8822b(data) (data != INVALID_TXAGC_DATA)
 
u32 config_phydm_read_rf_reg_8822b(struct phy_dm_struct *dm,
                  enum odm_rf_radio_path rf_path, u32 reg_addr,
                  u32 bit_mask);
 
bool config_phydm_write_rf_reg_8822b(struct phy_dm_struct *dm,
                    enum odm_rf_radio_path rf_path,
                    u32 reg_addr, u32 bit_mask, u32 data);
 
bool config_phydm_write_txagc_8822b(struct phy_dm_struct *dm, u32 power_index,
                   enum odm_rf_radio_path path, u8 hw_rate);
 
u8 config_phydm_read_txagc_8822b(struct phy_dm_struct *dm,
                enum odm_rf_radio_path path, u8 hw_rate);
 
bool config_phydm_switch_band_8822b(struct phy_dm_struct *dm, u8 central_ch);
 
bool config_phydm_switch_channel_8822b(struct phy_dm_struct *dm, u8 central_ch);
 
bool config_phydm_switch_bandwidth_8822b(struct phy_dm_struct *dm,
                    u8 primary_ch_idx,
                    enum odm_bw bandwidth);
 
bool config_phydm_switch_channel_bw_8822b(struct phy_dm_struct *dm,
                     u8 central_ch, u8 primary_ch_idx,
                     enum odm_bw bandwidth);
 
bool config_phydm_trx_mode_8822b(struct phy_dm_struct *dm,
                enum odm_rf_path tx_path,
                enum odm_rf_path rx_path, bool is_tx2_path);
 
bool config_phydm_parameter_init(struct phy_dm_struct *dm,
                enum odm_parameter_init type);
 
/* ======================================================================== */
/* These following functions can be used for PHY DM only*/
 
bool phydm_write_txagc_1byte_8822b(struct phy_dm_struct *dm, u32 power_index,
                  enum odm_rf_radio_path path, u8 hw_rate);
 
void phydm_init_hw_info_by_rfe_type_8822b(struct phy_dm_struct *dm);
 
s32 phydm_get_condition_number_8822B(struct phy_dm_struct *dm);
 
/* ======================================================================== */
 
#endif /*  __INC_PHYDM_API_H_8822B__ */