Re: [PATCH 1/3] rng: add OP-TEE based Random Number Generator

2022-03-24 Thread Heinrich Schuchardt
On 3/24/22 12:03, Patrick DELAUNAY wrote: Hi, On 3/22/22 15:38, Heinrich Schuchardt wrote: On 3/22/22 15:06, Patrick Delaunay wrote: Add driver for OP-TEE based Random Number Generator on ARM SoCs where hardware entropy sources are not accessible to normal world and the RNG service is provided

Re: [PATCH 1/3] rng: add OP-TEE based Random Number Generator

2022-03-24 Thread Patrick DELAUNAY
Hi, On 3/22/22 15:38, Heinrich Schuchardt wrote: On 3/22/22 15:06, Patrick Delaunay wrote: Add driver for OP-TEE based Random Number Generator on ARM SoCs where hardware entropy sources are not accessible to normal world and the RNG service is provided by a HWRNG Trusted Application (TA). This

Re: [PATCH 1/3] rng: add OP-TEE based Random Number Generator

2022-03-22 Thread Heinrich Schuchardt
On 3/22/22 15:06, Patrick Delaunay wrote: Add driver for OP-TEE based Random Number Generator on ARM SoCs where hardware entropy sources are not accessible to normal world and the RNG service is provided by a HWRNG Trusted Application (TA). This driver is based on the linux driver: char/hw_rando

[PATCH 1/3] rng: add OP-TEE based Random Number Generator

2022-03-22 Thread Patrick Delaunay
Add driver for OP-TEE based Random Number Generator on ARM SoCs where hardware entropy sources are not accessible to normal world and the RNG service is provided by a HWRNG Trusted Application (TA). This driver is based on the linux driver: char/hw_random/optee-rng.c Signed-off-by: Patrick Delaun