Files
Zhen Kong fc2d56f659 crypto: msm: Add QTI crypto drivers
This is a snapshot of the crypto drivers as of msm-4.9 commit
<e023d014d2039d59d> ( msm: pcie: fix PCIe L0s and L1 ASPM support)
with changes to comply with msm-4.14 format requirement.

Change-Id: I843073176bb25dc96e2d84757faa77008180e0fb
Signed-off-by: Zhen Kong <zkong@codeaurora.org>
2018-03-08 14:36:36 -08:00

34 lines
860 B
C

#ifndef _UAPI_FIPS_STATUS__H
#define _UAPI_FIPS_STATUS__H
#include <linux/types.h>
#include <linux/ioctl.h>
/**
* fips_status: global FIPS140-2 status
* @FIPS140_STATUS_NA:
* Not a FIPS140-2 compliant Build.
* The flag status won't
* change throughout
* the lifetime
* @FIPS140_STATUS_PASS_CRYPTO:
* KAT self tests are passed.
* @FIPS140_STATUS_QCRYPTO_ALLOWED:
* Integrity test is passed.
* @FIPS140_STATUS_PASS:
* All tests are passed and build
* is in FIPS140-2 mode
* @FIPS140_STATUS_FAIL:
* One of the test is failed.
* This will block all requests
* to crypto modules
*/
enum fips_status {
FIPS140_STATUS_NA = 0,
FIPS140_STATUS_PASS_CRYPTO = 1,
FIPS140_STATUS_QCRYPTO_ALLOWED = 2,
FIPS140_STATUS_PASS = 3,
FIPS140_STATUS_FAIL = 0xFF
};
#endif /* _UAPI_FIPS_STATUS__H */