2019-09-21 09:30:30 +00:00
|
|
|
# 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
|
|
|
|
# Level 1 directory
|
|
|
|
path_hm_d1 := $(path_hm)/halmac_88xx
|
|
|
|
|
|
|
|
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)
|
|
|
|
ic := 8822b
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_RTL8822C), y)
|
|
|
|
ic := 8822c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_RTL8821C), y)
|
|
|
|
ic := 8821c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_RTL8814B), y)
|
2020-08-02 09:12:24 +00:00
|
|
|
v1 := _v1
|
2019-09-21 09:30:30 +00:00
|
|
|
ic := 8814b
|
|
|
|
endif
|
|
|
|
|
2020-08-02 09:12:24 +00:00
|
|
|
ifeq ($(v1), _v1)
|
|
|
|
d2all :=
|
|
|
|
else
|
|
|
|
d2all := y
|
|
|
|
endif
|
|
|
|
|
2019-09-21 09:30:30 +00:00
|
|
|
halmac-y += $(path_hm)/halmac_api.o
|
2020-08-02 09:12:24 +00:00
|
|
|
halmac-y += $(path_hm)/halmac_dbg.o
|
2019-09-21 09:30:30 +00:00
|
|
|
|
|
|
|
# Modify level 1 directory if needed
|
|
|
|
path_hm_d1 := $(path_hm_d1)$(v1)
|
|
|
|
halmac-y += $(path_hm_d1)/halmac_bb_rf_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_cfg_wmac_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_common_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_efuse_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_flash_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_fw_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_gpio_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_init_88xx$(v1).o \
|
|
|
|
$(path_hm_d1)/halmac_mimo_88xx$(v1).o
|
|
|
|
halmac-$(pci) += $(path_hm_d1)/halmac_pcie_88xx$(v1).o
|
|
|
|
halmac-$(sdio) += $(path_hm_d1)/halmac_sdio_88xx$(v1).o
|
|
|
|
halmac-$(usb) += $(path_hm_d1)/halmac_usb_88xx$(v1).o
|
|
|
|
|
|
|
|
# Level 2 directory
|
|
|
|
path_hm_d2 := $(path_hm_d1)/halmac_$(ic)
|
2020-08-02 09:12:24 +00:00
|
|
|
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 \
|
2019-09-21 09:30:30 +00:00
|
|
|
$(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)
|