All of lore.kernel.org
 help / color / mirror / Atom feed
From: arno@natisbad.org (Arnaud Ebalard)
To: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
	Boris Brezillon <boris.brezillon@free-electrons.com>,
	Thomas Petazzoni <info@free-electrons.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Pawel Moll <pawel.moll@arm.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, Eran Ben-Avi <benavi@marvell.com>,
	Nadav Haklai <nadavh@marvell.com>,
	devicetree@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
	Andrew Lunn <andrew@lunn.ch>,
	linux-crypto@vger.kernel.org, Kumar Gala <galak@codeaurora.org>,
	Gregory CLEMENT <gregory.clement@free-electrons.com>,
	Tawfik Bayouk <tawfik@marvell.com>,
	"David S. Miller" <davem@davemloft.net>,
	Lior Amsalem <alior@marvell.com>,
	Jason Cooper <jason@lakedaemon.net>
Subject: Re: [PATCH 0/2] crypto: add new driver for Marvell CESA
Date: Fri, 10 Apr 2015 01:21:25 +0200	[thread overview]
Message-ID: <87twwo51my.fsf@natisbad.org> (raw)
In-Reply-To: 20150409175735.342d0111@bbrezillon

Hi Sebastien,

Boris Brezillon <boris.brezillon@free-electrons.com> writes:

>> if you include a bunch of performance measurements, I guess it will help
>> you to get an agreement of replacing the driver instead of reworking it.
>
> Yep, I made some measurements using tcrypt a while ago, I'll provide
> them in the next round.

Here are some tests on 2 Marvell SoC (I do not have dove platforms at
hand and did not collect the results for A370):

  - Kirkwood 88F6282 (Feroceon 88FR131 rev 1) at 1.6GHz
  - Armada XP (mv78230, i.e. 2 core @1.2GHz)

The targets are AES ECB and CBC encryption (decryption is similar
performance-wise), done w/ tcrypt (mode=500 passed to tcrypt module).

For each SoC, the various tests done by tcrypt are the following:

AES ECB/CBC encryption:

t  0 (128 bit key, 16 byte blocks)
t  1 (128 bit key, 64 byte blocks)
t  2 (128 bit key, 256 byte blocks)
t  3 (128 bit key, 1024 byte blocks)
t  4 (128 bit key, 8192 byte blocks)
t  5 (192 bit key, 16 byte blocks)
t  6 (192 bit key, 64 byte blocks)
t  7 (192 bit key, 256 byte blocks)
t  8 (192 bit key, 1024 byte blocks)
t  9 (192 bit key, 8192 byte blocks)
t 10 (256 bit key, 16 byte blocks)
t 11 (256 bit key, 64 byte blocks)
t 12 (256 bit key, 256 byte blocks)
t 13 (256 bit key, 1024 byte blocks)
t 14 (256 bit key, 8192 byte blocks)

The three columns provide the value for software implementation
(aes-asm), current driver (if available for that SoC), submitted
v0. The percentage is the improvement against software
implementation.

         soft         current driver          submitted v0     
                      (if available)


KW:

