[linux-sunxi] Re: [PATCH v11 4/7] drm/sun4i: dsi: Handle bus clock explicitly

2019-11-22 Thread Jagan Teki
Hi, On Fri, Nov 22, 2019 at 11:48 PM Maxime Ripard wrote: > > Hi, > > On Thu, Nov 21, 2019 at 05:24:47PM +0530, Jagan Teki wrote: > > On Sun, Nov 3, 2019 at 11:02 PM Maxime Ripard wrote: > > > > > > On Fri, Nov 01, 2019 at 07:42:55PM +0530, Jagan Teki wrote: > > > > Hi Maxime, > > > > > > > >

[linux-sunxi] Re: [PATCH] crypto: allwinner: sun8i-ce: enable working on big endian

2019-11-22 Thread Herbert Xu
On Sun, Nov 17, 2019 at 05:07:45PM +0100, Corentin Labbe wrote: > On big endian kernel, the sun8i-ce crypto driver does not works. > This patch do the necessary modification to permit it to work on BE > kernel (setting descriptor entries as __le32 and adding some cpu_to_le32) > > Fixes:

[linux-sunxi] Re: [PATCH] crypto: sun4i-ss: fix big endian issues

2019-11-22 Thread Herbert Xu
On Thu, Nov 14, 2019 at 01:58:49PM +0100, Corentin Labbe wrote: > When testing BigEndian kernel, the sun4i-ss was failling all crypto > tests. > This patch fix endian issues with it. > > Fixes: 6298e948215f ("crypto: sunxi-ss - Add Allwinner Security System crypto > accelerator") >

[linux-sunxi] Re: [PATCH] crypto: sun4i-ss: hide the Invalid keylen message

2019-11-22 Thread Herbert Xu
On Thu, Nov 14, 2019 at 11:58:52AM +0100, Corentin Labbe wrote: > Drop the "Invalid keylen" message to debug level, it adds no value, and > when CRYPTO_EXTRA_TEST is enabled, it floods the console. > > Signed-off-by: Corentin Labbe > --- > drivers/crypto/allwinner/sun4i-ss/sun4i-ss-cipher.c | 2

[linux-sunxi] Re: [PATCH] crypto: sun4i-ss: use crypto_ahash_digestsize

2019-11-22 Thread Herbert Xu
On Thu, Nov 14, 2019 at 11:58:13AM +0100, Corentin Labbe wrote: > The size of the digest is different between MD5 and SHA1 so instead of > using the higher value (5 words), let's use crypto_ahash_digestsize(). > > Signed-off-by: Corentin Labbe > --- >

[linux-sunxi] Re: [PATCH 1/2] crypto: sun4i-ss: Fix 64-bit size_t warnings on sun4i-ss-hash.c

2019-11-22 Thread Herbert Xu
On Thu, Nov 14, 2019 at 11:49:06AM +0100, Corentin Labbe wrote: > If you try to compile this driver on a 64-bit platform then you > will get warnings because it mixes size_t with unsigned int which > only works on 32-bit. > > This patch fixes all of the warnings on sun4i-ss-hash.c. >