Browse Source

qcacld-3.0: Add Kbuild support for FIPS feature

In order to get FIPS certification the driver will need to support a
userspace API and accompanying logic to exercise the FIPS WMI
interface exposed by firmware. Since this logic need not be enabled on
production devices, expose a configuration knob so that it can be
enabled or disabled on demand.

Change-Id: I979be0175ea89e9147b07b222f54a7c3fc23dbd9
CRs-Fixed: 2065002
Jeff Johnson 8 years ago
parent
commit
7869aadbd4
2 changed files with 11 additions and 0 deletions
  1. 7 0
      Kbuild
  2. 4 0
      Kconfig

+ 7 - 0
Kbuild

@@ -167,6 +167,9 @@ ifneq ($(CONFIG_ROME_IF),sdio)
 	#Flag to enable DISA
 	CONFIG_WLAN_FEATURE_DISA := y
 
+	#Flag to enable FIPS
+	CONFIG_WLAN_FEATURE_FIPS := y
+
 	#Flag to enable Fast Path feature
 	CONFIG_WLAN_FASTPATH := y
 
@@ -2099,6 +2102,10 @@ ifeq ($(CONFIG_WLAN_FEATURE_DISA),y)
 CDEFINES += -DWLAN_FEATURE_DISA
 endif
 
+ifeq ($(CONFIG_WLAN_FEATURE_FIPS),y)
+CDEFINES += -DWLAN_FEATURE_FIPS
+endif
+
 ifeq ($(CONFIG_LFR_SUBNET_DETECTION), y)
 CDEFINES += -DFEATURE_LFR_SUBNET_DETECTION
 endif

+ 4 - 0
Kconfig

@@ -128,6 +128,10 @@ config WLAN_FEATURE_DISA
 	bool "Enable DISA certification feature"
 	default n
 
+config WLAN_FEATURE_FIPS
+	bool "Enable FIPS certification feature"
+	default n
+
 config WLAN_FEATURE_11AX
 	bool "Enable 11AX(High Efficiency) feature"
 	default n