mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-25 07:14:36 +08:00
20a9689b36
The platform's RNG must be available before random_init() in order to be
useful for initial seeding, which in turn means that it needs to be
called from setup_arch(), rather than from an init call. Fortunately,
each platform already has a setup_arch function pointer, which means
it's easy to wire this up. This commit also removes some noisy log
messages that don't add much.
Fixes: c25769fdda
("powerpc/microwatt: Add support for hardware random number generator")
Cc: stable@vger.kernel.org # v5.14+
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220611151015.548325-2-Jason@zx2c4.com
50 lines
1015 B
C
50 lines
1015 B
C
/*
|
|
* Microwatt FPGA-based SoC platform setup code.
|
|
*
|
|
* Copyright 2020 Paul Mackerras (paulus@ozlabs.org), IBM Corp.
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/stddef.h>
|
|
#include <linux/init.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <asm/machdep.h>
|
|
#include <asm/time.h>
|
|
#include <asm/xics.h>
|
|
#include <asm/udbg.h>
|
|
|
|
#include "microwatt.h"
|
|
|
|
static void __init microwatt_init_IRQ(void)
|
|
{
|
|
xics_init();
|
|
}
|
|
|
|
static int __init microwatt_probe(void)
|
|
{
|
|
return of_machine_is_compatible("microwatt-soc");
|
|
}
|
|
|
|
static int __init microwatt_populate(void)
|
|
{
|
|
return of_platform_default_populate(NULL, NULL, NULL);
|
|
}
|
|
machine_arch_initcall(microwatt, microwatt_populate);
|
|
|
|
static void __init microwatt_setup_arch(void)
|
|
{
|
|
microwatt_rng_init();
|
|
}
|
|
|
|
define_machine(microwatt) {
|
|
.name = "microwatt",
|
|
.probe = microwatt_probe,
|
|
.init_IRQ = microwatt_init_IRQ,
|
|
.setup_arch = microwatt_setup_arch,
|
|
.progress = udbg_progress,
|
|
.calibrate_decr = generic_calibrate_decr,
|
|
};
|