DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: update the snow3g library information
@ 2016-04-01 11:23 Pablo de Lara
  2016-04-04 13:28 ` Declan Doherty
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo de Lara @ 2016-04-01 11:23 UTC (permalink / raw)
  To: dev, john.mcnamara; +Cc: declan.doherty, Pablo de Lara

A new process to request the libsso library required by the SNOW3G PMD
has been put in place, through a website, replacing the previous email method.
This commit updates the SNOW3G documentation, to reflect this change.

Since the library does not support newer gcc versions, the documentation
also contains a patch to make the library work with gcc > 5.0.

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
 doc/guides/cryptodevs/snow3g.rst | 41 ++++++++++++++++++++++++++++++++--------
 1 file changed, 33 insertions(+), 8 deletions(-)

diff --git a/doc/guides/cryptodevs/snow3g.rst b/doc/guides/cryptodevs/snow3g.rst
index b4c53dc..7e38d20 100644
--- a/doc/guides/cryptodevs/snow3g.rst
+++ b/doc/guides/cryptodevs/snow3g.rst
@@ -57,15 +57,40 @@ Limitations
 Installation
 ------------
 
-To build DPDK with the SNOW3G_PMD the user is required to get
-the export controlled libsso library, sending a request to
-`DPDKUser_software_access@intel.com`, and compile it
-on their user system before building DPDK:
+To build DPDK with the SNOW3G_PMD the user is required to download
+the export controlled ``libsso`` library, by requesting it from
+`<https://networkbuilders.intel.com/network-technologies/dpdk>`_,
+and compiling it on their system before building DPDK::
 
-.. code-block:: console
+   make -f Makefile_snow3g
 
-	make -f Makefile_snow3g
+**Note**: If using a gcc version higher than 5.0, and compilation fails, apply the following patch:
 
-The environmental variable LIBSSO_PATH must be exported with the path
+.. code-block:: diff
+
+   /libsso/src/snow3g/sso_snow3g.c
+
+   static inline void ClockFSM_4(sso_snow3gKeyState4_t *pCtx, __m128i *data)
+   {
+       __m128i F, R;
+   -    uint32_t K, L;
+   +    uint32_t K;
+   +    /* Declare unused if SNOW3G_WSM/SNB are defined */
+   +    uint32_t L __attribute__ ((unused)) = 0;
+
+        F = _mm_add_epi32(pCtx->LFSR_X[15], pCtx->FSM_X[0]);
+        R = _mm_xor_si128(pCtx->LFSR_X[5], pCtx->FSM_X[2]);
+
+   /libsso/include/sso_snow3g_internal.h
+
+   -inline void ClockFSM_1(sso_snow3gKeyState1_t *pCtx, uint32_t *data);
+   -inline void ClockLFSR_1(sso_snow3gKeyState1_t *pCtx);
+   -inline void sso_snow3gStateInitialize_1(sso_snow3gKeyState1_t * pCtx, sso_snow3g_key_schedule_t *pKeySched, uint8_t *pIV);
+   +void ClockFSM_1(sso_snow3gKeyState1_t *pCtx, uint32_t *data);
+   +void ClockLFSR_1(sso_snow3gKeyState1_t *pCtx);
+   +void sso_snow3gStateInitialize_1(sso_snow3gKeyState1_t * pCtx, sso_snow3g_key_schedule_t *pKeySched, uint8_t *pIV);
+
+
+The environmental variable ``LIBSSO_PATH`` must be exported with the path
 where you extracted and built the libsso library and finally set
-CONFIG_RTE_LIBRTE_PMD_SNOW3G=y in config/common_base.
+``CONFIG_RTE_LIBRTE_PMD_SNOW3G=y`` in ``config/common_base``.
-- 
2.5.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: update the snow3g library information
  2016-04-01 11:23 [dpdk-dev] [PATCH] doc: update the snow3g library information Pablo de Lara
@ 2016-04-04 13:28 ` Declan Doherty
  2016-04-06 17:05   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Declan Doherty @ 2016-04-04 13:28 UTC (permalink / raw)
  To: Pablo de Lara, dev, john.mcnamara

On 01/04/16 12:23, Pablo de Lara wrote:
> A new process to request the libsso library required by the SNOW3G PMD
> has been put in place, through a website, replacing the previous email method.
> This commit updates the SNOW3G documentation, to reflect this change.
>
> Since the library does not support newer gcc versions, the documentation
> also contains a patch to make the library work with gcc > 5.0.
>
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> ---
.....
>

Acked-by: Declan Doherty <declan.doherty@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: update the snow3g library information
  2016-04-04 13:28 ` Declan Doherty
@ 2016-04-06 17:05   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2016-04-06 17:05 UTC (permalink / raw)
  To: Pablo de Lara; +Cc: dev, Declan Doherty, john.mcnamara

> > A new process to request the libsso library required by the SNOW3G PMD
> > has been put in place, through a website, replacing the previous email method.
> > This commit updates the SNOW3G documentation, to reflect this change.
> >
> > Since the library does not support newer gcc versions, the documentation
> > also contains a patch to make the library work with gcc > 5.0.
> >
> > Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> 
> Acked-by: Declan Doherty <declan.doherty@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-04-06 17:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-01 11:23 [dpdk-dev] [PATCH] doc: update the snow3g library information Pablo de Lara
2016-04-04 13:28 ` Declan Doherty
2016-04-06 17:05   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).