mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 16:57:47 +07:00
7afc5dbde0
Change details: - Add debugfs support to obtain firmware trace, saved firmware trace on an IOC crash, driver info and read/write to registers. - debugfs hierarchy: bna/pci_dev:<pci_name> where the pci_name corresponds to the one under /sys/bus/pci/drivers/bna - Following are the new debugfs entries added: fwtrc: collect current firmware trace. fwsave: collect last saved fw trace as a result of firmware crash. regwr: write one word to chip register regrd: read one or more words from chip register. drvinfo: collect the driver information. Signed-off-by: Krishna Gudipati <kgudipat@brocade.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
306 B
Makefile
13 lines
306 B
Makefile
#
|
|
# Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
|
|
# All rights reserved.
|
|
#
|
|
|
|
obj-$(CONFIG_BNA) += bna.o
|
|
|
|
bna-objs := bnad.o bnad_ethtool.o bnad_debugfs.o bna_enet.o bna_tx_rx.o
|
|
bna-objs += bfa_msgq.o bfa_ioc.o bfa_ioc_ct.o bfa_cee.o
|
|
bna-objs += cna_fwimg.o
|
|
|
|
EXTRA_CFLAGS := -Idrivers/net/bna
|