]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
crypto: caam - double the entropy delay interval for retry
authorGaurav Jain <gaurav.jain@nxp.com>
Fri, 5 Sep 2025 10:11:48 +0000 (15:41 +0530)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 13 Sep 2025 04:11:06 +0000 (12:11 +0800)
during entropy evaluation, if the generated samples fail
any statistical test, then, all of the bits will be discarded,
and a second set of samples will be generated and tested.

the entropy delay interval should be doubled before performing the
retry.

also, ctrlpriv->rng4_sh_init and inst_handles both reads RNG DRNG
status register, but only inst_handles is updated before every retry.
so only check inst_handles and removing ctrlpriv->rng4_sh_init

Signed-off-by: Gaurav Jain <gaurav.jain@nxp.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/caam/ctrl.c

index ca4f6eb53b9f628a6a3a637fa7a617df6b5b95d1..320be5d777378934809cc0c77f7748109918399a 100644 (file)
@@ -703,12 +703,12 @@ static int caam_ctrl_rng_init(struct device *dev)
                         */
                        if (needs_entropy_delay_adjustment())
                                ent_delay = 12000;
-                       if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
+                       if (!inst_handles) {
                                dev_info(dev,
                                         "Entropy delay = %u\n",
                                         ent_delay);
                                kick_trng(dev, ent_delay);
-                               ent_delay += 400;
+                               ent_delay = ent_delay * 2;
                        }
                        /*
                         * if instantiate_rng(...) fails, the loop will rerun