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

dt-bindings: arm: airoha: Add the chip-scu node for EN7581 SoC

This patch adds the chip-scu document bindings for EN7581 SoC.
The airoha chip-scu block provides a configuration interface for clock,
io-muxing and other functionalities used by multiple controllers (e.g.
clock, pinctrl, ecc.) on EN7581 SoC.

Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Link: https://lore.kernel.org/20241023-en7581-pinctrl-v9-1-afb0cbcab0ec@kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

Lorenzo Bianconi and committed by
Linus Walleij
e2adb96f ef15f683

+42
+42
Documentation/devicetree/bindings/arm/airoha,en7581-chip-scu.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/arm/airoha,en7581-chip-scu.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Airoha Chip SCU Controller for EN7581 SoC 8 + 9 + maintainers: 10 + - Lorenzo Bianconi <lorenzo@kernel.org> 11 + 12 + description: 13 + The airoha chip-scu block provides a configuration interface for clock, 14 + io-muxing and other functionalities used by multiple controllers (e.g. clock, 15 + pinctrl, ecc) on EN7581 SoC. 16 + 17 + properties: 18 + compatible: 19 + items: 20 + - enum: 21 + - airoha,en7581-chip-scu 22 + - const: syscon 23 + 24 + reg: 25 + maxItems: 1 26 + 27 + required: 28 + - compatible 29 + - reg 30 + 31 + additionalProperties: false 32 + 33 + examples: 34 + - | 35 + soc { 36 + #address-cells = <2>; 37 + #size-cells = <2>; 38 + syscon@1fa20000 { 39 + compatible = "airoha,en7581-chip-scu", "syscon"; 40 + reg = <0x0 0x1fa20000 0x0 0x388>; 41 + }; 42 + };