2021-12-20 11:43:55 -07:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/crypto/qcom,prng.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: Qualcomm Pseudo Random Number Generator
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
- Vinod Koul <vkoul@kernel.org>
|
|
|
|
|
|
|
|
properties:
|
|
|
|
compatible:
|
2023-10-03 00:10:19 -07:00
|
|
|
oneOf:
|
|
|
|
- enum:
|
|
|
|
- qcom,prng # 8916 etc.
|
|
|
|
- qcom,prng-ee # 8996 and later using EE
|
|
|
|
- items:
|
|
|
|
- enum:
|
2024-09-05 12:06:05 -07:00
|
|
|
- qcom,sa8255p-trng
|
2023-10-16 07:34:28 -07:00
|
|
|
- qcom,sa8775p-trng
|
|
|
|
- qcom,sc7280-trng
|
2023-10-03 00:10:19 -07:00
|
|
|
- qcom,sm8450-trng
|
2023-10-03 00:10:20 -07:00
|
|
|
- qcom,sm8550-trng
|
2023-10-25 00:28:54 -07:00
|
|
|
- qcom,sm8650-trng
|
2023-10-03 00:10:19 -07:00
|
|
|
- const: qcom,trng
|
2021-12-20 11:43:55 -07:00
|
|
|
|
|
|
|
reg:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
clocks:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
clock-names:
|
|
|
|
items:
|
|
|
|
- const: core
|
|
|
|
|
|
|
|
required:
|
|
|
|
- compatible
|
|
|
|
- reg
|
2023-10-03 00:10:19 -07:00
|
|
|
|
|
|
|
allOf:
|
|
|
|
- if:
|
|
|
|
not:
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
contains:
|
|
|
|
const: qcom,trng
|
|
|
|
then:
|
|
|
|
required:
|
|
|
|
- clocks
|
|
|
|
- clock-names
|
2021-12-20 11:43:55 -07:00
|
|
|
|
|
|
|
additionalProperties: false
|
|
|
|
|
|
|
|
examples:
|
|
|
|
- |
|
|
|
|
rng@f9bff000 {
|
|
|
|
compatible = "qcom,prng";
|
|
|
|
reg = <0xf9bff000 0x200>;
|
|
|
|
clocks = <&clk 125>;
|
|
|
|
clock-names = "core";
|
|
|
|
};
|