mbox series

[0/5] wifi: rtw89: 8852b: add RF calibration part 1

Message ID 20221012083234.20224-1-pkshih@realtek.com
Headers show
Series wifi: rtw89: 8852b: add RF calibration part 1 | expand

Message

Ping-Ke Shih Oct. 12, 2022, 8:32 a.m. UTC
RF calibration includes a lot of register settings, and they need many
iterations to fine tune RF parameters. These iterations spend time, so
additional struct fields are introduced to save calibration results, and
then we can reuse these results if conditions are the same.

Since they do lots of things, line-of-code is much more than other
functions. Therefore, I split RF calibration into two patchset, and this
is the first one.

Ping-Ke Shih (5):
  wifi: rtw89: 8852b: rfk: add DACK
  wifi: rtw89: 8852b: rfk: add RCK
  wifi: rtw89: 8852b: rfk: add RX DCK
  wifi: rtw89: 8852b: rfk: add IQK
  wifi: rtw89: 8852b: rfk: add TSSI

 drivers/net/wireless/realtek/rtw89/core.h     |   15 +
 drivers/net/wireless/realtek/rtw89/reg.h      |   83 +
 .../net/wireless/realtek/rtw89/rtw8852b_rfk.c | 2770 +++++++++++++++++
 .../net/wireless/realtek/rtw89/rtw8852b_rfk.h |    8 +
 4 files changed, 2876 insertions(+)