aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/sahara.c
AgeCommit message (Expand)AuthorFilesLines
10 dayscrypto: sahara - use 'time_left' variable with wait_for_completion_timeout()Wolfram Sang1-8/+8
2023-12-29crypto: sahara - add support for crypto_engineOvidiu Panait1-178/+147
2023-12-29crypto: sahara - remove error message for bad aes request sizeOvidiu Panait1-4/+1
2023-12-29crypto: sahara - remove unnecessary NULL assignmentsOvidiu Panait1-3/+0
2023-12-29crypto: sahara - remove 'active' flag from sahara_aes_reqctx structOvidiu Panait1-8/+1
2023-12-29crypto: sahara - use dev_err_probe()Ovidiu Panait1-18/+9
2023-12-29crypto: sahara - use devm_clk_get_enabled()Ovidiu Panait1-23/+8
2023-12-29crypto: sahara - use BIT() macroOvidiu Panait1-38/+38
2023-12-29crypto: sahara - clean up macro indentationOvidiu Panait1-91/+91
2023-12-29crypto: sahara - do not resize req->src when doing hash operationsOvidiu Panait1-36/+2
2023-12-29crypto: sahara - fix processing hash requests with req->nbytes < sg->lengthOvidiu Panait1-1/+4
2023-12-29crypto: sahara - improve error handling in sahara_sha_process()Ovidiu Panait1-2/+8
2023-12-29crypto: sahara - fix wait_for_completion_timeout() error handlingOvidiu Panait1-8/+10
2023-12-29crypto: sahara - fix ahash reqsizeOvidiu Panait1-2/+1
2023-12-29crypto: sahara - handle zero-length aes requestsOvidiu Panait1-0/+3
2023-12-08crypto: sahara - avoid skcipher fallback code duplicationOvidiu Panait1-60/+25
2023-12-08crypto: sahara - remove unused error field in sahara_devOvidiu Panait1-8/+3
2023-12-08crypto: sahara - fix error handling in sahara_hw_descriptor_create()Ovidiu Panait1-5/+3
2023-12-08crypto: sahara - fix processing requests with cryptlen < sg->lengthOvidiu Panait1-2/+7
2023-12-08crypto: sahara - fix ahash selftest failureOvidiu Panait1-1/+1
2023-12-08crypto: sahara - fix cbc selftest failureOvidiu Panait1-2/+31
2023-12-08crypto: sahara - remove FLAGS_NEW_KEY logicOvidiu Panait1-21/+13
2023-10-27crypto: sahara - Convert to platform remove callback returning voidUwe Kleine-König1-4/+2
2023-08-23crypto: drivers - Explicitly include correct DT includesRob Herring1-1/+0
2023-03-24crypto: drivers - remove unnecessary (void*) conversionsYu Zhe1-2/+2
2023-02-13crypto: sahara - Use request_complete helpersHerbert Xu1-2/+2
2022-08-26crypto: sahara - Fix error check for dma_map_sgJack Wang1-2/+2
2022-08-19crypto: sahara - don't sleep when in softirqZhengchao Shao1-9/+9
2021-01-03crypto: sahara - Remove unused .id_table supportFabio Estevam1-7/+0
2020-11-20crypto: sha - split sha.h into sha1.h and sha2.hEric Biggers1-1/+2
2020-08-20crypto: algapi - Remove skbuff.h inclusionHerbert Xu1-1/+1
2020-07-16crypto: sahara - permit asynchronous skcipher as fallbackArd Biesheuvel1-51/+45
2020-01-09crypto: remove propagation of CRYPTO_TFM_RES_* flagsEric Biggers1-8/+1
2019-11-17crypto: sahara - switch to skcipher APIArd Biesheuvel1-81/+75
2019-08-09crypto: drivers - Remove dev_err() usage after platform_get_irq()Stephen Boyd1-3/+1
2019-07-08Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds1-3/+1
2019-06-19treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500Thomas Gleixner1-4/+1
2019-06-13crypto: sahara - Use devm_platform_ioremap_resource()Fabio Estevam1-3/+1
2019-04-18crypto: sahara - Convert IS_ENABLED uses to __is_definedJoe Perches1-3/+3
2018-11-20crypto: remove useless initializations of cra_listEric Biggers1-1/+0
2018-09-28crypto: sahara - Remove VLA usage of skcipherKees Cook1-16/+15
2018-07-20crypto: sharah - Unregister correct algorithms for SAHARA 3Michael Müller1-2/+2
2018-07-09crypto: ahash - remove useless setting of type flagsEric Biggers1-4/+2
2018-02-22crypto: sahara - Improve a size determination in sahara_probe()Markus Elfring1-1/+1
2018-02-22crypto: sahara - Delete an error message for a failed memory allocation in sa...Markus Elfring1-3/+1
2017-08-22crypto: sahara - constify platform_device_idArvind Yadav1-1/+1
2017-08-17crypto: sahara - Remove leftover from previous used spinlockMogens Lauridsen1-2/+0
2017-08-17crypto: sahara - Fix dma unmap directionMogens Lauridsen1-4/+4
2017-07-18crypto: sahara - make of_device_ids constArvind Yadav1-1/+1
2016-11-01crypto: sahara - fix typo "Decidated" -> "Dedicated"Colin Ian King1-1/+1
2016-07-01crypto: sahara - Use skcipher for fallbackHerbert Xu1-62/+50
2016-02-06crypto: sahara - fill the statesize fieldFabio Estevam1-0/+2
2016-02-06crypto: sahara - avoid needlessly saving and restoring sahara_ctxFabio Estevam1-10/+2
2016-02-06crypto: sahara - remove unneeded mutex in the exported stateFabio Estevam1-5/+0
2015-12-10crypto: sahara - fix debug output for 64-bit dma_addr_tArnd Bergmann1-4/+4
2015-12-10crypto: sahara - fix 64-bit dma_addr_t compilationArnd Bergmann1-9/+9
2015-11-23crypto: sahara - set nb_[in|out]_sg as signed intLABBE Corentin1-2/+2
2015-11-17crypto: sahara - check return value of sg_nents_for_lenLABBE Corentin1-0/+12
2015-10-15crypto: sahara - set array of const as constLABBE Corentin1-6/+6
2015-10-01crypto: sahara - dma_map_sg can handle chained SGLABBE Corentin1-53/+13
2015-09-21crypto: sahara - replace sahara_sg_length with sg_nents_for_lenLABBE Corentin1-27/+3
2015-09-02Merge branch 'for-4.3/sg' of git://git.kernel.dk/linux-blockLinus Torvalds1-1/+1
2015-08-19crypto: sahara - Use dmam_alloc_coherentVaishali Thakkar1-37/+9
2015-08-17crypto: replace scatterwalk_sg_chain with sg_chainDan Williams1-1/+1
2015-06-21crypto: sahara - propagate the error on clk_disable_unprepare() failureFabio Estevam1-4/+9
2015-04-08crypto: sahara - fix AES descriptor createSteffen Trumtrar1-14/+18
2015-04-08crypto: sahara - use the backlogSteffen Trumtrar1-0/+5
2015-02-28crypto: sahara - drop unnecessary default assignmentNicholas Mc Guire1-1/+1
2015-02-28crypto: sahara - pass on error conditionNicholas Mc Guire1-0/+2
2015-02-28crypto: sahara - fix type of ret for wait_for_completion_timeoutNicholas Mc Guire1-4/+6
2015-01-26crypto: replace scatterwalk_sg_next with sg_nextCristian Stoica1-1/+1
2014-12-14Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-1/+0
2014-12-03crypto: sahara - add support for SHA1/256Steffen Trumtrar1-5/+621
2014-12-03crypto: sahara - replace tasklets with kthreadSteffen Trumtrar1-86/+66
2014-12-03crypto: sahara - add support for i.MX53Steffen Trumtrar1-3/+17
2014-12-03crypto: sahara - fix spinlock initializationSteffen Trumtrar1-0/+2
2014-10-20crypto: drop owner assignment from platform_driversWolfram Sang1-1/+0
2014-05-22crypto: sahara - tfm->__crt_alg->cra_name directlyMarek Vasut1-1/+1
2014-03-10crypto: sahara - Use return value of devm_request_irq() on errorAlexander Shiyan1-3/+4
2014-02-27crypto: sahara - Use devm_ioremap_resource()Jingoo Han1-16/+3
2013-10-07crypto: sahara - Remove redundant of_match_ptrSachin Kamat1-1/+1
2013-08-21crypto: sahara - checking the wrong variableDan Carpenter1-1/+1
2013-08-14crypto: sahara - Staticize local symbolJingoo Han1-1/+1
2013-06-05crypto: sahara - fix building as moduleArnd Bergmann1-1/+1
2013-03-21crypto: sahara - Add driver for SAHARA2 accelerator.Javier Martin1-0/+1070