Commit dff67aa5 authored by Yanling Song's avatar Yanling Song Committed by Zheng Zengkai
Browse files

scsi: spfc: initial commit the spfc module

Ramaxel inclusion
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I4DBD7


CVE: NA

Initial commit the spfc module for ramaxel Super FC adapter

Signed-off-by: default avatarYanling Song <songyl@ramaxel.com>
Reviewed-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: default avatarZheng Zengkai <zhengzengkai@huawei.com>
parent 7a99cdfb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7135,3 +7135,4 @@ CONFIG_ETMEM_SCAN=m
CONFIG_ETMEM_SWAP=m
CONFIG_NET_VENDOR_RAMAXEL=y
CONFIG_SPNIC=m
CONFIG_SPFC=m
+1 −0
Original line number Diff line number Diff line
@@ -8514,3 +8514,4 @@ CONFIG_ETMEM_SWAP=m
CONFIG_USERSWAP=y
CONFIG_NET_VENDOR_RAMAXEL=y
CONFIG_SPNIC=m
CONFIG_SPFC=m
+1 −0
Original line number Diff line number Diff line
@@ -1151,6 +1151,7 @@ source "drivers/scsi/qla2xxx/Kconfig"
source "drivers/scsi/qla4xxx/Kconfig"
source "drivers/scsi/qedi/Kconfig"
source "drivers/scsi/qedf/Kconfig"
source "drivers/scsi/spfc/Kconfig"
source "drivers/scsi/huawei/Kconfig"

config SCSI_LPFC
+1 −0
Original line number Diff line number Diff line
@@ -85,6 +85,7 @@ obj-$(CONFIG_PCMCIA_QLOGIC) += qlogicfas408.o
obj-$(CONFIG_SCSI_QLOGIC_1280)	+= qla1280.o 
obj-$(CONFIG_SCSI_QLA_FC)	+= qla2xxx/
obj-$(CONFIG_SCSI_QLA_ISCSI)	+= libiscsi.o qla4xxx/
obj-$(CONFIG_SPFC) += spfc/
obj-$(CONFIG_SCSI_LPFC)		+= lpfc/
obj-$(CONFIG_SCSI_HUAWEI_FC)    += huawei/
obj-$(CONFIG_SCSI_BFA_FC)	+= bfa/
+16 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Ramaxel SPFC driver configuration
#

config SPFC
	tristate "Ramaxel Fabric Channel Host Adapter Support"
	default m
	depends on PCI && SCSI
	depends on SCSI_FC_ATTRS
	depends on ARM64 || X86_64
	help
	This driver supports Ramaxel Fabric Channel PCIe host adapter.
	To compile this driver as part of the kernel, choose Y here.
	 If unsure, choose N.
	The default is M.
Loading