ECB
   t 0:  5.23 MB/s   1.01 MB/s (-80.58%)    1.11 MB/s (-78.75%) 
   t 1: 12.40 MB/s   3.70 MB/s (-70.16%)    4.14 MB/s (-66.59%) 
   t 2: 18.94 MB/s  10.81 MB/s (-42.94%)   13.86 MB/s (-26.78%) 
   t 3: 21.79 MB/s  20.69 MB/s  (-5.05%)   33.80 MB/s  (55.12%)  
   t 4: 22.54 MB/s  25.97 MB/s  (15.23%)   50.27 MB/s (123.05%) 

   t 5:  5.00 MB/s   1.01 MB/s (-79.75%)    1.10 MB/s (-78.02%) 
   t 6: 11.35 MB/s   3.70 MB/s (-67.41%)    3.84 MB/s (-66.17%) 
   t 7: 16.60 MB/s  10.66 MB/s (-35.81%)   13.59 MB/s (-18.14%) 
   t 8: 18.76 MB/s  20.13 MB/s   (7.29%)   32.30 MB/s  (72.15%)  
   t 9: 19.20 MB/s  25.10 MB/s  (30.74%)   47.11 MB/s (145.37%) 

   t10:  4.85 MB/s   1.02 MB/s (-79.02%)    1.10 MB/s (-77.25%) 
   t11: 10.50 MB/s   3.74 MB/s (-64.35%)    4.10 MB/s (-60.89%) 
   t12: 14.80 MB/s   4.65 MB/s (-68.55%)   13.40 MB/s (-9.43%)  
   t13: 16.47 MB/s  19.22 MB/s  (16.69%)   31.14 MB/s  (89.02%)  
   t14: 16.89 MB/s  24.36 MB/s  (44.18%)   44.33 MB/s (162.40%) 

CBC
   t 0:  4.78 MB/s   0.98 MB/s (-79.50%)    1.09 MB/s (-77.12%) 
   t 1: 11.44 MB/s   3.59 MB/s (-68.62%)    4.07 MB/s (-64.41%) 
   t 2: 17.66 MB/s  10.53 MB/s (-40.38%)   13.67 MB/s (-22.58%) 
   t 3: 20.41 MB/s  20.42 MB/s   (0.00%)   33.50 MB/s  (64.10%)  
   t 4: 21.14 MB/s  25.86 MB/s  (22.36%)   50.02 MB/s (136.63%) 

   t 5:  4.58 MB/s   0.98 MB/s (-78.64%)    1.08 MB/s (-76.31%) 
   t 6: 10.54 MB/s   3.58 MB/s (-66.00%)    4.04 MB/s (-61.68%) 
   t 7: 15.61 MB/s  10.39 MB/s (-33.49%)   13.40 MB/s (-14.16%) 
   t 8: 17.73 MB/s  19.88 MB/s  (12.10%)   32.04 MB/s  (80.69%)  
   t 9: 18.18 MB/s  25.02 MB/s  (37.60%)   46.90 MB/s (157.97%) 

   t10:  4.45 MB/s   0.98 MB/s (-77.96%)    1.09 MB/s (-75.62%) 
   t11:  9.80 MB/s   3.60 MB/s (-63.28%)    4.03 MB/s (-58.83%) 
   t12: 14.01 MB/s   4.34 MB/s (-69.01%)   13.24 MB/s  (-5.48%)  
   t13: 15.67 MB/s  19.44 MB/s  (24.01%)   30.90 MB/s  (97.17%)  
   t14: 16.09 MB/s  24.28 MB/s  (50.85%)   44.15 MB/s (174.34%) 

XP:

ECB
   t 0:  8.85 MB/s                          0.77 MB/s (-91.25%) 
   t 1: 21.73 MB/s                          3.09 MB/s (-85.79%) 
   t 2: 34.81 MB/s                         12.35 MB/s (-64.52%) 
   t 3: 40.81 MB/s                         38.68 MB/s  (-5.22%) 
   t 4: 42.69 MB/s                         84.52 MB/s  (98.00%) 

   t 5:  8.55 MB/s                          0.78 MB/s (-90.92%) 
   t 6: 20.63 MB/s                          3.11 MB/s (-84.92%) 
   t 7: 31.47 MB/s                         12.43 MB/s (-60.52%) 
   t 8: 36.07 MB/s                         38.08 MB/s   (5.58%) 
   t 9: 37.09 MB/s                         80.43 MB/s (116.85%) 

   t10:  8.25 MB/s                          0.78 MB/s (-90.56%) 
   t11: 19.19 MB/s                          3.11 MB/s (-83.80%) 
   t12: 28.61 MB/s                         12.42 MB/s (-56.59%) 
   t13: 32.49 MB/s                         37.28 MB/s  (14.74%) 
   t14: 33.56 MB/s                         77.11 MB/s (129.79%) 

