[PATCH v2] OMAP: AES: Don't idle/start AES device between Encrypt operations

2013-05-28 Thread Joel A Fernandes
Calling runtime PM API for every block causes serious perf hit to crypto operations that are done on a long buffer. As crypto is performed on a page boundary, encrypting large buffers can cause a series of crypto operations divided by page. The runtime PM API is also called those many times. We ca

Re: [PATCH 20/39] usb: musb: ux500: move channel number knowledge into the driver

2013-05-28 Thread Lee Jones
Hi Felipe > > > For all ux500 based platforms the maximum number of end-points are used. > > > Move this knowledge into the driver so we can relinquish the burden from > > > platform data. This also removes quite a bit of complexity from the driver > > > and will aid us when we come to enable the

Re: [PATCH 20/39] usb: musb: ux500: move channel number knowledge into the driver

2013-05-28 Thread Felipe Balbi
Hi, On Wed, May 15, 2013 at 07:18:01PM +0200, Linus Walleij wrote: > On Wed, May 15, 2013 at 11:51 AM, Lee Jones wrote: > > > For all ux500 based platforms the maximum number of end-points are used. > > Move this knowledge into the driver so we can relinquish the burden from > > platform data. T

Re: [PATCH] crypto: ux50: Cocci spatch "resource_size.spatch"

2013-05-28 Thread Herbert Xu
On Wed, May 22, 2013 at 09:38:40PM +0200, Thomas Meyer wrote: > > Signed-off-by: Thomas Meyer Patch applied. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH 1/2] crypto: sha512_ssse3 - add sha384 support

2013-05-28 Thread Herbert Xu
On Tue, May 21, 2013 at 05:10:44PM +0300, Jussi Kivilinna wrote: > Add sha384 implementation to sha512_ssse3 module. > > This also fixes sha512_ssse3 module autoloading issue when 'sha384' is used > before 'sha512'. Previously in such case, just sha512_generic was loaded and > not sha512_ssse3 (si

Re: [PATCH] crypto: sha512_generic - set cra_driver_name

2013-05-28 Thread Herbert Xu
On Tue, May 21, 2013 at 05:10:10PM +0300, Jussi Kivilinna wrote: > 'sha512_generic' should set driver name now that there is alternative sha512 > provider (sha512_ssse3). > > Signed-off-by: Jussi Kivilinna Patch applied. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP

Re: [PATCH 1/8] crypto: caam - fix SEQ IN PTR command when RTO or PRE bit is set

2013-05-28 Thread Herbert Xu
On Mon, May 13, 2013 at 02:37:57PM +, Andrei Varvara wrote: > SEQ IN PTR command does not require pointer if RTO or PRE bit is set > Updated desc_constr.h accordingly. > > Signed-off-by: Andrei Varvara > Reviewed-by: Phillips Kim-R1AAHA > Reviewed-by: Fleming Andrew-AFLEMING All applied to

Re: [PATCH v2 1/1] crypto: Added support for Freescale's DCP co-processor

2013-05-28 Thread Herbert Xu
On Sun, May 19, 2013 at 09:59:38PM +0200, Tobias Rauter wrote: > This patch enables the DCP crypto functionality on imx28. > Currently, only aes-128-cbc is supported. > Moreover, the dcpboot misc-device, which is used by Freescale's > SDK tools and uses a non-software-readable OTP-key, is added. >

[PATCH] crypto: hifn_795x - fix to pass correct device identity to free_irq()

2013-05-28 Thread Wei Yongjun
From: Wei Yongjun free_irq() expects the same device identity that was passed to request_irq(), otherwise the IRQ is not freed. Signed-off-by: Wei Yongjun --- drivers/crypto/hifn_795x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/hifn_795x.c b/drivers

Re: [PATCH v2] OMAP: AES: Don't idle/start AES device between Encrypt operations

2013-05-28 Thread Herbert Xu
On Tue, May 14, 2013 at 03:07:47AM +, Joel A Fernandes wrote: > Calling runtime PM API for every block causes serious perf hit to > crypto operations that are done on a long buffer. > As crypto is performed on a page boundary, encrypting large buffers can > cause a series of crypto operations d