* [PATCH] ARM: OMAP2+: Add support for RNG on DT booted N900
@ 2014-04-07 12:28 ` Sebastian Reichel
0 siblings, 0 replies; 4+ messages in thread
From: Sebastian Reichel @ 2014-04-07 12:28 UTC (permalink / raw)
To: Sebastian Reichel, Tony Lindgren, linux-arm-kernel, linux-omap
Cc: Sebastian Reichel
Add support for OMAP3 ROM Random Number Generator via
pdata-quirks.
Signed-off-by: Sebastian Reichel <sre@kernel.org>
---
Hi Tony,
I currently see no clean way to add DTS based support for the
random number generator in the N900, so this patch initializes
it using pdata-quirks.
I think its worth adding this for now, since its one of the few
things missing to get N900 DT based boot to the same level as
platform data based boot.
I've prepared a table tracking the patch status for my N900 DT
patches targeting 3.16 at [0]. If I'm not mistaken all of the
N900's hardware supported via platform data is also supported
via DT after these patches are merged. The overall status (incl.
hardware, which is also not supported by platform data) can
be seen on [1].
[0] http://elinux.org/N900/Changelog#Kernel_3.16_.28planned.29
[1] http://elinux.org/N900#Kernel_Status
-- Sebastian
---
arch/arm/mach-omap2/pdata-quirks.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm/mach-omap2/pdata-quirks.c b/arch/arm/mach-omap2/pdata-quirks.c
index b04c5f0..5baad1e 100644
--- a/arch/arm/mach-omap2/pdata-quirks.c
+++ b/arch/arm/mach-omap2/pdata-quirks.c
@@ -227,6 +227,14 @@ static void __init am3517_evm_legacy_init(void)
am35xx_emac_reset();
}
+static struct platform_device omap3_rom_rng_device = {
+ .name = "omap3-rom-rng",
+ .id = -1,
+ .dev = {
+ .platform_data = rx51_secure_rng_call,
+ },
+};
+
static void __init nokia_n900_legacy_init(void)
{
hsmmc2_internal_input_clk();
@@ -240,6 +248,10 @@ static void __init nokia_n900_legacy_init(void)
pr_warning("RX-51: Not enabling ARM errata 430973 workaround\n");
pr_warning("Thumb binaries may crash randomly without this workaround\n");
}
+
+ pr_info("RX-51: Registring OMAP3 HWRNG device\n");
+ platform_device_register(&omap3_rom_rng_device);
+
}
}
#endif /* CONFIG_ARCH_OMAP3 */
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: OMAP2+: Add support for RNG on DT booted N900
@ 2014-04-07 12:28 ` Sebastian Reichel
0 siblings, 0 replies; 4+ messages in thread
From: Sebastian Reichel @ 2014-04-07 12:28 UTC (permalink / raw)
To: linux-arm-kernel
Add support for OMAP3 ROM Random Number Generator via
pdata-quirks.
Signed-off-by: Sebastian Reichel <sre@kernel.org>
---
Hi Tony,
I currently see no clean way to add DTS based support for the
random number generator in the N900, so this patch initializes
it using pdata-quirks.
I think its worth adding this for now, since its one of the few
things missing to get N900 DT based boot to the same level as
platform data based boot.
I've prepared a table tracking the patch status for my N900 DT
patches targeting 3.16 at [0]. If I'm not mistaken all of the
N900's hardware supported via platform data is also supported
via DT after these patches are merged. The overall status (incl.
hardware, which is also not supported by platform data) can
be seen on [1].
[0] http://elinux.org/N900/Changelog#Kernel_3.16_.28planned.29
[1] http://elinux.org/N900#Kernel_Status
-- Sebastian
---
arch/arm/mach-omap2/pdata-quirks.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm/mach-omap2/pdata-quirks.c b/arch/arm/mach-omap2/pdata-quirks.c
index b04c5f0..5baad1e 100644
--- a/arch/arm/mach-omap2/pdata-quirks.c
+++ b/arch/arm/mach-omap2/pdata-quirks.c
@@ -227,6 +227,14 @@ static void __init am3517_evm_legacy_init(void)
am35xx_emac_reset();
}
+static struct platform_device omap3_rom_rng_device = {
+ .name = "omap3-rom-rng",
+ .id = -1,
+ .dev = {
+ .platform_data = rx51_secure_rng_call,
+ },
+};
+
static void __init nokia_n900_legacy_init(void)
{
hsmmc2_internal_input_clk();
@@ -240,6 +248,10 @@ static void __init nokia_n900_legacy_init(void)
pr_warning("RX-51: Not enabling ARM errata 430973 workaround\n");
pr_warning("Thumb binaries may crash randomly without this workaround\n");
}
+
+ pr_info("RX-51: Registring OMAP3 HWRNG device\n");
+ platform_device_register(&omap3_rom_rng_device);
+
}
}
#endif /* CONFIG_ARCH_OMAP3 */
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: OMAP2+: Add support for RNG on DT booted N900
2014-04-07 12:28 ` Sebastian Reichel
(?)
@ 2014-05-08 19:54 ` Sebastian Reichel
2014-05-13 17:08 ` Tony Lindgren
-1 siblings, 1 reply; 4+ messages in thread
From: Sebastian Reichel @ 2014-05-08 19:54 UTC (permalink / raw)
To: Tony Lindgren, linux-omap
[-- Attachment #1: Type: text/plain, Size: 164 bytes --]
Hi,
On Mon, Apr 07, 2014 at 02:28:46PM +0200, Sebastian Reichel wrote:
> Add support for OMAP3 ROM Random Number Generator via
> pdata-quirks.
ping
-- Sebastian
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: OMAP2+: Add support for RNG on DT booted N900
2014-05-08 19:54 ` Sebastian Reichel
@ 2014-05-13 17:08 ` Tony Lindgren
0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2014-05-13 17:08 UTC (permalink / raw)
To: Sebastian Reichel; +Cc: linux-omap
* Sebastian Reichel <sre@kernel.org> [140508 12:55]:
> Hi,
>
> On Mon, Apr 07, 2014 at 02:28:46PM +0200, Sebastian Reichel wrote:
> > Add support for OMAP3 ROM Random Number Generator via
> > pdata-quirks.
>
> ping
Thanks applying into omap-for-v3.16/board.
Tony
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-05-13 17:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-07 12:28 [PATCH] ARM: OMAP2+: Add support for RNG on DT booted N900 Sebastian Reichel
2014-04-07 12:28 ` Sebastian Reichel
2014-05-08 19:54 ` Sebastian Reichel
2014-05-13 17:08 ` Tony Lindgren
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.