CBC   
   t 0:  8.20 MB/s                          0.78 MB/s (-90.53%) 
   t 1: 19.85 MB/s                          3.10 MB/s (-84.36%) 
   t 2: 31.60 MB/s                         12.42 MB/s (-60.69%) 
   t 3: 37.03 MB/s                         38.70 MB/s   (4.51%) 
   t 4: 38.76 MB/s                         84.05 MB/s (116.87%) 

   t 5:  7.69 MB/s                          0.78 MB/s (-89.90%) 
   t 6: 18.62 MB/s                          3.10 MB/s (-83.32%) 
   t 7: 28.47 MB/s                         12.40 MB/s (-56.44%) 
   t 8: 32.73 MB/s                         37.97 MB/s  (16.02%) 
   t 9: 33.73 MB/s                         79.96 MB/s (137.07%) 

   t10:  7.58 MB/s                          0.77 MB/s (-89.88%) 
   t11: 17.59 MB/s                          3.07 MB/s (-82.56%) 
   t12: 26.26 MB/s                         12.28 MB/s (-53.23%) 
   t13: 29.89 MB/s                         37.02 MB/s  (23.87%) 
   t14: 30.87 MB/s                         76.70 MB/s (148.45%)


Cheers,

a+

WARNING: multiple messages have this Message-ID (diff)
From: arno@natisbad.org (Arnaud Ebalard)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/2] crypto: add new driver for Marvell CESA
Date: Fri, 10 Apr 2015 01:21:25 +0200	[thread overview]
Message-ID: <87twwo51my.fsf@natisbad.org> (raw)
In-Reply-To: 20150409175735.342d0111@bbrezillon

Hi Sebastien,

Boris Brezillon <boris.brezillon@free-electrons.com> writes:

>> if you include a bunch of performance measurements, I guess it will help
>> you to get an agreement of replacing the driver instead of reworking it.
>
> Yep, I made some measurements using tcrypt a while ago, I'll provide
> them in the next round.

Here are some tests on 2 Marvell SoC (I do not have dove platforms at
hand and did not collect the results for A370):

  - Kirkwood 88F6282 (Feroceon 88FR131 rev 1) at 1.6GHz
  - Armada XP (mv78230, i.e. 2 core @1.2GHz)

The targets are AES ECB and CBC encryption (decryption is similar
performance-wise), done w/ tcrypt (mode=500 passed to tcrypt module).

For each SoC, the various tests done by tcrypt are the following:

AES ECB/CBC encryption:

t  0 (128 bit key, 16 byte blocks)
t  1 (128 bit key, 64 byte blocks)
t  2 (128 bit key, 256 byte blocks)
t  3 (128 bit key, 1024 byte blocks)
t  4 (128 bit key, 8192 byte blocks)
t  5 (192 bit key, 16 byte blocks)
t  6 (192 bit key, 64 byte blocks)
t  7 (192 bit key, 256 byte blocks)
t  8 (192 bit key, 1024 byte blocks)
t  9 (192 bit key, 8192 byte blocks)
t 10 (256 bit key, 16 byte blocks)
t 11 (256 bit key, 64 byte blocks)
t 12 (256 bit key, 256 byte blocks)
t 13 (256 bit key, 1024 byte blocks)
t 14 (256 bit key, 8192 byte blocks)

The three columns provide the value for software implementation
(aes-asm), current driver (if available for that SoC), submitted
v0. The percentage is the improvement against software
implementation.

         soft         current driver          submitted v0     
                      (if available)


KW:

