From: Pkshih <pkshih@realtek.com>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: "kvalo@codeaurora.org" <kvalo@codeaurora.org>,
"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>
Subject: RE: [PATCH 07/24] rtw89: add MAC files
Date: Mon, 12 Jul 2021 06:23:45 +0000 [thread overview]
Message-ID: <63d089da18e7440a9963ecec5f17702f@realtek.com> (raw)
In-Reply-To: <20210709173817.GB2099@pengutronix.de>
> -----Original Message-----
> From: Oleksij Rempel [mailto:o.rempel@pengutronix.de]
> Sent: Saturday, July 10, 2021 1:38 AM
> To: Pkshih
> Cc: kvalo@codeaurora.org; linux-wireless@vger.kernel.org
> Subject: Re: [PATCH 07/24] rtw89: add MAC files
>
> On Fri, Jun 18, 2021 at 02:46:08PM +0800, Ping-Ke Shih wrote:
> > Provide interfaces to access MAC function blocks including power-on/off
> > configuration.
> >
> > MAC initialization does power-on, and then enable HCI to download firmware.
> > The BB, RF, DMAC and CMAC function blocks are enabled, and then configure
> > TXRX settings that contains DMAC, CMAC, interrupt mask, and RPQ parameters.
> > DMAC is short for data MAC, including data link engine (DLE), HCI function
> > control (HFC), MPDU processor, security engine and so on. CMAC is short for
> > control MAC, including scheduler, address CAM, RX filter, CCA control,
> > TMAC, RMAC, protocol component and so on.
> >
> > The full MAC initialization is done for normal use case when user does
> > network interface up. When device is probing, driver does partial
> > initialization to do power-on and download firmware, because we need to
> > read hardware capabilities from efuse and firmware.
> >
> > MAC supports five ports, so we can have five VIFs at most. To control MAC
> > port, we control a set of registers, and the most important one among them
> > is port_cfg register named R_AX_PORT_CFG_P0. We can turn on/off the port
> > function and configure network type (STA or AP mode) by this register.
> > The address and BSSID corresponding to this port are given by address
> > and BSSID CAM that is set by firmware via H2C command.
> >
> > Since BT coexistence code needs to access coex registers, some help
> > functions are provided to make WiFi-only case work.
> >
> > To access MAC registers, normally we use rtw89_writeXX/rtw89_readYY, but
> > we use rtw89_mac_txpwr_write32_ZZ to access TX power register with proper
> > address range checking.
> >
> > Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
> > ---
> > drivers/net/wireless/realtek/rtw89/mac.c | 4070 ++++++++++++++++++++++
> > drivers/net/wireless/realtek/rtw89/mac.h | 905 +++++
> > 2 files changed, 4975 insertions(+)
> > create mode 100644 drivers/net/wireless/realtek/rtw89/mac.c
> > create mode 100644 drivers/net/wireless/realtek/rtw89/mac.h
> >
> > diff --git a/drivers/net/wireless/realtek/rtw89/mac.c b/drivers/net/wireless/realtek/rtw89/mac.c
> > new file mode 100644
> > index 000000000000..e00652e11941
> > --- /dev/null
> > +++ b/drivers/net/wireless/realtek/rtw89/mac.c
> > @@ -0,0 +1,4070 @@
[...]
> > +u16 rtw89_mac_get_plt(struct rtw89_dev *rtwdev, u8 band)
> > +{
> > + u32 reg;
> > + u16 cnt;
> > +
> > + reg = rtw89_mac_reg_by_idx(R_AX_BT_PLT, band);
> > + cnt = rtw89_read32_mask(rtwdev, reg, B_AX_BT_PLT_PKT_CNT_MASK);
> > + rtw89_write16_set(rtwdev, reg, B_AX_BT_PLT_RST);
> > +
> > + return cnt;
> > +}
>
> This function is not used, please remove.
>
OK. Will remove it.
[...]
If I miss any comment, please let me know.
--
Ping-Ke
next prev parent reply other threads:[~2021-07-12 6:25 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-18 6:46 [PATCH 00/24] rtw89: add Realtek 802.11ax driver Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 01/24] rtw89: add CAM files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 02/24] rtw89: add BT coexistence files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 03/24] rtw89: add core and trx files Ping-Ke Shih
2021-07-09 17:32 ` Oleksij Rempel
2021-07-12 6:23 ` Pkshih
2021-07-15 18:57 ` Brian Norris
2021-07-16 2:00 ` Pkshih
2021-06-18 6:46 ` [PATCH 04/24] rtw89: add debug files Ping-Ke Shih
2021-07-02 7:23 ` Oleksij Rempel
2021-07-02 17:08 ` Brian Norris
2021-07-02 17:57 ` Oleksij Rempel
2021-07-02 18:38 ` Brian Norris
2021-07-02 19:32 ` Oleksij Rempel
2021-07-02 20:00 ` Brian Norris
2021-07-03 4:15 ` Oleksij Rempel
2021-07-13 1:40 ` Brian Norris
2021-07-05 8:58 ` Pkshih
2021-07-05 9:09 ` Oleksij Rempel
2021-07-05 8:08 ` Kalle Valo
2021-07-05 9:23 ` Oleksij Rempel
2021-07-05 8:58 ` Pkshih
2021-07-13 1:57 ` Brian Norris
2021-07-13 4:50 ` Oleksij Rempel
2021-07-13 11:26 ` Pkshih
2021-06-18 6:46 ` [PATCH 05/24] rtw89: add efuse files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 06/24] rtw89: add files to download and communicate with firmware Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 07/24] rtw89: add MAC files Ping-Ke Shih
2021-07-09 17:38 ` Oleksij Rempel
2021-07-09 18:16 ` Johannes Berg
2021-07-10 4:58 ` Oleksij Rempel
2021-07-12 1:51 ` Pkshih
2021-07-12 6:23 ` Pkshih [this message]
2021-06-18 6:46 ` [PATCH 08/24] rtw89: implement mac80211 ops Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 09/24] rtw89: add pci files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 10/24] rtw89: add phy files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 11/24] rtw89: define register names Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 12/24] rtw89: add regulatory support Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 13/24] rtw89: 8852a: add 8852a specific files Ping-Ke Shih
2021-07-10 5:27 ` Oleksij Rempel
2021-07-12 6:24 ` Pkshih
2021-06-18 6:46 ` [PATCH 14/24] rtw89: 8852a: add 8852a RFK files Ping-Ke Shih
2021-07-09 17:41 ` Oleksij Rempel
2021-07-12 6:23 ` Pkshih
2021-07-15 3:33 ` Pkshih
2021-07-15 3:59 ` Oleksij Rempel
2021-06-18 6:46 ` [PATCH 15/24] rtw89: 8852a: add 8852a RFK tables Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 16/24] rtw89: 8852a: add 8852a tables (1 of 5) Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 17/24] rtw89: 8852a: add 8852a tables (2 " Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 18/24] rtw89: 8852a: add 8852a tables (3 " Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 19/24] rtw89: 8852a: add 8852a tables (4 " Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 20/24] rtw89: 8852a: add 8852a tables (5 " Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 21/24] rtw89: add ser to recover error reported by firmware Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 22/24] rtw89: add PS files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 23/24] rtw89: add SAR files Ping-Ke Shih
2021-06-18 6:46 ` [PATCH 24/24] rtw89: add Kconfig and Makefile Ping-Ke Shih
2021-06-19 3:18 ` kernel test robot
2021-06-19 3:18 ` kernel test robot
2021-06-25 8:54 ` Pkshih
2021-06-18 7:11 ` [PATCH 00/24] rtw89: add Realtek 802.11ax driver Pkshih
2021-06-23 6:29 ` Aaron Ma
2021-06-30 4:52 ` Aaron Ma
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=63d089da18e7440a9963ecec5f17702f@realtek.com \
--to=pkshih@realtek.com \
--cc=kvalo@codeaurora.org \
--cc=linux-wireless@vger.kernel.org \
--cc=o.rempel@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).