Skip to content

Commit aa1ed60

Browse files
ricalgregkh
authored andcommitted
dt-bindings: nvmem: Add t1023-sfp efuse support
Add a schema for the NVMEM eFuse (SFP) layout on the NXP QorIQ SOC. Signed-off-by: Richard Alpe <richard@bit42.se> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20230823132744.350618-12-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 0abd640 commit aa1ed60

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/nvmem/fsl,t1023-sfp.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: NXP QorIQ eFuse support
8+
9+
maintainers:
10+
- Richard Alpe <richard@bit42.se>
11+
12+
description:
13+
Read support for the eFuses (SFP) on NXP QorIQ series SoC's.
14+
15+
allOf:
16+
- $ref: nvmem.yaml#
17+
18+
properties:
19+
compatible:
20+
const: fsl,t1023-sfp
21+
22+
reg:
23+
maxItems: 1
24+
25+
required:
26+
- compatible
27+
- reg
28+
29+
unevaluatedProperties: false
30+
31+
examples:
32+
- |
33+
efuse@e8000 {
34+
compatible = "fsl,t1023-sfp";
35+
reg = <0xe8000 0x1000>;
36+
};
37+
...

0 commit comments

Comments
 (0)