ECB
   t 0:  5.23 MB/s   1.01 MB/s (-80.58%)    1.11 MB/s (-78.75%) 
   t 1: 12.40 MB/s   3.70 MB/s (-70.16%)    4.14 MB/s (-66.59%) 
   t 2: 18.94 MB/s  10.81 MB/s (-42.94%)   13.86 MB/s (-26.78%) 
   t 3: 21.79 MB/s  20.69 MB/s  (-5.05%)   33.80 MB/s  (55.12%)  
   t 4: 22.54 MB/s  25.97 MB/s  (15.23%)   50.27 MB/s (123.05%) 

   t 5:  5.00 MB/s   1.01 MB/s (-79.75%)    1.10 MB/s (-78.02%) 
   t 6: 11.35 MB/s   3.70 MB/s (-67.41%)    3.84 MB/s (-66.17%) 
   t 7: 16.60 MB/s  10.66 MB/s (-35.81%)   13.59 MB/s (-18.14%) 
   t 8: 18.76 MB/s  20.13 MB/s   (7.29%)   32.30 MB/s  (72.15%)  
   t 9: 19.20 MB/s  25.10 MB/s  (30.74%)   47.11 MB/s (145.37%) 

   t10:  4.85 MB/s   1.02 MB/s (-79.02%)    1.10 MB/s (-77.25%) 
   t11: 10.50 MB/s   3.74 MB/s (-64.35%)    4.10 MB/s (-60.89%) 
   t12: 14.80 MB/s   4.65 MB/s (-68.55%)   13.40 MB/s (-9.43%)  
   t13: 16.47 MB/s  19.22 MB/s  (16.69%)   31.14 MB/s  (89.02%)  
   t14: 16.89 MB/s  24.36 MB/s  (44.18%)   44.33 MB/s (162.40%) 

CBC
   t 0:  4.78 MB/s   0.98 MB/s (-79.50%)    1.09 MB/s (-77.12%) 
   t 1: 11.44 MB/s   3.59 MB/s (-68.62%)    4.07 MB/s (-64.41%) 
   t 2: 17.66 MB/s  10.53 MB/s (-40.38%)   13.67 MB/s (-22.58%) 
   t 3: 20.41 MB/s  20.42 MB/s   (0.00%)   33.50 MB/s  (64.10%)  
   t 4: 21.14 MB/s  25.86 MB/s  (22.36%)   50.02 MB/s (136.63%) 

   t 5:  4.58 MB/s   0.98 MB/s (-78.64%)    1.08 MB/s (-76.31%) 
   t 6: 10.54 MB/s   3.58 MB/s (-66.00%)    4.04 MB/s (-61.68%) 
   t 7: 15.61 MB/s  10.39 MB/s (-33.49%)   13.40 MB/s (-14.16%) 
   t 8: 17.73 MB/s  19.88 MB/s  (12.10%)   32.04 MB/s  (80.69%)  
   t 9: 18.18 MB/s  25.02 MB/s  (37.60%)   46.90 MB/s (157.97%) 

   t10:  4.45 MB/s   0.98 MB/s (-77.96%)    1.09 MB/s (-75.62%) 
   t11:  9.80 MB/s   3.60 MB/s (-63.28%)    4.03 MB/s (-58.83%) 
   t12: 14.01 MB/s   4.34 MB/s (-69.01%)   13.24 MB/s  (-5.48%)  
   t13: 15.67 MB/s  19.44 MB/s  (24.01%)   30.90 MB/s  (97.17%)  
   t14: 16.09 MB/s  24.28 MB/s  (50.85%)   44.15 MB/s (174.34%) 

XP:

