2016-06-15 10:01:44

by Neil Armstrong

[permalink] [raw]
Subject: [RESEND PATCH 0/2] hw_random: Add Amlogic Meson SoCs Random Generator driver

NOTE: This is a resent of the DT Bindings and DTSI patches based on the Amlogic DT 64bit
GIT pull request from Kevin Hilman at [1].

Changes since v2 at http://lkml.kernel.org/r/[email protected] :
- Move rng peripheral node into periphs simple-bus node

Add support for the Amlogic Meson SoCs Hardware Random generator as a hw_random char driver.
The generator is a single 32bit wide register.
Also adds the Meson GXBB SoC DTSI node and corresponding DT bindings.

Changes since v1 at http://lkml.kernel.org/r/[email protected] :
- change to depend on ARCH_MESON || COMPILE_TEST
- check buffer max size in read

[1] [GIT PULL] Amlogic DT 64-bit changes for v4.8 : http://lkml.kernel.org/r/[email protected]

Neil Armstrong (2):
dt-bindings: hwrng: Add Amlogic Meson Hardware Random Generator
bindings
ARM64: dts: meson-gxbb: Add Hardware Random Generator node

.../devicetree/bindings/rng/amlogic,meson-rng.txt | 14 ++++++++++++++
arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 5 +++++
2 files changed, 19 insertions(+)
create mode 100644 Documentation/devicetree/bindings/rng/amlogic,meson-rng.txt

--
2.7.0


2016-06-15 10:01:59

by Neil Armstrong

[permalink] [raw]
Subject: [RESEND PATCH 2/2] ARM64: dts: meson-gxbb: Add Hardware Random Generator node

Signed-off-by: Neil Armstrong <[email protected]>
---
arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
index 063e3b6..806b903 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
@@ -221,6 +221,11 @@
#size-cells = <2>;
ranges = <0x0 0x0 0x0 0xc8834000 0x0 0x2000>;

+ rng {
+ compatible = "amlogic,meson-rng";
+ reg = <0x0 0x0 0x0 0x4>;
+ };
+
pinctrl_periphs: pinctrl@4b0 {
compatible = "amlogic,meson-gxbb-periphs-pinctrl";
#address-cells = <2>;
--
2.7.0

2016-06-15 15:57:04

by Kevin Hilman

[permalink] [raw]
Subject: Re: [RESEND PATCH 0/2] hw_random: Add Amlogic Meson SoCs Random Generator driver

Neil Armstrong <[email protected]> writes:

> NOTE: This is a resent of the DT Bindings and DTSI patches based on the Amlogic DT 64bit
> GIT pull request from Kevin Hilman at [1].
>
> Changes since v2 at http://lkml.kernel.org/r/[email protected] :
> - Move rng peripheral node into periphs simple-bus node

Thanks for the update.

Applied to the dt64 branch of the amlogic tree.

Kevin