forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: crypto: convert Qualcomm PRNG to yaml
Convert Qualcomm PRNG documentation to yaml format. Signed-off-by: David Heidelberg <[email protected]> Acked-By: Vinod Koul <[email protected]> Signed-off-by: Rob Herring <[email protected]> Link: https://lore.kernel.org/r/[email protected]
- Loading branch information
1 parent
39b8630
commit 7821f3a
Showing
2 changed files
with
43 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# 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 <[email protected]> | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- qcom,prng # 8916 etc. | ||
- qcom,prng-ee # 8996 and later using EE | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
clock-names: | ||
items: | ||
- const: core | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- clocks | ||
- clock-names | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
rng@f9bff000 { | ||
compatible = "qcom,prng"; | ||
reg = <0xf9bff000 0x200>; | ||
clocks = <&clk 125>; | ||
clock-names = "core"; | ||
}; |