xref: /openbmc/linux/drivers/net/wireless/realtek/rtw89/rtw8852be.c (revision 1bebcf08a3053e92a9e0eb397163faf98dcc8beb)
1*1bebcf08SPing-Ke Shih // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2*1bebcf08SPing-Ke Shih /* Copyright(c) 2020-2022  Realtek Corporation
3*1bebcf08SPing-Ke Shih  */
4*1bebcf08SPing-Ke Shih 
5*1bebcf08SPing-Ke Shih #include <linux/module.h>
6*1bebcf08SPing-Ke Shih #include <linux/pci.h>
7*1bebcf08SPing-Ke Shih 
8*1bebcf08SPing-Ke Shih #include "pci.h"
9*1bebcf08SPing-Ke Shih #include "reg.h"
10*1bebcf08SPing-Ke Shih 
11*1bebcf08SPing-Ke Shih static const struct rtw89_pci_info rtw8852b_pci_info = {
12*1bebcf08SPing-Ke Shih 	.tx_dma_ch_mask		= BIT(RTW89_TXCH_ACH4) | BIT(RTW89_TXCH_ACH5) |
13*1bebcf08SPing-Ke Shih 				  BIT(RTW89_TXCH_ACH6) | BIT(RTW89_TXCH_ACH7) |
14*1bebcf08SPing-Ke Shih 				  BIT(RTW89_TXCH_CH10) | BIT(RTW89_TXCH_CH11),
15*1bebcf08SPing-Ke Shih };
16*1bebcf08SPing-Ke Shih 
17*1bebcf08SPing-Ke Shih MODULE_AUTHOR("Realtek Corporation");
18*1bebcf08SPing-Ke Shih MODULE_DESCRIPTION("Realtek 802.11ax wireless 8852BE driver");
19*1bebcf08SPing-Ke Shih MODULE_LICENSE("Dual BSD/GPL");
20