From 93fe6e55b4807d6ba03fb59fe608b36b097acac6 Mon Sep 17 00:00:00 2001 From: Yue Ma Date: Mon, 23 Sep 2019 17:38:28 -0700 Subject: [PATCH] qcacmn: Add WMI unified header file for crypto The header file will contain WMI API definitions specific to crypto component. Change-Id: I97a3366e66bc424a820cdc02e6a17571ad89c737 CRs-fixed: 2533529 --- target_if/crypto/src/target_if_crypto.c | 1 + wmi/inc/wmi_unified_crypto_api.h | 38 +++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 wmi/inc/wmi_unified_crypto_api.h diff --git a/target_if/crypto/src/target_if_crypto.c b/target_if/crypto/src/target_if_crypto.c index 0b58c6ae6d..ec49b4adc2 100644 --- a/target_if/crypto/src/target_if_crypto.c +++ b/target_if/crypto/src/target_if_crypto.c @@ -34,6 +34,7 @@ #include #include #include +#include #include #ifdef FEATURE_WLAN_WAPI diff --git a/wmi/inc/wmi_unified_crypto_api.h b/wmi/inc/wmi_unified_crypto_api.h new file mode 100644 index 0000000000..044ccc0e38 --- /dev/null +++ b/wmi/inc/wmi_unified_crypto_api.h @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2019 The Linux Foundation. All rights reserved. + * + * Permission to use, copy, modify, and/or distribute this software for + * any purpose with or without fee is hereby granted, provided that the + * above copyright notice and this permission notice appear in all + * copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL + * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE + * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL + * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR + * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* + * This file contains the API definitions for the Unified Wireless Module + * Interface (WMI) specific to crypto component. + */ + +#ifndef _WMI_UNIFIED_CRYPTO_API_H_ +#define _WMI_UNIFIED_CRYPTO_API_H_ + +/* + * WMI_ADD_CIPHER_KEY_CMDID + */ +typedef enum { + PAIRWISE_USAGE = 0x00, + GROUP_USAGE = 0x01, + TX_USAGE = 0x02, /* default Tx Key - Static WEP only */ + PMK_USAGE = 0x04, /* PMK cache */ +} KEY_USAGE; + +#endif +