mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
f14cda6f3b
The new debug ini TLVs can be either packed into firmware binary or written in external file. Support loading them from both. Store the data per apply point. Apply point is a point during driver runtime, where the TLV becomes active. For example, a trigger of hardware error may be configured to collect a subset of data pre-alive, as a opposed to HW error that occurs after alive. Signed-off-by: Sara Sharon <sara.sharon@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# common
|
|
obj-$(CONFIG_IWLWIFI) += iwlwifi.o
|
|
iwlwifi-objs += iwl-io.o
|
|
iwlwifi-objs += iwl-drv.o
|
|
iwlwifi-objs += iwl-debug.o
|
|
iwlwifi-objs += iwl-eeprom-read.o iwl-eeprom-parse.o
|
|
iwlwifi-objs += iwl-phy-db.o iwl-nvm-parse.o
|
|
iwlwifi-objs += pcie/drv.o pcie/rx.o pcie/tx.o pcie/trans.o
|
|
iwlwifi-objs += pcie/ctxt-info.o pcie/ctxt-info-gen3.o
|
|
iwlwifi-objs += pcie/trans-gen2.o pcie/tx-gen2.o
|
|
iwlwifi-$(CONFIG_IWLDVM) += cfg/1000.o cfg/2000.o cfg/5000.o cfg/6000.o
|
|
iwlwifi-$(CONFIG_IWLMVM) += cfg/7000.o cfg/8000.o cfg/9000.o cfg/22000.o
|
|
iwlwifi-objs += iwl-dbg-tlv.o
|
|
iwlwifi-objs += iwl-trans.o
|
|
iwlwifi-objs += fw/notif-wait.o
|
|
iwlwifi-$(CONFIG_IWLMVM) += fw/paging.o fw/smem.o fw/init.o fw/dbg.o
|
|
iwlwifi-$(CONFIG_ACPI) += fw/acpi.o
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEBUGFS) += fw/debugfs.o
|
|
|
|
iwlwifi-objs += $(iwlwifi-m)
|
|
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
|
|
ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_IWLDVM) += dvm/
|
|
obj-$(CONFIG_IWLMVM) += mvm/
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|