32 lines
732 B
YAML
32 lines
732 B
YAML
|
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
||
|
%YAML 1.2
|
||
|
---
|
||
|
$id: http://devicetree.org/schemas/nvmem/layouts/fixed-cell.yaml#
|
||
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||
|
|
||
|
title: Fixed offset & size NVMEM cell
|
||
|
|
||
|
maintainers:
|
||
|
- Rafał Miłecki <rafal@milecki.pl>
|
||
|
- Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
|
||
|
|
||
|
properties:
|
||
|
reg:
|
||
|
maxItems: 1
|
||
|
|
||
|
bits:
|
||
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
||
|
items:
|
||
|
- minimum: 0
|
||
|
maximum: 7
|
||
|
description:
|
||
|
Offset in bit within the address range specified by reg.
|
||
|
- minimum: 1
|
||
|
description:
|
||
|
Size in bit within the address range specified by reg.
|
||
|
|
||
|
required:
|
||
|
- reg
|
||
|
|
||
|
additionalProperties: true
|