Re: [PATCH v5 2/5] fdt: kaslr seed from RNG device

2023-11-29 Thread Ilias Apalodimas
On Wed, 29 Nov 2023 at 19:47, Simon Glass wrote: > Hi Sean, > > On Thu, 16 Nov 2023 at 19:02, wrote: > > > > From: Dhananjay Phadke > > > > Add support for KASLR seed from the RNG device. Invokes dm_rng_read() > > API to read 8-bytes of random bytes. Performs the FDT fixup using event > > spy.

Re: [PATCH v5 2/5] fdt: kaslr seed from RNG device

2023-11-29 Thread Simon Glass
Hi Sean, On Thu, 16 Nov 2023 at 19:02, wrote: > > From: Dhananjay Phadke > > Add support for KASLR seed from the RNG device. Invokes dm_rng_read() > API to read 8-bytes of random bytes. Performs the FDT fixup using event > spy. To enable use CONFIG_KASLR_RNG_SEED > > Signed-off-by: Dhananjay P

Re: [PATCH v5 2/5] fdt: kaslr seed from RNG device

2023-11-22 Thread Ilias Apalodimas
Hi Sean, On Thu, 23 Nov 2023 at 01:55, Sean Edmond wrote: > > Hi Ilias, Applogies, I'm fairly new to upstream contributions and I've missed > a few things on multi-version patch series such as this one. Simon has > elightened about patman though (I feel a bit sheepish that I haven't been > us

Re: [PATCH v5 2/5] fdt: kaslr seed from RNG device

2023-11-22 Thread Sean Edmond
Hi Ilias, Applogies, I'm fairly new to upstream contributions and I've missed a few things on multi-version patch series such as this one. Simon has elightened about patman though (I feel a bit sheepish that I haven't been using this tool all along). Should I resubmit this as a new series to en

Re: [PATCH v5 2/5] fdt: kaslr seed from RNG device

2023-11-17 Thread Ilias Apalodimas
Hi Sean There are a few reviewed-by tags missing since v3/v4. Any reason you dropped those? The change log doesn't mention anything Thanks /Ilias On Fri, 17 Nov 2023 at 04:02, wrote: > > From: Dhananjay Phadke > > Add support for KASLR seed from the RNG device. Invokes dm_rng_read() > API to r

[PATCH v5 2/5] fdt: kaslr seed from RNG device

2023-11-16 Thread seanedmond
From: Dhananjay Phadke Add support for KASLR seed from the RNG device. Invokes dm_rng_read() API to read 8-bytes of random bytes. Performs the FDT fixup using event spy. To enable use CONFIG_KASLR_RNG_SEED Signed-off-by: Dhananjay Phadke Signed-off-by: Drew Kluemke Signed-off-by: Sean Edmond