From 76fb67a8482305f4af726a7654126458e6cc7e49 Mon Sep 17 00:00:00 2001 From: Matthew Gerlach Date: Mon, 4 May 2020 18:21:44 -0400 Subject: [PATCH] dfl: add config fragment and readme Add a directory that contains kernel configuration fragments for the Device Feature List driver framework. Signed-off-by: Matthew Gerlach Signed-off-by: Russ Weight --- configs/n3000_d5005_defconfig | 32 ++++++++++++++++++++++++++++++++ configs/readme.txt | 16 ++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 configs/n3000_d5005_defconfig create mode 100644 configs/readme.txt diff --git a/configs/n3000_d5005_defconfig b/configs/n3000_d5005_defconfig new file mode 100644 index 000000000000..02879ff1eb85 --- /dev/null +++ b/configs/n3000_d5005_defconfig @@ -0,0 +1,32 @@ +CONFIG_FPGA_DFL=m +CONFIG_FPGA_DFL_FME=m +CONFIG_FPGA_DFL_FME_MGR=m +CONFIG_FPGA_DFL_FME_BRIDGE=m +CONFIG_FPGA_DFL_FME_REGION=m +CONFIG_FPGA_DFL_AFU=m +CONFIG_FPGA_DFL_N3000_NIOS=m +CONFIG_FPGA_DFL_PCI=m + +CONFIG_FPGA_VFIO_MDEV_DFL=m + +CONFIG_FPGA=m +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_REGION=m + +CONFIG_SENSORS_INTEL_M10_BMC_HWMON=m +CONFIG_MFD_INTEL_M10_BMC=m +CONFIG_MFD_INTEL_M10_BMC_SECURE=m + +CONFIG_SPI_ALTERA=m + +CONFIG_FPGA_DFL_ETH_GROUP=m +CONFIG_INTEL_M10_BMC_PKVL=m + +CONFIG_REGMAP_MMIO=m + +CONFIG_IFPGA_SEC_MGR=m + +CONFIG_MEMORY=y +CONFIG_FPGA_DFL_EMIF=m + +CONFIG_IIO_INTERRUPT_TRIGGER=m diff --git a/configs/readme.txt b/configs/readme.txt new file mode 100644 index 000000000000..285d09021633 --- /dev/null +++ b/configs/readme.txt @@ -0,0 +1,16 @@ +This directory contains linux kernel configuration fragments related to +the Device Feature List (DFL) driver collection. By design the DFL driver +collection is extendable, and it is anticipated that new drivers will be added +to the collection. + +The fragments are intended to be appended to a base kernel configuration. +For example the following commands would configure the kernel source to +support the Intel n3000 and d5005 PCIe cards: + + # cd kernel_source_directory + # cp /boot/config-`uname -r` .config + # cat configs/n3000_d5005_defconfig >> .config + # make olddefconfig + +n3000_d5005_defconfig + Default configuration for Intel n3000 and d5005 PCIe cards.