ECB
   t 0:  8.85 MB/s                          0.77 MB/s (-91.25%) 
   t 1: 21.73 MB/s                          3.09 MB/s (-85.79%) 
   t 2: 34.81 MB/s                         12.35 MB/s (-64.52%) 
   t 3: 40.81 MB/s                         38.68 MB/s  (-5.22%) 
   t 4: 42.69 MB/s                         84.52 MB/s  (98.00%) 

   t 5:  8.55 MB/s                          0.78 MB/s (-90.92%) 
   t 6: 20.63 MB/s                          3.11 MB/s (-84.92%) 
   t 7: 31.47 MB/s                         12.43 MB/s (-60.52%) 
   t 8: 36.07 MB/s                         38.08 MB/s   (5.58%) 
   t 9: 37.09 MB/s                         80.43 MB/s (116.85%) 

   t10:  8.25 MB/s                          0.78 MB/s (-90.56%) 
   t11: 19.19 MB/s                          3.11 MB/s (-83.80%) 
   t12: 28.61 MB/s                         12.42 MB/s (-56.59%) 
   t13: 32.49 MB/s                         37.28 MB/s  (14.74%) 
   t14: 33.56 MB/s                         77.11 MB/s (129.79%) 

CBC   
   t 0:  8.20 MB/s                          0.78 MB/s (-90.53%) 
   t 1: 19.85 MB/s                          3.10 MB/s (-84.36%) 
   t 2: 31.60 MB/s                         12.42 MB/s (-60.69%) 
   t 3: 37.03 MB/s                         38.70 MB/s   (4.51%) 
   t 4: 38.76 MB/s                         84.05 MB/s (116.87%) 

   t 5:  7.69 MB/s                          0.78 MB/s (-89.90%) 
   t 6: 18.62 MB/s                          3.10 MB/s (-83.32%) 
   t 7: 28.47 MB/s                         12.40 MB/s (-56.44%) 
   t 8: 32.73 MB/s                         37.97 MB/s  (16.02%) 
   t 9: 33.73 MB/s                         79.96 MB/s (137.07%) 

   t10:  7.58 MB/s                          0.77 MB/s (-89.88%) 
   t11: 17.59 MB/s                          3.07 MB/s (-82.56%) 
   t12: 26.26 MB/s                         12.28 MB/s (-53.23%) 
   t13: 29.89 MB/s                         37.02 MB/s  (23.87%) 
   t14: 30.87 MB/s                         76.70 MB/s (148.45%)


Cheers,

a+

WARNING: multiple messages have this Message-ID (diff)
From: arno@natisbad.org (Arnaud Ebalard)
To: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Boris Brezillon <boris.brezillon@free-electrons.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	"David S. Miller" <davem@davemloft.net>,
	linux-crypto@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
	Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Kumar Gala <galak@codeaurora.org>,
	devicetree@vger.kernel.org, Tawfik Bayouk <tawfik@marvell.com>,
	Lior Amsalem <alior@marvell.com>,
	Nadav Haklai <nadavh@marvell.com>,
	Eran Ben-Avi <benavi@marvell.com>,
	Thomas Petazzoni <info@free-electrons.com>,
	Gregory CLEMENT <gregory.clement@free-electrons.com>,
	Jason Cooper <jason@lakedaemon.net>, Andrew Lunn <andrew@lunn.ch>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/2] crypto: add new driver for Marvell CESA
Date: Fri, 10 Apr 2015 01:21:25 +0200	[thread overview]
Message-ID: <87twwo51my.fsf@natisbad.org> (raw)
In-Reply-To: 20150409175735.342d0111@bbrezillon

Hi Sebastien,

Boris Brezillon <boris.brezillon@free-electrons.com> writes:

>> if you include a bunch of performance measurements, I guess it will help
>> you to get an agreement of replacing the driver instead of reworking it.
>
> Yep, I made some measurements using tcrypt a while ago, I'll provide
> them in the next round.

Here are some tests on 2 Marvell SoC (I do not have dove platforms at
hand and did not collect the results for A370):

  - Kirkwood 88F6282 (Feroceon 88FR131 rev 1) at 1.6GHz
  - Armada XP (mv78230, i.e. 2 core @1.2GHz)

The targets are AES ECB and CBC encryption (decryption is similar
performance-wise), done w/ tcrypt (mode=500 passed to tcrypt module).

For each SoC, the various tests done by tcrypt are the following:

AES ECB/CBC encryption:

