From: Stanimir Varbanov <svarbanov@mm-sol.com>
To: Stephen Boyd <sboyd@codeaurora.org>
Cc: Rob Herring <rob.herring@calxeda.com>,
Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Stephen Warren <swarren@wwwdotorg.org>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Matt Mackall <mpm@selenic.com>,
Herbert Xu <herbert@gondor.apana.org.au>,
linux-kernel@vger.kernel.org, Rob Landley <rob@landley.net>,
devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v2 2/2] hwrng: msm: Add PRNG support for MSM SoC's
Date: Mon, 14 Oct 2013 18:05:04 +0300 [thread overview]
Message-ID: <525C0820.7000601@mm-sol.com> (raw)
In-Reply-To: <20131011203701.GC13139@codeaurora.org>
Hi Stephen,
Thanks for the review.
On 10/11/2013 11:37 PM, Stephen Boyd wrote:
> On 10/11, Stanimir Varbanov wrote:
>> This adds a driver for hardware random number generator present
>> on Qualcomm MSM SoC's.
>>
>> Signed-off-by: Stanimir Varbanov <svarbanov@mm-sol.com>
>> ---
>
> Just nitpicks.
>
>> diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig
>> index 0aa9d91daef5..d902330cef43 100644
>> --- a/drivers/char/hw_random/Kconfig
>> +++ b/drivers/char/hw_random/Kconfig
>> @@ -314,3 +314,15 @@ config HW_RANDOM_TPM
>> module will be called tpm-rng.
>>
>> If unsure, say Y.
>> +
>> +config HW_RANDOM_MSM
>> + tristate "Qualcomm MSM Random Number Generator support"
>> + depends on HW_RANDOM && ARCH_MSM && HAVE_CLK
>
> It should be fine to drop HAVE_CLK here because ARCH_MSM always
> selects COMMON_CLK which indirectly selects HAVE_CLK.
It is leftover, I'll remove HAVE_CLK dependency.
>
>> + ---help---
>> + This driver provides kernel-side support for the Random Number
>> + Generator hardware found on Qualcomm MSM SoCs.
>> +
>> + To compile this driver as a module, choose M here. the
>> + module will be called msm-rng.
>> +
>> + If unsure, say Y.
>> diff --git a/drivers/char/hw_random/msm-rng.c b/drivers/char/hw_random/msm-rng.c
>> new file mode 100644
>> index 000000000000..e219e94d02c1
>> --- /dev/null
>> +++ b/drivers/char/hw_random/msm-rng.c
>> @@ -0,0 +1,195 @@
>> +#include <linux/clk.h>
>> +#include <linux/hw_random.h>
>> +#include <linux/io.h>
>> +#include <linux/module.h>
>> +#include <linux/of.h>
>> +#include <linux/platform_device.h>
>
> +#include <linux/err.h> for -ENOMEM usage.
OK
>
>> +
>> +/* Device specific register offsets */
>> +#define PRNG_DATA_OUT 0x0000
>> +#define PRNG_STATUS 0x0004
>> +#define PRNG_LFSR_CFG 0x0100
>> +#define PRNG_CONFIG 0x0104
>> +
> [snip]
>> +
>> +MODULE_AUTHOR("The Linux Foundation");
>> +MODULE_DESCRIPTION("Qualcomm MSM random number generator driver");
>> +MODULE_LICENSE("GPL v2");
>
> MODULE_ALIAS perhaps?
OK, I will add it.
regards,
Stan
WARNING: multiple messages have this Message-ID (diff)
From: Stanimir Varbanov <svarbanov@mm-sol.com>
To: Stephen Boyd <sboyd@codeaurora.org>
Cc: Rob Herring <rob.herring@calxeda.com>,
Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Stephen Warren <swarren@wwwdotorg.org>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Matt Mackall <mpm@selenic.com>,
Herbert Xu <herbert@gondor.hengli.com.au>,
linux-kernel@vger.kernel.org, Rob Landley <rob@landley.net>,
devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v2 2/2] hwrng: msm: Add PRNG support for MSM SoC's
Date: Mon, 14 Oct 2013 18:05:04 +0300 [thread overview]
Message-ID: <525C0820.7000601@mm-sol.com> (raw)
In-Reply-To: <20131011203701.GC13139@codeaurora.org>
Hi Stephen,
Thanks for the review.
On 10/11/2013 11:37 PM, Stephen Boyd wrote:
> On 10/11, Stanimir Varbanov wrote:
>> This adds a driver for hardware random number generator present
>> on Qualcomm MSM SoC's.
>>
>> Signed-off-by: Stanimir Varbanov <svarbanov@mm-sol.com>
>> ---
>
> Just nitpicks.
>
>> diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig
>> index 0aa9d91daef5..d902330cef43 100644
>> --- a/drivers/char/hw_random/Kconfig
>> +++ b/drivers/char/hw_random/Kconfig
>> @@ -314,3 +314,15 @@ config HW_RANDOM_TPM
>> module will be called tpm-rng.
>>
>> If unsure, say Y.
>> +
>> +config HW_RANDOM_MSM
>> + tristate "Qualcomm MSM Random Number Generator support"
>> + depends on HW_RANDOM && ARCH_MSM && HAVE_CLK
>
> It should be fine to drop HAVE_CLK here because ARCH_MSM always
> selects COMMON_CLK which indirectly selects HAVE_CLK.
It is leftover, I'll remove HAVE_CLK dependency.
>
>> + ---help---
>> + This driver provides kernel-side support for the Random Number
>> + Generator hardware found on Qualcomm MSM SoCs.
>> +
>> + To compile this driver as a module, choose M here. the
>> + module will be called msm-rng.
>> +
>> + If unsure, say Y.
>> diff --git a/drivers/char/hw_random/msm-rng.c b/drivers/char/hw_random/msm-rng.c
>> new file mode 100644
>> index 000000000000..e219e94d02c1
>> --- /dev/null
>> +++ b/drivers/char/hw_random/msm-rng.c
>> @@ -0,0 +1,195 @@
>> +#include <linux/clk.h>
>> +#include <linux/hw_random.h>
>> +#include <linux/io.h>
>> +#include <linux/module.h>
>> +#include <linux/of.h>
>> +#include <linux/platform_device.h>
>
> +#include <linux/err.h> for -ENOMEM usage.
OK
>
>> +
>> +/* Device specific register offsets */
>> +#define PRNG_DATA_OUT 0x0000
>> +#define PRNG_STATUS 0x0004
>> +#define PRNG_LFSR_CFG 0x0100
>> +#define PRNG_CONFIG 0x0104
>> +
> [snip]
>> +
>> +MODULE_AUTHOR("The Linux Foundation");
>> +MODULE_DESCRIPTION("Qualcomm MSM random number generator driver");
>> +MODULE_LICENSE("GPL v2");
>
> MODULE_ALIAS perhaps?
OK, I will add it.
regards,
Stan
next prev parent reply other threads:[~2013-10-14 15:06 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-11 15:16 [PATCH v2 0/2] Add support for Qualcomm's PRNG Stanimir Varbanov
2013-10-11 15:16 ` Stanimir Varbanov
2013-10-11 15:16 ` [PATCH v2 1/2] ARM: DT: msm: Add Qualcomm's PRNG driver binding document Stanimir Varbanov
2013-10-11 15:16 ` Stanimir Varbanov
2013-10-11 20:46 ` Stephen Boyd
2013-10-11 20:46 ` Stephen Boyd
2013-10-14 15:01 ` Stanimir Varbanov
2013-10-14 15:01 ` Stanimir Varbanov
2013-10-11 15:16 ` [PATCH v2 2/2] hwrng: msm: Add PRNG support for MSM SoC's Stanimir Varbanov
2013-10-11 15:16 ` Stanimir Varbanov
2013-10-11 20:37 ` Stephen Boyd
2013-10-11 20:37 ` Stephen Boyd
2013-10-14 15:05 ` Stanimir Varbanov [this message]
2013-10-14 15:05 ` Stanimir Varbanov
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=525C0820.7000601@mm-sol.com \
--to=svarbanov@mm-sol.com \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=herbert@gondor.apana.org.au \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mpm@selenic.com \
--cc=pawel.moll@arm.com \
--cc=rob.herring@calxeda.com \
--cc=rob@landley.net \
--cc=sboyd@codeaurora.org \
--cc=swarren@wwwdotorg.org \
/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.