mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-27 04:54:41 +08:00
cdc594e003
This patch introduces DDP (Dynamic Device Personalization) which allows loading profiles that change the way internal parser interprets processed frames. To load DDP profiles it utilizes ethtool flash feature. The files with recipes must be located in /var/lib/firmware directory. Afterwards the recipe can be loaded by invoking: ethtool -f <if_name> <file_name> 100 ethtool -f <if_name> - 100 See further details of this feature in the i40e documentation, or visit https://www.intel.com/content/www/us/en/architecture-and-technology/ethernet/dynamic-device-personalization-brief.html The driver shall verify DDP profile can be loaded in accordance with the rules: * Package with Group ID 0 are exclusive and can only be loaded the first. * Packages with Group ID 0x01-0xFE can only be loaded simultaneously with the packages from the same group. * Packages with Group ID 0xFF are compatible with all other packages. Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
30 lines
547 B
Makefile
30 lines
547 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright(c) 2013 - 2018 Intel Corporation.
|
|
|
|
#
|
|
# Makefile for the Intel(R) Ethernet Connection XL710 (i40e.ko) driver
|
|
#
|
|
|
|
ccflags-y += -I$(src)
|
|
subdir-ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_I40E) += i40e.o
|
|
|
|
i40e-objs := i40e_main.o \
|
|
i40e_ethtool.o \
|
|
i40e_adminq.o \
|
|
i40e_common.o \
|
|
i40e_hmc.o \
|
|
i40e_lan_hmc.o \
|
|
i40e_nvm.o \
|
|
i40e_debugfs.o \
|
|
i40e_diag.o \
|
|
i40e_txrx.o \
|
|
i40e_ptp.o \
|
|
i40e_ddp.o \
|
|
i40e_client.o \
|
|
i40e_virtchnl_pf.o \
|
|
i40e_xsk.o
|
|
|
|
i40e-$(CONFIG_I40E_DCB) += i40e_dcb.o i40e_dcb_nl.o
|