mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
Issue: RTL8822CE driver doesn't have active roaming
support and has issues with current roaming
algorithm
Fix: Add driver with active roaming enabled and fixes
issue with 5GHz and BT coex
DRIVERVERSION -
"v5.14.0.4-203-g4a9c85a0f.20240219_COEX20240125-2727_beta"
BTCOEXVERSION -
"COEX20240125-2727"
Bug 4213654
Change-Id: Icff3ece063518575fbcca3d8ea5be0b6314a567f
Signed-off-by: Shobek Attupurath <sattupurath@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3079863
(cherry picked from commit e3673f6890)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3095799
Tested-by: Revanth Kumar Uppala <ruppala@nvidia.com>
Reviewed-by: Revanth Kumar Uppala <ruppala@nvidia.com>
Reviewed-by: Brad Griffis <bgriffis@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
78 lines
2.0 KiB
Makefile
78 lines
2.0 KiB
Makefile
# All needed files would be added to _HAL_INTFS_FILES, and it would include
|
|
# hal/hal_halmac.c and all related files in directory hal/halmac/.
|
|
# Before include this makefile, be sure interface (CONFIG_*_HCI) and IC
|
|
# (CONFIG_RTL*) setting are all ready!
|
|
|
|
# Base directory
|
|
path_hm := hal/halmac
|
|
|
|
ifeq ($(CONFIG_PCI_HCI), y)
|
|
pci := y
|
|
endif
|
|
ifeq ($(CONFIG_SDIO_HCI), y)
|
|
sdio := y
|
|
endif
|
|
ifeq ($(CONFIG_USB_HCI), y)
|
|
usb := y
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTL8822B), y)
|
|
series := 88xx
|
|
ic := 8822b
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTL8822C), y)
|
|
series := 88xx
|
|
ic := 8822c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTL8821C), y)
|
|
series := 88xx
|
|
ic := 8821c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTL8814B), y)
|
|
series := 88xx_v1
|
|
ic := 8814b
|
|
endif
|
|
|
|
ifeq ($(series), 88xx_v1)
|
|
d2all :=
|
|
else
|
|
d2all := y
|
|
endif
|
|
|
|
halmac-y += $(path_hm)/halmac_api.o
|
|
halmac-y += $(path_hm)/halmac_dbg.o
|
|
|
|
# Level 1 directory
|
|
path_hm_d1 := $(path_hm)/halmac_$(series)
|
|
halmac-y += $(path_hm_d1)/halmac_bb_rf_$(series).o \
|
|
$(path_hm_d1)/halmac_cfg_wmac_$(series).o \
|
|
$(path_hm_d1)/halmac_common_$(series).o \
|
|
$(path_hm_d1)/halmac_efuse_$(series).o \
|
|
$(path_hm_d1)/halmac_flash_$(series).o \
|
|
$(path_hm_d1)/halmac_fw_$(series).o \
|
|
$(path_hm_d1)/halmac_gpio_$(series).o \
|
|
$(path_hm_d1)/halmac_init_$(series).o \
|
|
$(path_hm_d1)/halmac_mimo_$(series).o
|
|
halmac-$(pci) += $(path_hm_d1)/halmac_pcie_$(series).o
|
|
halmac-$(sdio) += $(path_hm_d1)/halmac_sdio_$(series).o
|
|
halmac-$(usb) += $(path_hm_d1)/halmac_usb_$(series).o
|
|
|
|
# Level 2 directory
|
|
path_hm_d2 := $(path_hm_d1)/halmac_$(ic)
|
|
halmac-$(d2all) += $(path_hm_d2)/halmac_cfg_wmac_$(ic).o \
|
|
$(path_hm_d2)/halmac_common_$(ic).o
|
|
|
|
halmac-y += $(path_hm_d2)/halmac_gpio_$(ic).o \
|
|
$(path_hm_d2)/halmac_init_$(ic).o \
|
|
$(path_hm_d2)/halmac_phy_$(ic).o \
|
|
$(path_hm_d2)/halmac_pwr_seq_$(ic).o
|
|
halmac-$(pci) += $(path_hm_d2)/halmac_pcie_$(ic).o
|
|
halmac-$(sdio) += $(path_hm_d2)/halmac_sdio_$(ic).o
|
|
halmac-$(usb) += $(path_hm_d2)/halmac_usb_$(ic).o
|
|
|
|
_HAL_INTFS_FILES += hal/hal_halmac.o
|
|
_HAL_INTFS_FILES += $(halmac-y)
|