This patches reworks the way the algorithm type is set in the context,
by using the fact that the decryption algorithms are just a combination
of the algorithm encryption type and CONTEXT_CONTROL_TYPE_NULL_IN.
This will help having simpler code when adding the AEAD support, to
avoid ending up with an endless switch case block.
Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
        struct safexcel_crypto_priv *priv = ctx->priv;
        int ctrl_size;
 
-       if (sreq->direction == SAFEXCEL_ENCRYPT)
-               cdesc->control_data.control0 |= CONTEXT_CONTROL_TYPE_CRYPTO_OUT;
-       else
-               cdesc->control_data.control0 |= CONTEXT_CONTROL_TYPE_CRYPTO_IN;
+       cdesc->control_data.control0 |= CONTEXT_CONTROL_TYPE_CRYPTO_OUT;
+
+       /* The decryption control type is a combination of the encryption type
+        * and CONTEXT_CONTROL_TYPE_NULL_IN, for all types.
+        */
+       if (sreq->direction == SAFEXCEL_DECRYPT)
+               cdesc->control_data.control0 |= CONTEXT_CONTROL_TYPE_NULL_IN;
 
        cdesc->control_data.control0 |= CONTEXT_CONTROL_KEY_EN;
        cdesc->control_data.control1 |= ctx->mode;