RISC-V: Implement archrandom when Zkr is available
authorSamuel Ortiz <sameo@rivosinc.com>
Thu, 30 Nov 2023 11:17:02 +0000 (12:17 +0100)
committerPalmer Dabbelt <palmer@rivosinc.com>
Thu, 18 Jan 2024 02:20:49 +0000 (18:20 -0800)
commit10243401059287868a5651f869a2494368872add
treea2a4b42d335b20de65d800407ee3f8188a4a5eff
parent55ca8d7aa2af3ebdb6f85cccf1b0703d031c1678
RISC-V: Implement archrandom when Zkr is available

The Zkr extension is ratified and provides 16 bits of entropy seed when
reading the SEED CSR.

We can implement arch_get_random_seed_longs() by doing multiple csrrw to
that CSR and filling an unsigned long with valid entropy bits.

Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Samuel Ortiz <sameo@rivosinc.com>
Signed-off-by: Clément Léger <cleger@rivosinc.com>
Link: https://lore.kernel.org/r/20231130111704.1319081-1-cleger@rivosinc.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
arch/riscv/include/asm/archrandom.h [new file with mode: 0644]
arch/riscv/include/asm/csr.h