summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/realtek/rtw89/rtw8852b_common.h
blob: 801e7ab9f4fa238ad7d1ca6c3b399ac9a9af09f1 (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
/* Copyright(c) 2024  Realtek Corporation
 */

#ifndef __RTW89_8852BX_H__
#define __RTW89_8852BX_H__

#include "core.h"

#define RF_PATH_NUM_8852BX 2
#define BB_PATH_NUM_8852BX 2

enum rtw8852bx_pmac_mode {
	NONE_TEST,
	PKTS_TX,
	PKTS_RX,
	CONT_TX
};

struct rtw8852bx_u_efuse {
	u8 rsvd[0x88];
	u8 mac_addr[ETH_ALEN];
};

struct rtw8852bx_e_efuse {
	u8 mac_addr[ETH_ALEN];
};

struct rtw8852bx_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 rtw8852bx_efuse {
	u8 rsvd[0x210];
	struct rtw8852bx_tssi_offset path_a_tssi;
	u8 rsvd1[10];
	struct rtw8852bx_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[2];
	u8 rx_gain_2g_ofdm;
	u8 rsvd9;
	u8 rx_gain_2g_cck;
	u8 rsvd10;
	u8 rx_gain_5g_low;
	u8 rsvd11;
	u8 rx_gain_5g_mid;
	u8 rsvd12;
	u8 rx_gain_5g_high;
	u8 rsvd13[35];
	u8 path_a_cck_pwr_idx[6];
	u8 path_a_bw40_1tx_pwr_idx[5];
	u8 path_a_ofdm_1tx_pwr_idx_diff:4;
	u8 path_a_bw20_1tx_pwr_idx_diff:4;
	u8 path_a_bw20_2tx_pwr_idx_diff:4;
	u8 path_a_bw40_2tx_pwr_idx_diff:4;
	u8 path_a_cck_2tx_pwr_idx_diff:4;
	u8 path_a_ofdm_2tx_pwr_idx_diff:4;
	u8 rsvd14[0xf2];
	union {
		struct rtw8852bx_u_efuse u;
		struct rtw8852bx_e_efuse e;
	};
} __packed;

struct rtw8852bx_bb_pmac_info {
	u8 en_pmac_tx:1;
	u8 is_cck:1;
	u8 mode:3;
	u8 rsvd:3;
	u16 tx_cnt;
	u16 period;
	u16 tx_time;
	u8 duty_cycle;
};

struct rtw8852bx_bb_tssi_bak {
	u8 tx_path;
	u8 rx_path;
	u32 p0_rfmode;
	u32 p0_rfmode_ftm;
	u32 p1_rfmode;
	u32 p1_rfmode_ftm;
	s16 tx_pwr; /* S9 */
};

struct rtw8852bx_info {
	int (*mac_enable_bb_rf)(struct rtw89_dev *rtwdev);
	int (*mac_disable_bb_rf)(struct rtw89_dev *rtwdev);
	void (*bb_sethw)(struct rtw89_dev *rtwdev);
	void (*bb_reset_all)(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx);
	void (*bb_cfg_txrx_path)(struct rtw89_dev *rtwdev);
	void (*bb_cfg_tx_path)(struct rtw89_dev *rtwdev, u8 tx_path);
	void (*bb_ctrl_rx_path)(struct rtw89_dev *rtwdev,
				enum rtw89_rf_path_bit rx_path);
	void (*bb_set_plcp_tx)(struct rtw89_dev *rtwdev);
	void (*bb_set_power)(struct rtw89_dev *rtwdev, s16 pwr_dbm,
			     enum rtw89_phy_idx idx);
	void (*bb_set_pmac_pkt_tx)(struct rtw89_dev *rtwdev, u8 enable,
				   u16 tx_cnt, u16 period, u16 tx_time,
				   enum rtw89_phy_idx idx);
	void (*bb_backup_tssi)(struct rtw89_dev *rtwdev, enum rtw89_phy_idx idx,
			       struct rtw8852bx_bb_tssi_bak *bak);
	void (*bb_restore_tssi)(struct rtw89_dev *rtwdev, enum rtw89_phy_idx idx,
				const struct rtw8852bx_bb_tssi_bak *bak);
	void (*bb_tx_mode_switch)(struct rtw89_dev *rtwdev,
				  enum rtw89_phy_idx idx, u8 mode);
	void (*set_channel_mac)(struct rtw89_dev *rtwdev,
				const struct rtw89_chan *chan, u8 mac_idx);
	void (*set_channel_bb)(struct rtw89_dev *rtwdev, const struct rtw89_chan *chan,
			       enum rtw89_phy_idx phy_idx);
	void (*ctrl_nbtg_bt_tx)(struct rtw89_dev *rtwdev, bool en,
				enum rtw89_phy_idx phy_idx);
	void (*ctrl_btg_bt_rx)(struct rtw89_dev *rtwdev, bool en,
			       enum rtw89_phy_idx phy_idx);
	void (*query_ppdu)(struct rtw89_dev *rtwdev,
			   struct rtw89_rx_phy_ppdu *phy_ppdu,
			   struct ieee80211_rx_status *status);
	int (*read_efuse)(struct rtw89_dev *rtwdev, u8 *log_map,
			  enum rtw89_efuse_block block);
	int (*read_phycap)(struct rtw89_dev *rtwdev, u8 *phycap_map);
	void (*power_trim)(struct rtw89_dev *rtwdev);
	void (*set_txpwr)(struct rtw89_dev *rtwdev,
			  const struct rtw89_chan *chan,
			  enum rtw89_phy_idx phy_idx);
	void (*set_txpwr_ctrl)(struct rtw89_dev *rtwdev,
			       enum rtw89_phy_idx phy_idx);
	int (*init_txpwr_unit)(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx);
	void (*set_txpwr_ul_tb_offset)(struct rtw89_dev *rtwdev,
				       s8 pw_ofst, enum rtw89_mac_idx mac_idx);
	u8 (*get_thermal)(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path);
	void (*adc_cfg)(struct rtw89_dev *rtwdev, u8 bw, u8 path);
	void (*btc_init_cfg)(struct rtw89_dev *rtwdev);
	void (*btc_set_wl_pri)(struct rtw89_dev *rtwdev, u8 map, bool state);
	s8 (*btc_get_bt_rssi)(struct rtw89_dev *rtwdev, s8 val);
	void (*btc_update_bt_cnt)(struct rtw89_dev *rtwdev);
	void (*btc_wl_s1_standby)(struct rtw89_dev *rtwdev, bool state);
	void (*btc_set_wl_rx_gain)(struct rtw89_dev *rtwdev, u32 level);
};

extern const struct rtw8852bx_info rtw8852bx_info;

static inline
int rtw8852bx_mac_enable_bb_rf(struct rtw89_dev *rtwdev)
{
	return rtw8852bx_info.mac_enable_bb_rf(rtwdev);
}

static inline
int rtw8852bx_mac_disable_bb_rf(struct rtw89_dev *rtwdev)
{
	return rtw8852bx_info.mac_disable_bb_rf(rtwdev);
}

static inline
void rtw8852bx_bb_sethw(struct rtw89_dev *rtwdev)
{
	rtw8852bx_info.bb_sethw(rtwdev);
}

static inline
void rtw8852bx_bb_reset_all(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx)
{
	rtw8852bx_info.bb_reset_all(rtwdev, phy_idx);
}

static inline
void rtw8852bx_bb_cfg_txrx_path(struct rtw89_dev *rtwdev)
{
	rtw8852bx_info.bb_cfg_txrx_path(rtwdev);
}

static inline
void rtw8852bx_bb_cfg_tx_path(struct rtw89_dev *rtwdev, u8 tx_path)
{
	rtw8852bx_info.bb_cfg_tx_path(rtwdev, tx_path);
}

static inline
void rtw8852bx_bb_ctrl_rx_path(struct rtw89_dev *rtwdev,
			       enum rtw89_rf_path_bit rx_path)
{
	rtw8852bx_info.bb_ctrl_rx_path(rtwdev, rx_path);
}

static inline
void rtw8852bx_bb_set_plcp_tx(struct rtw89_dev *rtwdev)
{
	rtw8852bx_info.bb_set_plcp_tx(rtwdev);
}

static inline
void rtw8852bx_bb_set_power(struct rtw89_dev *rtwdev, s16 pwr_dbm,
			    enum rtw89_phy_idx idx)
{
	rtw8852bx_info.bb_set_power(rtwdev, pwr_dbm, idx);
}

static inline
void rtw8852bx_bb_set_pmac_pkt_tx(struct rtw89_dev *rtwdev, u8 enable,
				  u16 tx_cnt, u16 period, u16 tx_time,
				  enum rtw89_phy_idx idx)
{
	rtw8852bx_info.bb_set_pmac_pkt_tx(rtwdev, enable, tx_cnt, period, tx_time, idx);
}

static inline
void rtw8852bx_bb_backup_tssi(struct rtw89_dev *rtwdev, enum rtw89_phy_idx idx,
			      struct rtw8852bx_bb_tssi_bak *bak)
{
	rtw8852bx_info.bb_backup_tssi(rtwdev, idx, bak);
}

static inline
void rtw8852bx_bb_restore_tssi(struct rtw89_dev *rtwdev, enum rtw89_phy_idx idx,
			       const struct rtw8852bx_bb_tssi_bak *bak)
{
	rtw8852bx_info.bb_restore_tssi(rtwdev, idx, bak);
}

static inline
void rtw8852bx_bb_tx_mode_switch(struct rtw89_dev *rtwdev,
				 enum rtw89_phy_idx idx, u8 mode)
{
	rtw8852bx_info.bb_tx_mode_switch(rtwdev, idx, mode);
}

static inline
void rtw8852bx_set_channel_mac(struct rtw89_dev *rtwdev,
			       const struct rtw89_chan *chan, u8 mac_idx)
{
	rtw8852bx_info.set_channel_mac(rtwdev, chan, mac_idx);
}

static inline
void rtw8852bx_set_channel_bb(struct rtw89_dev *rtwdev, const struct rtw89_chan *chan,
			      enum rtw89_phy_idx phy_idx)
{
	rtw8852bx_info.set_channel_bb(rtwdev, chan, phy_idx);
}

static inline
void rtw8852bx_ctrl_nbtg_bt_tx(struct rtw89_dev *rtwdev, bool en,
			       enum rtw89_phy_idx phy_idx)
{
	rtw8852bx_info.ctrl_nbtg_bt_tx(rtwdev, en, phy_idx);
}

static inline
void rtw8852bx_ctrl_btg_bt_rx(struct rtw89_dev *rtwdev, bool en,
			      enum rtw89_phy_idx phy_idx)
{
	rtw8852bx_info.ctrl_btg_bt_rx(rtwdev, en, phy_idx);
}

static inline
void rtw8852bx_query_ppdu(struct rtw89_dev *rtwdev,
			  struct rtw89_rx_phy_ppdu *phy_ppdu,
			  struct ieee80211_rx_status *status)
{
	rtw8852bx_info.query_ppdu(rtwdev, phy_ppdu, status);
}

static inline
int rtw8852bx_read_efuse(struct rtw89_dev *rtwdev, u8 *log_map,
			 enum rtw89_efuse_block block)
{
	return rtw8852bx_info.read_efuse(rtwdev, log_map, block);
}

static inline
int rtw8852bx_read_phycap(struct rtw89_dev *rtwdev, u8 *phycap_map)
{
	return rtw8852bx_info.read_phycap(rtwdev, phycap_map);
}

static inline
void rtw8852bx_power_trim(struct rtw89_dev *rtwdev)
{
	rtw8852bx_info.power_trim(rtwdev);
}

static inline
void rtw8852bx_set_txpwr(struct rtw89_dev *rtwdev,
			 const struct rtw89_chan *chan,
			 enum rtw89_phy_idx phy_idx)
{
	rtw8852bx_info.set_txpwr(rtwdev, chan, phy_idx);
}

static inline
void rtw8852bx_set_txpwr_ctrl(struct rtw89_dev *rtwdev,
			      enum rtw89_phy_idx phy_idx)
{
	rtw8852bx_info.set_txpwr_ctrl(rtwdev, phy_idx);
}

static inline
int rtw8852bx_init_txpwr_unit(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx)
{
	return rtw8852bx_info.init_txpwr_unit(rtwdev, phy_idx);
}

static inline
void rtw8852bx_set_txpwr_ul_tb_offset(struct rtw89_dev *rtwdev,
				      s8 pw_ofst, enum rtw89_mac_idx mac_idx)
{
	rtw8852bx_info.set_txpwr_ul_tb_offset(rtwdev, pw_ofst, mac_idx);
}

static inline
u8 rtw8852bx_get_thermal(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path)
{
	return rtw8852bx_info.get_thermal(rtwdev, rf_path);
}

static inline
void rtw8852bx_adc_cfg(struct rtw89_dev *rtwdev, u8 bw, u8 path)
{
	rtw8852bx_info.adc_cfg(rtwdev, bw, path);
}

static inline
void rtw8852bx_btc_init_cfg(struct rtw89_dev *rtwdev)
{
	rtw8852bx_info.btc_init_cfg(rtwdev);
}

static inline
void rtw8852bx_btc_set_wl_pri(struct rtw89_dev *rtwdev, u8 map, bool state)
{
	rtw8852bx_info.btc_set_wl_pri(rtwdev, map, state);
}

static inline
s8 rtw8852bx_btc_get_bt_rssi(struct rtw89_dev *rtwdev, s8 val)
{
	return rtw8852bx_info.btc_get_bt_rssi(rtwdev, val);
}

static inline
void rtw8852bx_btc_update_bt_cnt(struct rtw89_dev *rtwdev)
{
	rtw8852bx_info.btc_update_bt_cnt(rtwdev);
}

static inline
void rtw8852bx_btc_wl_s1_standby(struct rtw89_dev *rtwdev, bool state)
{
	rtw8852bx_info.btc_wl_s1_standby(rtwdev, state);
}

static inline
void rtw8852bx_btc_set_wl_rx_gain(struct rtw89_dev *rtwdev, u32 level)
{
	rtw8852bx_info.btc_set_wl_rx_gain(rtwdev, level);
}

#endif