t  0 (128 bit key, 16 byte blocks)
t  1 (128 bit key, 64 byte blocks)
t  2 (128 bit key, 256 byte blocks)
t  3 (128 bit key, 1024 byte blocks)
t  4 (128 bit key, 8192 byte blocks)
t  5 (192 bit key, 16 byte blocks)
t  6 (192 bit key, 64 byte blocks)
t  7 (192 bit key, 256 byte blocks)
t  8 (192 bit key, 1024 byte blocks)
t  9 (192 bit key, 8192 byte blocks)
t 10 (256 bit key, 16 byte blocks)
t 11 (256 bit key, 64 byte blocks)
t 12 (256 bit key, 256 byte blocks)
t 13 (256 bit key, 1024 byte blocks)
t 14 (256 bit key, 8192 byte blocks)

The three columns provide the value for software implementation
(aes-asm), current driver (if available for that SoC), submitted
v0. The percentage is the improvement against software
implementation.

         soft         current driver          submitted v0     
                      (if available)


KW:

ECB
   t 0:  5.23 MB/s   1.01 MB/s (-80.58%)    1.11 MB/s (-78.75%) 
   t 1: 12.40 MB/s   3.70 MB/s (-70.16%)    4.14 MB/s (-66.59%) 
   t 2: 18.94 MB/s  10.81 MB/s (-42.94%)   13.86 MB/s (-26.78%) 
   t 3: 21.79 MB/s  20.69 MB/s  (-5.05%)   33.80 MB/s  (55.12%)  
   t 4: 22.54 MB/s  25.97 MB/s  (15.23%)   50.27 MB/s (123.05%) 

   t 5:  5.00 MB/s   1.01 MB/s (-79.75%)    1.10 MB/s (-78.02%) 
   t 6: 11.35 MB/s   3.70 MB/s (-67.41%)    3.84 MB/s (-66.17%) 
   t 7: 16.60 MB/s  10.66 MB/s (-35.81%)   13.59 MB/s (-18.14%) 
   t 8: 18.76 MB/s  20.13 MB/s   (7.29%)   32.30 MB/s  (72.15%)  
   t 9: 19.20 MB/s  25.10 MB/s  (30.74%)   47.11 MB/s (145.37%) 

   t10:  4.85 MB/s   1.02 MB/s (-79.02%)    1.10 MB/s (-77.25%) 
   t11: 10.50 MB/s   3.74 MB/s (-64.35%)    4.10 MB/s (-60.89%) 
   t12: 14.80 MB/s   4.65 MB/s (-68.55%)   13.40 MB/s (-9.43%)  
   t13: 16.47 MB/s  19.22 MB/s  (16.69%)   31.14 MB/s  (89.02%)  
   t14: 16.89 MB/s  24.36 MB/s  (44.18%)   44.33 MB/s (162.40%) 

CBC
   t 0:  4.78 MB/s   0.98 MB/s (-79.50%)    1.09 MB/s (-77.12%) 
   t 1: 11.44 MB/s   3.59 MB/s (-68.62%)    4.07 MB/s (-64.41%) 
   t 2: 17.66 MB/s  10.53 MB/s (-40.38%)   13.67 MB/s (-22.58%) 
   t 3: 20.41 MB/s  20.42 MB/s   (0.00%)   33.50 MB/s  (64.10%)  
   t 4: 21.14 MB/s  25.86 MB/s  (22.36%)   50.02 MB/s (136.63%) 

   t 5:  4.58 MB/s   0.98 MB/s (-78.64%)    1.08 MB/s (-76.31%) 
   t 6: 10.54 MB/s   3.58 MB/s (-66.00%)    4.04 MB/s (-61.68%) 
   t 7: 15.61 MB/s  10.39 MB/s (-33.49%)   13.40 MB/s (-14.16%) 
   t 8: 17.73 MB/s  19.88 MB/s  (12.10%)   32.04 MB/s  (80.69%)  
   t 9: 18.18 MB/s  25.02 MB/s  (37.60%)   46.90 MB/s (157.97%) 

   t10:  4.45 MB/s   0.98 MB/s (-77.96%)    1.09 MB/s (-75.62%) 
   t11:  9.80 MB/s   3.60 MB/s (-63.28%)    4.03 MB/s (-58.83%) 
   t12: 14.01 MB/s   4.34 MB/s (-69.01%)   13.24 MB/s  (-5.48%)  
   t13: 15.67 MB/s  19.44 MB/s  (24.01%)   30.90 MB/s  (97.17%)  
   t14: 16.09 MB/s  24.28 MB/s  (50.85%)   44.15 MB/s (174.34%) 

