Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: rng: document Silex Insight BA431 hwrng

This patch documents the device tree bindings of the BA431 hardware
random number generator.

This IP is for instance present in the Viper OEM boards sold by Silex
Insight.

Signed-off-by: Olivier Sobrie <olivier.sobrie@silexinsight.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Olivier Sobrie and committed by
Herbert Xu
50f362b2 f3c802a1

+36
+36
Documentation/devicetree/bindings/rng/silex-insight,ba431-rng.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/rng/silex-insight,ba431-rng.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Silex Insight BA431 RNG bindings 8 + 9 + description: | 10 + The BA431 hardware random number generator is an IP that is FIPS-140-2/3 11 + certified. 12 + 13 + maintainers: 14 + - Olivier Sobrie <olivier.sobrie@silexinsight.com> 15 + 16 + properties: 17 + compatible: 18 + const: silex-insight,ba431-rng 19 + 20 + reg: 21 + maxItems: 1 22 + 23 + required: 24 + - compatible 25 + - reg 26 + 27 + additionalProperties: false 28 + 29 + examples: 30 + - | 31 + rng@42800000 { 32 + compatible = "silex-insight,ba431-rng"; 33 + reg = <0x42800000 0x1000>; 34 + }; 35 + 36 + ...