mbox series

[v1,0/3] hwrng: add hwrng support for Rockchip RK3568

Message ID 20221112141059.3802506-1-aurelien@aurel32.net
Headers show
Series hwrng: add hwrng support for Rockchip RK3568 | expand

Message

Aurelien Jarno Nov. 12, 2022, 2:10 p.m. UTC
Rockchip SoCs used to have a random number generator as part of their
crypto device, and support for it has to be added to the corresponding
driver.

However newer Rockchip SoCs like the RK3568 have an independent True
Random Number Generator device. This patchset adds a driver for it and
enable it in the device tree.

Aurelien Jarno (3):
  dt-bindings: RNG: Add Rockchip RNG bindings
  hwrng: add Rockchip SoC hwrng driver
  arm64: dts: rockchip: add DT entry for RNG to RK356x

 .../devicetree/bindings/rng/rockchip-rng.yaml |  62 +++++
 arch/arm64/boot/dts/rockchip/rk356x.dtsi      |   9 +
 drivers/char/hw_random/Kconfig                |  14 +
 drivers/char/hw_random/Makefile               |   1 +
 drivers/char/hw_random/rockchip-rng.c         | 251 ++++++++++++++++++
 5 files changed, 337 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/rng/rockchip-rng.yaml
 create mode 100644 drivers/char/hw_random/rockchip-rng.c