XP:

ECB
   t 0:  8.85 MB/s                          0.77 MB/s (-91.25%) 
   t 1: 21.73 MB/s                          3.09 MB/s (-85.79%) 
   t 2: 34.81 MB/s                         12.35 MB/s (-64.52%) 
   t 3: 40.81 MB/s                         38.68 MB/s  (-5.22%) 
   t 4: 42.69 MB/s                         84.52 MB/s  (98.00%) 

   t 5:  8.55 MB/s                          0.78 MB/s (-90.92%) 
   t 6: 20.63 MB/s                          3.11 MB/s (-84.92%) 
   t 7: 31.47 MB/s                         12.43 MB/s (-60.52%) 
   t 8: 36.07 MB/s                         38.08 MB/s   (5.58%) 
   t 9: 37.09 MB/s                         80.43 MB/s (116.85%) 

   t10:  8.25 MB/s                          0.78 MB/s (-90.56%) 
   t11: 19.19 MB/s                          3.11 MB/s (-83.80%) 
   t12: 28.61 MB/s                         12.42 MB/s (-56.59%) 
   t13: 32.49 MB/s                         37.28 MB/s  (14.74%) 
   t14: 33.56 MB/s                         77.11 MB/s (129.79%) 

CBC   
   t 0:  8.20 MB/s                          0.78 MB/s (-90.53%) 
   t 1: 19.85 MB/s                          3.10 MB/s (-84.36%) 
   t 2: 31.60 MB/s                         12.42 MB/s (-60.69%) 
   t 3: 37.03 MB/s                         38.70 MB/s   (4.51%) 
   t 4: 38.76 MB/s                         84.05 MB/s (116.87%) 

   t 5:  7.69 MB/s                          0.78 MB/s (-89.90%) 
   t 6: 18.62 MB/s                          3.10 MB/s (-83.32%) 
   t 7: 28.47 MB/s                         12.40 MB/s (-56.44%) 
   t 8: 32.73 MB/s                         37.97 MB/s  (16.02%) 
   t 9: 33.73 MB/s                         79.96 MB/s (137.07%) 

   t10:  7.58 MB/s                          0.77 MB/s (-89.88%) 
   t11: 17.59 MB/s                          3.07 MB/s (-82.56%) 
   t12: 26.26 MB/s                         12.28 MB/s (-53.23%) 
   t13: 29.89 MB/s                         37.02 MB/s  (23.87%) 
   t14: 30.87 MB/s                         76.70 MB/s (148.45%)


Cheers,

