[PATCH v2 02/10] dt-bindings: soc: add Ambarella secure scratchpad
Long Zhao via B4 Relay <[email protected]> Thu, 06 Aug 2026 17:34:10 +0800
| Newsgroups | org.kernel.vger.linux-serial,dev.linux.lists.soc,org.infradead.lists.linux-arm-kernel,org.kernel.feeds.b4-sent,org.kernel.vger.linux-clk,org.kernel.vger.linux-devicetree,org.kernel.vger.linux-gpio,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <20260806-longzhao-upstream-cv75-v2-v2-2-6b09707c5fe9@ambarella.com> |
From: Long Zhao <[email protected]> Document the Ambarella secure scratchpad syscon used by CV75. Signed-off-by: Long Zhao <[email protected]> --- .../ambarella/ambarella,cv75-sec-scratchpad.yaml | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/Documentation/devicetree/bindings/soc/ambarella/ambarella,cv75-sec-scratchpad.yaml b/Documentation/devicetree/bindings/soc/ambarella/ambarella,cv75-sec-scratchpad.yaml new file mode 100644 index 000000000000..4bfeca0ac3da --- /dev/null +++ b/Documentation/devicetree/bindings/soc/ambarella/ambarella,cv75-sec-scratchpad.yaml @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/soc/ambarella/ambarella,cv75-sec-scratchpad.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Ambarella CV75 Secure Scratchpad Registers + +maintainers: + - Long Zhao <[email protected]> + +description: + The secure scratchpad block contains shared system registers used by + other Ambarella SoC blocks through syscon regmap lookups. + +allOf: + - $ref: /schemas/mfd/syscon-common.yaml# + +properties: + compatible: + items: + - const: ambarella,cv75-sec-scratchpad + - const: syscon + + reg: + maxItems: 1 + +required: + - compatible + - reg + +unevaluatedProperties: false + +examples: + - | + scratchpad@e002e000 { + compatible = "ambarella,cv75-sec-scratchpad", "syscon"; + reg = <0xe002e000 0x1000>; + }; -- 2.34.1