linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] crypto: caam - do not reset pointer size from MCFGR register
@ 2019-11-26 12:23 Iuliana Prodan
  2019-11-26 17:03 ` Horia Geanta
  0 siblings, 1 reply; 3+ messages in thread
From: Iuliana Prodan @ 2019-11-26 12:23 UTC (permalink / raw)
  To: Herbert Xu, Horia Geanta, Aymen Sghaier
  Cc: David S. Miller, Andrey Smirnov, Alison Wang, linux-crypto,
	linux-kernel, linux-imx, Iuliana Prodan

In commit 'a1cf573ee95 ("crypto: caam - select DMA address
size at runtime")' CAAM pointer size (caam_ptr_size) is changed
from sizeof(dma_addr_t) to runtime value computed from MCFGR register.
Therefore, do not reset MCFGR[PS].

Fixes: a1cf573ee95 ("crypto: caam - select DMA address size at runtime")
Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
Cc: <stable@vger.kernel.org>
Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Alison Wang <alison.wang@nxp.com>
---
Changes since v1:
- do not reset MCFGR[PS];
- update description;
- cc-ed authors for Fixes tag.

 drivers/crypto/caam/ctrl.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/crypto/caam/ctrl.c b/drivers/crypto/caam/ctrl.c
index d7c3c3805693..3e811fcc6b83 100644
--- a/drivers/crypto/caam/ctrl.c
+++ b/drivers/crypto/caam/ctrl.c
@@ -671,11 +671,9 @@ static int caam_probe(struct platform_device *pdev)
 	of_node_put(np);
 
 	if (!ctrlpriv->mc_en)
-		clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK | MCFGR_LONG_PTR,
+		clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK,
 			      MCFGR_AWCACHE_CACH | MCFGR_AWCACHE_BUFF |
-			      MCFGR_WDENABLE | MCFGR_LARGE_BURST |
-			      (sizeof(dma_addr_t) == sizeof(u64) ?
-			       MCFGR_LONG_PTR : 0));
+			      MCFGR_WDENABLE | MCFGR_LARGE_BURST);
 
 	handle_imx6_err005766(&ctrl->mcr);
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] crypto: caam - do not reset pointer size from MCFGR register
  2019-11-26 12:23 [PATCH v2] crypto: caam - do not reset pointer size from MCFGR register Iuliana Prodan
@ 2019-11-26 17:03 ` Horia Geanta
  2019-11-26 22:25   ` Iuliana Prodan
  0 siblings, 1 reply; 3+ messages in thread
From: Horia Geanta @ 2019-11-26 17:03 UTC (permalink / raw)
  To: Iuliana Prodan, Herbert Xu, Aymen Sghaier
  Cc: David S. Miller, Andrey Smirnov, Alison Wang, linux-crypto,
	linux-kernel, dl-linux-imx

On 11/26/2019 2:23 PM, Iuliana Prodan wrote:
> In commit 'a1cf573ee95 ("crypto: caam - select DMA address
> size at runtime")' CAAM pointer size (caam_ptr_size) is changed
When quoting a commit, it shouldn't be split across several lines.

> from sizeof(dma_addr_t) to runtime value computed from MCFGR register.
> Therefore, do not reset MCFGR[PS].
> 
> Fixes: a1cf573ee95 ("crypto: caam - select DMA address size at runtime")
> Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
> Cc: <stable@vger.kernel.org>
> Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
> Cc: Alison Wang <alison.wang@nxp.com>
Reviewed-by: Horia Geantă <horia.geanta@nxp.com>

Thanks,
Horia

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] crypto: caam - do not reset pointer size from MCFGR register
  2019-11-26 17:03 ` Horia Geanta
@ 2019-11-26 22:25   ` Iuliana Prodan
  0 siblings, 0 replies; 3+ messages in thread
From: Iuliana Prodan @ 2019-11-26 22:25 UTC (permalink / raw)
  To: Horia Geanta, Herbert Xu, Aymen Sghaier
  Cc: David S. Miller, Andrey Smirnov, Alison Wang, linux-crypto,
	linux-kernel, dl-linux-imx

On 11/26/2019 7:03 PM, Horia Geanta wrote:
> On 11/26/2019 2:23 PM, Iuliana Prodan wrote:
>> In commit 'a1cf573ee95 ("crypto: caam - select DMA address
>> size at runtime")' CAAM pointer size (caam_ptr_size) is changed
> When quoting a commit, it shouldn't be split across several lines.
> 
Right, I'll send a v3.

>> from sizeof(dma_addr_t) to runtime value computed from MCFGR register.
>> Therefore, do not reset MCFGR[PS].
>>
>> Fixes: a1cf573ee95 ("crypto: caam - select DMA address size at runtime")
>> Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
>> Cc: <stable@vger.kernel.org>
>> Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
>> Cc: Alison Wang <alison.wang@nxp.com>
> Reviewed-by: Horia Geantă <horia.geanta@nxp.com>
> 
Thanks,
Iulia

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-11-26 22:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-26 12:23 [PATCH v2] crypto: caam - do not reset pointer size from MCFGR register Iuliana Prodan
2019-11-26 17:03 ` Horia Geanta
2019-11-26 22:25   ` Iuliana Prodan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).