a+

  reply	other threads:[~2015-04-09 23:21 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-09 14:58 [PATCH 0/2] crypto: add new driver for Marvell CESA Boris Brezillon
2015-04-09 14:58 ` Boris Brezillon
2015-04-09 14:58 ` [PATCH 1/2] " Boris Brezillon
     [not found]   ` <1428591523-1780-2-git-send-email-boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2015-04-10 10:38     ` Paul Bolle
2015-04-10 10:38       ` Paul Bolle
2015-04-10 10:38       ` Paul Bolle
2015-04-10 11:17       ` Boris Brezillon
2015-04-10 11:17         ` Boris Brezillon
2015-04-09 14:58 ` [PATCH 2/2] crypto: marvell/CESA: update DT bindings documentation Boris Brezillon
2015-04-09 14:58   ` Boris Brezillon
2015-04-09 15:18 ` [PATCH 0/2] crypto: add new driver for Marvell CESA Andrew Lunn
2015-04-09 15:18   ` Andrew Lunn
     [not found]   ` <20150409172826.18916274@bbrezillon>
2015-04-09 15:37     ` Andrew Lunn
2015-04-09 15:37     ` Andrew Lunn
2015-04-09 15:37       ` Andrew Lunn
2015-04-09 15:37       ` Andrew Lunn
2015-04-09 15:34 ` Sebastian Hesselbarth
2015-04-09 15:34   ` Sebastian Hesselbarth
2015-04-09 15:57   ` Boris Brezillon
2015-04-09 15:57     ` Boris Brezillon
2015-04-09 23:21     ` Arnaud Ebalard [this message]
2015-04-09 23:21       ` Arnaud Ebalard
2015-04-09 23:21       ` Arnaud Ebalard
2015-04-09 15:52 ` Stephan Mueller
2015-04-09 15:52   ` Stephan Mueller
2015-04-10 13:50 ` Jason Cooper
2015-04-10 13:50   ` Jason Cooper
2015-04-10 15:11   ` Boris Brezillon
2015-04-10 15:11     ` Boris Brezillon
2015-04-10 22:30     ` Jason Cooper
2015-04-10 22:30       ` Jason Cooper
2015-04-13  9:39       ` Gregory CLEMENT
2015-04-13  9:39         ` Gregory CLEMENT
2015-04-13 12:47         ` Jason Cooper
2015-04-13 12:47           ` Jason Cooper
2015-04-13 16:06           ` Arnaud Ebalard
2015-04-13 16:06             ` Arnaud Ebalard
2015-04-13 20:11             ` Jason Cooper
2015-04-13 20:11               ` Jason Cooper
2015-04-17  8:33               ` Boris Brezillon
2015-04-17  8:33                 ` Boris Brezillon
2015-04-17  8:39                 ` Boris Brezillon
2015-04-17  8:39                   ` Boris Brezillon
2015-04-17 10:59                   ` Jason Cooper
2015-04-17 10:59                     ` Jason Cooper
2015-04-17 13:01                   ` Gregory CLEMENT
2015-04-17 13:01                     ` Gregory CLEMENT
2015-04-17 14:19                     ` Boris Brezillon
2015-04-17 14:19                       ` Boris Brezillon
2015-04-17 14:32                       ` Maxime Ripard
2015-04-17 14:32                         ` Maxime Ripard
2015-04-17 14:40                         ` Gregory CLEMENT
2015-04-17 14:40                           ` Gregory CLEMENT
2015-04-17 14:50                           ` Maxime Ripard
2015-04-17 14:50                             ` Maxime Ripard
2015-04-17 15:01                             ` Gregory CLEMENT
2015-04-17 15:01                               ` Gregory CLEMENT
2015-04-17 15:01                               ` Gregory CLEMENT
2015-04-17 15:49                               ` Maxime Ripard
2015-04-17 15:49                                 ` Maxime Ripard
2015-04-17 16:04                                 ` Gregory CLEMENT
2015-04-17 16:04                                   ` Gregory CLEMENT
2015-04-17 16:04                                   ` Gregory CLEMENT
2015-04-28 19:52 ` Boris Brezillon
2015-04-28 19:52   ` Boris Brezillon
2015-04-29  9:49   ` Herbert Xu
2015-04-29  9:49     ` Herbert Xu

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=87twwo51my.fsf@natisbad.org \
    --to=arno@natisbad.org \
    --cc=alior@marvell.com \
    --cc=andrew@lunn.ch \
    --cc=benavi@marvell.com \
    --cc=boris.brezillon@free-electrons.com \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=gregory.clement@free-electrons.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=info@free-electrons.com \
    --cc=jason@lakedaemon.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=nadavh@marvell.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=tawfik@marvell.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.