Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1461464 > unrolled thread
| Started by | Fabian Frederick <fabf@skynet.be> |
|---|---|
| First post | 2016-08-12 23:30 +0200 |
| Last post | 2016-08-16 12:00 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator Fabian Frederick <fabf@skynet.be> - 2016-08-12 23:30 +0200
Re: [PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator Arnd Bergmann <arnd@arndb.de> - 2016-08-15 17:10 +0200
Re: [PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator Fabian Frederick <fabf@skynet.be> - 2016-08-15 19:10 +0200
Re: [PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator Herbert Xu <herbert@gondor.apana.org.au> - 2016-08-16 12:00 +0200
| From | Fabian Frederick <fabf@skynet.be> |
|---|---|
| Date | 2016-08-12 23:30 +0200 |
| Subject | [PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator |
| Message-ID | <s5sbD-7aC-25@gated-at.bofh.it> |
We can directly depend on SOC_IMX31 since
commit c9ee94965dce
("ARM: imx: deconstruct mxc_rnga initialization")
Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
drivers/char/hw_random/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig
index 56ad5a59..8c0770b 100644
--- a/drivers/char/hw_random/Kconfig
+++ b/drivers/char/hw_random/Kconfig
@@ -244,7 +244,7 @@ config HW_RANDOM_TX4939
config HW_RANDOM_MXC_RNGA
tristate "Freescale i.MX RNGA Random Number Generator"
- depends on ARCH_HAS_RNGA
+ depends on SOC_IMX31
default HW_RANDOM
---help---
This driver provides kernel-side support for the Random Number
--
2.8.1
[toc] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-08-15 17:10 +0200 |
| Message-ID | <s6rGz-7aD-37@gated-at.bofh.it> |
| In reply to | #1461464 |
On Friday 12 August 2016, Fabian Frederick wrote:
> We can directly depend on SOC_IMX31 since
> commit c9ee94965dce
> ("ARM: imx: deconstruct mxc_rnga initialization")
>
> Signed-off-by: Fabian Frederick <fabf@skynet.be>
Did I cause a regression with my patch, without this change? If so, this should be
marked
Cc: stable@vger.kernel.org
Fixes: c9ee94965dce ("ARM: imx: deconstruct mxc_rnga initialization")
and the patch applied ASAP.
> ---
> drivers/char/hw_random/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig
> index 56ad5a59..8c0770b 100644
> --- a/drivers/char/hw_random/Kconfig
> +++ b/drivers/char/hw_random/Kconfig
> @@ -244,7 +244,7 @@ config HW_RANDOM_TX4939
>
> config HW_RANDOM_MXC_RNGA
> tristate "Freescale i.MX RNGA Random Number Generator"
> - depends on ARCH_HAS_RNGA
> + depends on SOC_IMX31
> default HW_RANDOM
It would be nice to add "|| COMPILE_TEST here", but that should probably be
a separate patch, as we don't want to backport that or treat it as a bugfix.
Arnd
[toc] | [prev] | [next] | [standalone]
| From | Fabian Frederick <fabf@skynet.be> |
|---|---|
| Date | 2016-08-15 19:10 +0200 |
| Subject | Re: [PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator |
| Message-ID | <s6tyG-8mb-17@gated-at.bofh.it> |
| In reply to | #1462870 |
> On 15 August 2016 at 17:05 Arnd Bergmann <arnd@arndb.de> wrote:
>
>
> On Friday 12 August 2016, Fabian Frederick wrote:
> > We can directly depend on SOC_IMX31 since
> > commit c9ee94965dce
> > ("ARM: imx: deconstruct mxc_rnga initialization")
> >
> > Signed-off-by: Fabian Frederick <fabf@skynet.be>
>
> Did I cause a regression with my patch, without this change? If so, this
> should be
> marked
>
> Cc: stable@vger.kernel.org
> Fixes: c9ee94965dce ("ARM: imx: deconstruct mxc_rnga initialization")
>
> and the patch applied ASAP.
Thanks Arnd. Your patch brings the following regression:
CONFIG_HW_RANDOM_MXC_RNGA can't be switched on with an unknown symbol and
mxc-rnga.o will never build with
ARCH=arm make M=drivers/char/hw_random
Before your patch, HW_RANDOM_MXC_RNGA required ARCH_HAS_RNGA
which was based on IMX_HAVE_PLATFORM_MXC_RNGA && ARCH_MXC
IMX_HAVE_PLATFORM_MXC_RNGA was based on SOC_IMX31.
As I see SOC_IMX31 is selected by ARCH_MXC, my patch still seems ok and I can Cc
it for stable.
Regards,
Fabian
>
> > ---
> > drivers/char/hw_random/Kconfig | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig
> > index 56ad5a59..8c0770b 100644
> > --- a/drivers/char/hw_random/Kconfig
> > +++ b/drivers/char/hw_random/Kconfig
> > @@ -244,7 +244,7 @@ config HW_RANDOM_TX4939
> >
> > config HW_RANDOM_MXC_RNGA
> > tristate "Freescale i.MX RNGA Random Number Generator"
> > - depends on ARCH_HAS_RNGA
> > + depends on SOC_IMX31
> > default HW_RANDOM
>
> It would be nice to add "|| COMPILE_TEST here", but that should probably be
> a separate patch, as we don't want to backport that or treat it as a bugfix.
>
> Arnd
[toc] | [prev] | [next] | [standalone]
| From | Herbert Xu <herbert@gondor.apana.org.au> |
|---|---|
| Date | 2016-08-16 12:00 +0200 |
| Subject | Re: [PATCH 1/1 linux-next] hwrng: update Freescale i.MX RNGA Random Number Generator |
| Message-ID | <s6Jk6-1sx-31@gated-at.bofh.it> |
| In reply to | #1463004 |
On Mon, Aug 15, 2016 at 07:04:45PM +0200, Fabian Frederick wrote:
>
>
> > On 15 August 2016 at 17:05 Arnd Bergmann <arnd@arndb.de> wrote:
> >
> >
> > On Friday 12 August 2016, Fabian Frederick wrote:
> > > We can directly depend on SOC_IMX31 since
> > > commit c9ee94965dce
> > > ("ARM: imx: deconstruct mxc_rnga initialization")
> > >
> > > Signed-off-by: Fabian Frederick <fabf@skynet.be>
> >
> > Did I cause a regression with my patch, without this change? If so, this
> > should be
> > marked
> >
> > Cc: stable@vger.kernel.org
> > Fixes: c9ee94965dce ("ARM: imx: deconstruct mxc_rnga initialization")
> >
> > and the patch applied ASAP.
>
> Thanks Arnd. Your patch brings the following regression:
> CONFIG_HW_RANDOM_MXC_RNGA can't be switched on with an unknown symbol and
> mxc-rnga.o will never build with
> ARCH=arm make M=drivers/char/hw_random
> Before your patch, HW_RANDOM_MXC_RNGA required ARCH_HAS_RNGA
> which was based on IMX_HAVE_PLATFORM_MXC_RNGA && ARCH_MXC
> IMX_HAVE_PLATFORM_MXC_RNGA was based on SOC_IMX31.
> As I see SOC_IMX31 is selected by ARCH_MXC, my patch still seems ok and I can Cc
> it for stable.
Please resubmit the patch to linux-crypto@vger.kernel.org.
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web