Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 06692b39 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: Enable QRNG driver for lahaina"

parents 079667c8 0de1168e
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
* RNG (Random Number Generator)

Required properties:
- compatible : Should be "qcom,msm-rng"
- reg        : Offset and length of the register set for the device

Optional property:
- qcom,msm-rng-iface-clk : If the device uses iface-clk.
- qcom,no-qrng-config    : Flag to decide whether the driver do the hardware configuration or not.

Example:

	qcom,msm-rng@f9bff000 {
		compatible = "qcom,msm-rng";
		reg = <0xf9bff000 0x200>;
		qcom,msm-rng-iface-clk;
		qcom,no-qrng-config;
	};
+10 −0
Original line number Diff line number Diff line
@@ -2621,6 +2621,16 @@
		clock-names = "eud_ahb2phy_clk";
		status = "ok";
	};

	qcom_rng: qrng@10d3000 {
		compatible = "qcom,msm-rng";
		reg = <0x10d3000 0x1000>;
		qcom,no-qrng-config;
		interconnect-names = "data_path";
		interconnects = <&gem_noc MASTER_APPSS_PROC &config_noc SLAVE_HWKM>;
		clock-names = "km_clk_src";
		clocks = <&clock_rpmh RPMH_HWKM_CLK>;
	};
};

#include "lahaina-regulators.dtsi"