rtw8852be.c 754 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
  2. /* Copyright(c) 2020-2022 Realtek Corporation
  3. */
  4. #include <linux/module.h>
  5. #include <linux/pci.h>
  6. #include "pci.h"
  7. #include "reg.h"
  8. static const struct rtw89_pci_info rtw8852b_pci_info = {
  9. .dma_stop1 = {R_AX_PCIE_DMA_STOP1, B_AX_TX_STOP1_MASK_V1},
  10. .dma_stop2 = {0},
  11. .dma_busy1 = {R_AX_PCIE_DMA_BUSY1, DMA_BUSY1_CHECK_V1},
  12. .dma_busy2_reg = 0,
  13. .dma_busy3_reg = R_AX_PCIE_DMA_BUSY1,
  14. .tx_dma_ch_mask = BIT(RTW89_TXCH_ACH4) | BIT(RTW89_TXCH_ACH5) |
  15. BIT(RTW89_TXCH_ACH6) | BIT(RTW89_TXCH_ACH7) |
  16. BIT(RTW89_TXCH_CH10) | BIT(RTW89_TXCH_CH11),
  17. };
  18. MODULE_AUTHOR("Realtek Corporation");
  19. MODULE_DESCRIPTION("Realtek 802.11ax wireless 8852BE driver");
  20. MODULE_LICENSE("Dual BSD/GPL");