devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/2] Add support for Qualcomm's PRNG
@ 2013-10-15 14:11 Stanimir Varbanov
  2013-10-15 14:11 ` [PATCH v3 1/2] ARM: DT: msm: Add Qualcomm's PRNG driver binding document Stanimir Varbanov
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Stanimir Varbanov @ 2013-10-15 14:11 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Stephen Warren,
	Ian Campbell, Matt Mackall, Herbert Xu
  Cc: linux-kernel, Rob Landley, devicetree, linux-doc,
	Greg Kroah-Hartman, linux-arm-msm, Stanimir Varbanov

Hi,

Here is the third version of hwrng driver for MSM SoC's.

Changes since v2.

  * The PRNG clock is renamed to "core" - changed 1/2 and 2/2
accordingly.
  * Added unit address in the dt binding example in 1/2.
  * Removed the dependacy to HAVE_CLK because it is redundant in 2/2.
  * Added include "linux/err.h" for ENOMEM usage in 2/2.
  * Added MODULE_ALIAS in 2/2.

Comments are welcome!

regadrs,
Stan

===================================================================
Here is the second version of RNG driver for MSM SoC's.

During the time since first version I've made some tests using
rng tools this is the result:

# cat /dev/hw_random | rngtest -c 100000

Copyright (c) 2004 by Henrique de Moraes Holschuh
This is free software; see the source for copying conditions.  There is
NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.

rngtest: starting FIPS tests...
rngtest: bits received from input: 2000000032
rngtest: FIPS 140-2 successes: 99925
rngtest: FIPS 140-2 failures: 75
rngtest: FIPS 140-2(2001-10-10) Monobit: 10
rngtest: FIPS 140-2(2001-10-10) Poker: 9
rngtest: FIPS 140-2(2001-10-10) Runs: 20
rngtest: FIPS 140-2(2001-10-10) Long run: 38
rngtest: FIPS 140-2(2001-10-10) Continuous run: 0
rngtest: input channel speed: (min=1.267; avg=53.222; max=2384.186)Mibits/s
rngtest: FIPS tests speed: (min=3.016; avg=48.847; max=49.931)Mibits/s
rngtest: Program run time: 75191914 microseconds

Changes since v1:

  * I took into account Stephen Boyd's comments about define duplication
and added a call to platform_get_resource.
  * The 'struct hwrng' is now embedded into msm_rng private structure to
avoid global variables and allow more than one instances of the driver.

===================================================================
This patch set adds hardware RNG driver wich is used to control the
Qualcomm's PRNG hardware block.
The first patch document the DT bindings needed to sucessfuly probe
the driver and the second patch adds the driver.

Comments are welecome!

Stanimir Varbanov (2):
  ARM: DT: msm: Add Qualcomm's PRNG driver binding document
  hwrng: msm: Add PRNG support for MSM SoC's

 .../devicetree/bindings/rng/qcom,prng.txt          |  17 ++
 drivers/char/hw_random/Kconfig                     |  12 ++
 drivers/char/hw_random/Makefile                    |   1 +
 drivers/char/hw_random/msm-rng.c                   | 197 +++++++++++++++++++++
 4 files changed, 227 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/rng/qcom,prng.txt
 create mode 100644 drivers/char/hw_random/msm-rng.c

-- 
1.8.3.1


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

end of thread, other threads:[~2013-10-30  4:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-15 14:11 [PATCH v3 0/2] Add support for Qualcomm's PRNG Stanimir Varbanov
2013-10-15 14:11 ` [PATCH v3 1/2] ARM: DT: msm: Add Qualcomm's PRNG driver binding document Stanimir Varbanov
2013-10-18 18:35   ` Stephen Boyd
2013-10-23  9:27   ` Stanimir Varbanov
2013-10-15 14:11 ` [PATCH v3 2/2] hwrng: msm: Add PRNG support for MSM SoC's Stanimir Varbanov
2013-10-18 18:39   ` Stephen Boyd
2013-10-30  4:10     ` Herbert Xu
2013-10-23  9:41   ` Stanimir Varbanov
2013-10-23  9:45     ` Herbert Xu
2013-10-25 13:57       ` Stanimir Varbanov
2013-10-26  9:15         ` Herbert Xu
2013-10-25 14:57 ` [PATCH v3 0/2] Add support for Qualcomm's PRNG H. Peter Anvin

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).