diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-02-24 11:45:09 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-03-07 20:21:53 +0000 |
commit | d28c853b32b868f25545ce0c08b4b6a17f5d8767 (patch) | |
tree | 955c87eae442493e6588d8eba62c3494503b559e | |
parent | c7f99cd8fb6b3997bc634ad6ae6e709f49898cbe (diff) |
dt-bindings: nvmem: add common definition of nvmem-cell-cells
Linux kernel NVMEM consumer bindings define phandle to NVMEM cells
("nvmem-cells"), thus we also want the common definition of property
defining number of cells encoding that specifier, so the
Suggested-by: Rob Herring <[email protected]>
Reported-by: Michael Walle <[email protected]>
Closes: https://github.com/devicetree-org/dt-schema/pull/89
Reported-by: Rafał Miłecki <[email protected]>
Closes: https://lore.kernel.org/linux-arm-kernel/[email protected]/#r
Closes: https://lore.kernel.org/all/[email protected]/
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
Signed-off-by: Srinivas Kandagatla <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | Documentation/devicetree/bindings/nvmem/nvmem-provider.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/nvmem/nvmem-provider.yaml b/Documentation/devicetree/bindings/nvmem/nvmem-provider.yaml new file mode 100644 index 000000000000..4009a9a03841 --- /dev/null +++ b/Documentation/devicetree/bindings/nvmem/nvmem-provider.yaml @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/nvmem/nvmem-provider.yaml# +$schema: http://devicetree.org/meta-schemas/base.yaml# + +title: NVMEM (Non Volatile Memory) Provider + +maintainers: + - Srinivas Kandagatla <[email protected]> + +select: true + +properties: + '#nvmem-cell-cells': + enum: [0, 1] + +additionalProperties: true |