From patchwork Mon Oct 12 14:10:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Akhil Goyal X-Patchwork-Id: 80370 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 17339A04B6; Mon, 12 Oct 2020 16:11:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DA49F1D8FC; Mon, 12 Oct 2020 16:10:26 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id E441E1D736; Mon, 12 Oct 2020 16:10:20 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id C7612200E20; Mon, 12 Oct 2020 16:10:20 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 6F5CF200E0D; Mon, 12 Oct 2020 16:10:17 +0200 (CEST) Received: from lsv03273.swis.in-blr01.nxp.com (lsv03273.swis.in-blr01.nxp.com [92.120.147.113]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id C93874031C; Mon, 12 Oct 2020 16:10:10 +0200 (CEST) From: Akhil Goyal To: dev@dpdk.org, techboard@dpdk.org Cc: thomas@monjalon.net, anoobj@marvell.com, hemant.agrawal@nxp.com, declan.doherty@intel.com, david.coyle@intel.com, Akhil Goyal Date: Mon, 12 Oct 2020 19:40:01 +0530 Message-Id: <20201012141006.31463-4-akhil.goyal@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201012141006.31463-1-akhil.goyal@nxp.com> References: <20201011213403.21169-1-akhil.goyal@nxp.com> <20201012141006.31463-1-akhil.goyal@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH v3 3/8] doc: remove unnecessary API code from security guide X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Various xform structures are being copied in rte_security guide which can be referred from the API documentation generated by Doxygen. The security guide does not talk about specific details of these xforms and thus are removed from the security guide. Signed-off-by: Akhil Goyal --- doc/guides/prog_guide/rte_security.rst | 55 +------------------------- 1 file changed, 1 insertion(+), 54 deletions(-) diff --git a/doc/guides/prog_guide/rte_security.rst b/doc/guides/prog_guide/rte_security.rst index 127da2e4f..41c95aa52 100644 --- a/doc/guides/prog_guide/rte_security.rst +++ b/doc/guides/prog_guide/rte_security.rst @@ -1,5 +1,5 @@ .. SPDX-License-Identifier: BSD-3-Clause - Copyright 2017 NXP + Copyright 2017,2020 NXP @@ -647,63 +647,10 @@ which will be updated in the future. IPsec related configuration parameters are defined in ``rte_security_ipsec_xform`` -.. code-block:: c - - struct rte_security_ipsec_xform { - uint32_t spi; - /**< SA security parameter index */ - uint32_t salt; - /**< SA salt */ - struct rte_security_ipsec_sa_options options; - /**< various SA options */ - enum rte_security_ipsec_sa_direction direction; - /**< IPsec SA Direction - Egress/Ingress */ - enum rte_security_ipsec_sa_protocol proto; - /**< IPsec SA Protocol - AH/ESP */ - enum rte_security_ipsec_sa_mode mode; - /**< IPsec SA Mode - transport/tunnel */ - struct rte_security_ipsec_tunnel_param tunnel; - /**< Tunnel parameters, NULL for transport mode */ - }; - PDCP related configuration parameters are defined in ``rte_security_pdcp_xform`` -.. code-block:: c - - struct rte_security_pdcp_xform { - int8_t bearer; /**< PDCP bearer ID */ - /** Enable in order delivery, this field shall be set only if - * driver/HW is capable. See RTE_SECURITY_PDCP_ORDERING_CAP. - */ - uint8_t en_ordering; - /** Notify driver/HW to detect and remove duplicate packets. - * This field should be set only when driver/hw is capable. - * See RTE_SECURITY_PDCP_DUP_DETECT_CAP. - */ - uint8_t remove_duplicates; - /** PDCP mode of operation: Control or data */ - enum rte_security_pdcp_domain domain; - /** PDCP Frame Direction 0:UL 1:DL */ - enum rte_security_pdcp_direction pkt_dir; - /** Sequence number size, 5/7/12/15/18 */ - enum rte_security_pdcp_sn_size sn_size; - /** Starting Hyper Frame Number to be used together with the SN - * from the PDCP frames - */ - uint32_t hfn; - /** HFN Threshold for key renegotiation */ - uint32_t hfn_threshold; - }; - DOCSIS related configuration parameters are defined in ``rte_security_docsis_xform`` -.. code-block:: c - - struct rte_security_docsis_xform { - enum rte_security_docsis_direction direction; - /**< DOCSIS direction */ - }; - Security API ~~~~~~~~~~~~