From: Santosh Shilimkar <santosh.shilimkar@ti.com>
To: "Mark A. Greer" <mgreer@animalcreek.com>
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@listse.infradead.orgp
Subject: Re: [PATCH 0/7] crypto: omap-sham updates
Date: Sun, 21 Oct 2012 11:58:36 +0530 [thread overview]
Message-ID: <50839614.1080607@ti.com> (raw)
In-Reply-To: <1350683640-15044-1-git-send-email-mgreer@animalcreek.com>
Mark,
On Saturday 20 October 2012 03:23 AM, Mark A. Greer wrote:
> From: "Mark A. Greer" <mgreer@animalcreek.com>
>
> This series updates the crypto omap-sham driver and supporting
> infrastructure.
>
> Notes:
>
> a) Based on current k.o. c9623de (Merge branch 'v4l_for_linus'
> of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media)
>
> b) These have only been tested on an omap2420 h4 and an am37x evm. If you
> have different hardware available and a few minutes, please test them.
> A quick and easy test is to enable tcrypt as a module
> (CONFIG_CRYPTO_TEST=m), boot, then run 'modprobe tcrypt sec=2 mode=403'.
> 'CONFIG_CRYPTO_SHA1' and 'CONFIG_CRYPTO_DEV_OMAP_SHAM' also have to be
> enabled. A quick 'grep omap-sham /proc/interrupts' will tell you if
> the omap-sham driver was really used.
>
> c) To test these patches, you will likely need...
> i) The patch included here:
> http://marc.info/?l=kernel-janitors&m=134910841909057&w=2
> ii) This patch from linux-omap/master:
> 27615a9 (ARM: OMAP: Trivial driver changes to remove include
> plat/cpu.h)
> iii) This patch from Paul Walmsley:
> http://www.spinics.net/lists/linux-omap/msg79436.html
>
> d) If you prefer, a version you can test is available at
> git@github.com:mgreeraz/linux-mag.git mag/wip/crypto-test
>
> e) There is a reduction in DMA performance after switching to dmaengine
> (see http://www.spinics.net/lists/linux-omap/msg79855.html)
>
> f) Many thanks to Jon Hunter for testing on his omap2420 h4.
>
> Mark A. Greer (7):
> ARM: OMAP2xxx: hwmod: Convert SHAM crypto device data to hwmod
> ARM: OMAP2xxx: hwmod: Add DMA information for SHAM module
> ARM: OMAP3xxx: hwmod: Convert SHAM crypto device data to hwmod
> ARM: OMAP2+: Remove unnecessary message when no SHA IP is present
> crypto: omap-sham: Convert to use pm_runtime API
> crypto: omap-sham: Add code to use dmaengine API
> crypto: omap_sham: Remove usage of private DMA API
>
Thanks for the series and oveall its looks pretty good to me.
The DMA performance is understandable with need of PREFETCH
support in OMAP DMA engine driver. IIRC, crypto was the only
driver used this feature. From the history mostly we need
to restrict the prefetch usage to applicable client driver
like crypto and hence adding such parameter/api support
might be the direction to go forward. Lets see what Peter
reports for audio as discussed on other thread.
Regards
Santosh
next prev parent reply other threads:[~2012-10-21 6:29 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-19 21:53 [PATCH 0/7] crypto: omap-sham updates Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-19 21:53 ` [PATCH 1/7] ARM: OMAP2xxx: hwmod: Convert SHAM crypto device data to hwmod Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-20 19:40 ` Paul Walmsley
2012-10-20 19:40 ` Paul Walmsley
2012-10-22 19:33 ` Mark A. Greer
2012-10-22 19:33 ` Mark A. Greer
2012-10-22 19:49 ` Paul Walmsley
2012-10-22 19:49 ` Paul Walmsley
2012-10-23 22:02 ` Mark A. Greer
2012-10-23 22:02 ` Mark A. Greer
2012-10-19 21:53 ` [PATCH 2/7] ARM: OMAP2xxx: hwmod: Add DMA information for SHAM module Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-20 19:40 ` Paul Walmsley
2012-10-20 19:40 ` Paul Walmsley
2012-10-22 19:37 ` Mark A. Greer
2012-10-22 19:37 ` Mark A. Greer
2012-10-22 19:53 ` Paul Walmsley
2012-10-22 19:53 ` Paul Walmsley
2012-10-22 20:01 ` Mark A. Greer
2012-10-22 20:01 ` Mark A. Greer
2012-10-19 21:53 ` [PATCH 3/7] ARM: OMAP3xxx: hwmod: Convert SHAM crypto device data to hwmod Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-20 19:41 ` Paul Walmsley
2012-10-20 19:41 ` Paul Walmsley
2012-10-19 21:53 ` [PATCH 4/7] ARM: OMAP2+: Remove unnecessary message when no SHA IP is present Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-19 21:53 ` [PATCH 5/7] crypto: omap-sham: Convert to use pm_runtime API Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-19 21:53 ` [PATCH 6/7] crypto: omap-sham: Add code to use dmaengine API Mark A. Greer
2012-10-19 21:53 ` Mark A. Greer
2012-10-21 11:52 ` Kasatkin, Dmitry
2012-10-21 11:52 ` Kasatkin, Dmitry
2012-10-22 20:53 ` Mark A. Greer
2012-10-22 20:53 ` Mark A. Greer
2012-10-19 21:54 ` [PATCH 7/7] crypto: omap_sham: Remove usage of private DMA API Mark A. Greer
2012-10-19 21:54 ` Mark A. Greer
2012-10-20 19:34 ` [PATCH 0/7] crypto: omap-sham updates Paul Walmsley
2012-10-20 19:34 ` Paul Walmsley
2012-10-22 19:38 ` Mark A. Greer
2012-10-22 19:38 ` Mark A. Greer
2012-10-21 6:28 ` Santosh Shilimkar [this message]
2012-10-22 19:46 ` Mark A. Greer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50839614.1080607@ti.com \
--to=santosh.shilimkar@ti.com \
--cc=linux-arm-kernel@listse.infradead.orgp \
--cc=linux-omap@vger.kernel.org \
--cc=mgreer@animalcreek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.