rtw88: new Realtek 802.11ac driver
This is a new mac80211 driver for Realtek 802.11ac wireless network chips.
rtw88 now supports RTL8822BE/RTL8822CE now, with basic station mode
functionalities. The firmware for both can be found at linux-firmware.
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
For RTL8822BE: rtw88/rtw8822b_fw.bin
For RTL8822CE: rtw88/rtw8822c_fw.bin
And for now, only PCI buses (RTL8xxxE) are supported. We will add support
for USB and SDIO in the future. The bus interface abstraction can be seen
in this driver such as hci.h. Most of the hardware setting are the same
except for some TRX path or probing setup should be separated.
Supported:
* Basic STA/AP/ADHOC mode, and TDLS (STA is well tested)
Missing feature:
* WOW/PNO
* USB & SDIO bus (such as RTL8xxxU/RTL8xxxS)
* BT coexistence (8822B/8822C are combo ICs)
* Multiple interfaces (for now single STA is better supported)
* Dynamic hardware calibrations (to improve/stabilize performance)
Potential problems:
* static calibration spends too much time, and it is painful for
driver to leave IDLE state. And slows down associate process.
But reload function are under development, will be added soon!
* TRX statictics misleading, as we are not reporting status correctly,
or say, not reporting for "every" packet.
The next patch set should have BT coexistence code since RTL8822B/C are
combo ICs, and the driver for BT can be found after Linux Kernel v4.20.
So it is better to add it first to make WiFi + BT work concurrently.
Although now rtw88 is simple but we are developing more features for it.
Even we want to add support for more chips such as RTL8821C/RTL8814B.
Finally, rtw88 has many authors, listed alphabetically:
Ping-Ke Shih <pkshih@realtek.com>
Tzu-En Huang <tehuang@realtek.com>
Yan-Hsuan Chuang <yhchuang@realtek.com>
Reviewed-by: Stanislaw Gruszka <sgruszka@redhat.com>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Tested-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
2019-04-26 12:17:37 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
|
|
/* Copyright(c) 2018-2019 Realtek Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RTW_SEC_H_
|
|
|
|
#define __RTW_SEC_H_
|
|
|
|
|
|
|
|
#define RTW_SEC_CMD_REG 0x670
|
|
|
|
#define RTW_SEC_WRITE_REG 0x674
|
|
|
|
#define RTW_SEC_READ_REG 0x678
|
|
|
|
#define RTW_SEC_CONFIG 0x680
|
|
|
|
|
|
|
|
#define RTW_SEC_CAM_ENTRY_SHIFT 3
|
|
|
|
#define RTW_SEC_DEFAULT_KEY_NUM 4
|
|
|
|
#define RTW_SEC_CMD_WRITE_ENABLE BIT(16)
|
|
|
|
#define RTW_SEC_CMD_CLEAR BIT(30)
|
|
|
|
#define RTW_SEC_CMD_POLLING BIT(31)
|
|
|
|
|
|
|
|
#define RTW_SEC_TX_UNI_USE_DK BIT(0)
|
|
|
|
#define RTW_SEC_RX_UNI_USE_DK BIT(1)
|
|
|
|
#define RTW_SEC_TX_DEC_EN BIT(2)
|
|
|
|
#define RTW_SEC_RX_DEC_EN BIT(3)
|
|
|
|
#define RTW_SEC_TX_BC_USE_DK BIT(6)
|
|
|
|
#define RTW_SEC_RX_BC_USE_DK BIT(7)
|
|
|
|
|
|
|
|
#define RTW_SEC_ENGINE_EN BIT(9)
|
|
|
|
|
|
|
|
int rtw_sec_get_free_cam(struct rtw_sec_desc *sec);
|
|
|
|
void rtw_sec_write_cam(struct rtw_dev *rtwdev,
|
|
|
|
struct rtw_sec_desc *sec,
|
|
|
|
struct ieee80211_sta *sta,
|
|
|
|
struct ieee80211_key_conf *key,
|
|
|
|
u8 hw_key_type, u8 hw_key_idx);
|
|
|
|
void rtw_sec_clear_cam(struct rtw_dev *rtwdev,
|
|
|
|
struct rtw_sec_desc *sec,
|
|
|
|
u8 hw_key_idx);
|
2019-10-02 02:31:27 +00:00
|
|
|
u8 rtw_sec_cam_pg_backup(struct rtw_dev *rtwdev, u8 *used_cam);
|
rtw88: new Realtek 802.11ac driver
This is a new mac80211 driver for Realtek 802.11ac wireless network chips.
rtw88 now supports RTL8822BE/RTL8822CE now, with basic station mode
functionalities. The firmware for both can be found at linux-firmware.
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
For RTL8822BE: rtw88/rtw8822b_fw.bin
For RTL8822CE: rtw88/rtw8822c_fw.bin
And for now, only PCI buses (RTL8xxxE) are supported. We will add support
for USB and SDIO in the future. The bus interface abstraction can be seen
in this driver such as hci.h. Most of the hardware setting are the same
except for some TRX path or probing setup should be separated.
Supported:
* Basic STA/AP/ADHOC mode, and TDLS (STA is well tested)
Missing feature:
* WOW/PNO
* USB & SDIO bus (such as RTL8xxxU/RTL8xxxS)
* BT coexistence (8822B/8822C are combo ICs)
* Multiple interfaces (for now single STA is better supported)
* Dynamic hardware calibrations (to improve/stabilize performance)
Potential problems:
* static calibration spends too much time, and it is painful for
driver to leave IDLE state. And slows down associate process.
But reload function are under development, will be added soon!
* TRX statictics misleading, as we are not reporting status correctly,
or say, not reporting for "every" packet.
The next patch set should have BT coexistence code since RTL8822B/C are
combo ICs, and the driver for BT can be found after Linux Kernel v4.20.
So it is better to add it first to make WiFi + BT work concurrently.
Although now rtw88 is simple but we are developing more features for it.
Even we want to add support for more chips such as RTL8821C/RTL8814B.
Finally, rtw88 has many authors, listed alphabetically:
Ping-Ke Shih <pkshih@realtek.com>
Tzu-En Huang <tehuang@realtek.com>
Yan-Hsuan Chuang <yhchuang@realtek.com>
Reviewed-by: Stanislaw Gruszka <sgruszka@redhat.com>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Tested-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
2019-04-26 12:17:37 +00:00
|
|
|
void rtw_sec_enable_sec_engine(struct rtw_dev *rtwdev);
|
|
|
|
|
|
|
|
#endif
|