SAI: Fix ECMP max groups logic add set issu log level for spc2/spc3, as now issu is supported set vlan max swid = 0 on sdk init, as only single swid is needed, for efficient resource usage Fix traffic lost during FFB related to buffer config + optimize buffer config timing for FB Add ACL fields BTH, IP flags Add ACL infrastructure of different fields per ASIC type Add port stat ether rx/tx oversize pkts SDK/FW: Added support for Finisar 100GbE SWDM Transceiver FTLC9152RGPL. Spectrum-2 Added support for 10G BaseT modules Added link LED support for SN4600C. Counters | In SDK debug dump, the incorrect counter type appears for vtraps. WJH | Without any traffic or events on the idle system, the CPU load is constantly above 4% WJH | WJH filter currently cannot filter by PORT for buffer drop reason. Spectrum | ACL, Unbind, Lazy Delete | Running Lazy Delete together with auto_unbind may cause rate condition errors. To work work with Lazy Delete use new INIT parameter "acl_manual_unbind" so that ACLs will notbe removed automatically when binding point is deleted. Spectrum | ISSU | In ISSU mode, when querying for the number of configurable buffers, using the API sx_api_cos_port_buff_type_get with the count parameter as 0, the API returns the number for NORMAL mode instead. Spectrum-2 | BER | BER monitor counts raw errors instead of effective errors Spectrum-2 | BER | Connecting to ConnectX-5 adapter card with copper splitter cable MCP7H50-V001R30 in 1 Spectrum-2 | Cables | Link flaps in 200GbE with AOM Optic cable MMA1T00-VS Spectrum-3 | Speeds, Link | When moving from a 400GbE link to a 1GbE link, packets may drop for 1msec right after link up Spectrum-3 | Cables, Speeds | Using 400GbE with 3rd party systems is not supported Spectrum-3 | LAG | After a while, LAG members become out of sync with one another Spectrum-3 | VLAN, Ports | Packets with VLAN headers are sent to
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# mellanox asic firmware
|
|
|
|
MLNX_FW_BASE_PATH = $(MLNX_SDK_BASE_PATH)
|
|
|
|
# Place an URL here to FW if you want to download FW instead
|
|
MLNX_FW_BASE_URL =
|
|
|
|
ifneq ($(MLNX_FW_BASE_URL), )
|
|
FW_FROM_URL = y
|
|
else
|
|
FW_FROM_URL = n
|
|
endif
|
|
|
|
MLNX_SPC_FW_VERSION = 13.2008.1032
|
|
MLNX_SPC_FW_FILE = fw-SPC-rel-$(subst .,_,$(MLNX_SPC_FW_VERSION))-EVB.mfa
|
|
$(MLNX_SPC_FW_FILE)_PATH = $(MLNX_FW_BASE_PATH)
|
|
$(MLNX_SPC_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC_FW_FILE)
|
|
|
|
MLNX_SPC2_FW_VERSION = 29.2008.1032
|
|
MLNX_SPC2_FW_FILE = fw-SPC2-rel-$(subst .,_,$(MLNX_SPC2_FW_VERSION))-EVB.mfa
|
|
$(MLNX_SPC2_FW_FILE)_PATH = $(MLNX_FW_BASE_PATH)
|
|
$(MLNX_SPC2_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC2_FW_FILE)
|
|
|
|
MLNX_SPC3_FW_VERSION = 30.2008.1032
|
|
MLNX_SPC3_FW_FILE = fw-SPC3-rel-$(subst .,_,$(MLNX_SPC3_FW_VERSION))-EVB.mfa
|
|
$(MLNX_SPC3_FW_FILE)_PATH = $(MLNX_FW_BASE_PATH)
|
|
$(MLNX_SPC3_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC3_FW_FILE)
|
|
|
|
MLNX_FW_FILES = $(MLNX_SPC_FW_FILE) $(MLNX_SPC2_FW_FILE) $(MLNX_SPC3_FW_FILE)
|
|
|
|
ifeq ($(FW_FROM_URL),n)
|
|
SONIC_COPY_FILES += $(MLNX_FW_FILES)
|
|
else
|
|
SONIC_ONLINE_FILES += $(MLNX_FW_FILES)
|
|
endif
|
|
|
|
MLNX_FILES += $(MLNX_FW_FILES)
|
|
|
|
export MLNX_SPC_FW_VERSION
|
|
export MLNX_SPC_FW_FILE
|
|
|
|
export MLNX_SPC2_FW_VERSION
|
|
export MLNX_SPC2_FW_FILE
|
|
|
|
export MLNX_SPC3_FW_VERSION
|
|
export MLNX_SPC3_FW_FILE
|