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

dt-bindings: soc: add vf610 reboot syscon controller

Add vf610 reboot controller, which used to reboot whole system. Fix below
CHECK_DTB warnings:

arch/arm/boot/dts/nxp/vf/vf610-bk4.dtb: /soc/bus@40000000/src@4006e000:
failed to match any schema with compatible: ['fsl,vf610-src', 'syscon']

IC reference manual calls it as system reset controller(SRC), but it is not
module as reset controller, which used to reset individual device. SRC
works as reboot controller, which reboots whole system. It provides a
syscon interface to syscon-reboot.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
Link: https://lore.kernel.org/r/20250819165317.3739366-1-Frank.Li@nxp.com
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>

authored by

Frank Li and committed by
Rob Herring (Arm)
835bdddd 326d2519

+47
+47
Documentation/devicetree/bindings/soc/fsl/fsl,vf610-src.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/soc/fsl/fsl,vf610-src.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Freescale vf610 System Reset Controller (SRC) 8 + 9 + maintainers: 10 + - Frank Li <Frank.Li@nxp.com> 11 + 12 + description: 13 + IC reference manual calls it as SRC, but it is not module as reset 14 + controller, which used to reset individual device. SRC works as reboot 15 + controller, which reboots whole system. It provides a syscon interface to 16 + syscon-reboot. 17 + 18 + properties: 19 + compatible: 20 + items: 21 + - enum: 22 + - fsl,vf610-src 23 + - const: syscon 24 + 25 + reg: 26 + maxItems: 1 27 + 28 + interrupts: 29 + maxItems: 1 30 + 31 + required: 32 + - compatible 33 + - reg 34 + - interrupts 35 + 36 + additionalProperties: false 37 + 38 + examples: 39 + - | 40 + #include <dt-bindings/interrupt-controller/irq.h> 41 + 42 + syscon@4006e000 { 43 + compatible = "fsl,vf610-src", "syscon"; 44 + reg = <0x4006e000 0x1000>; 45 + interrupts = <96 IRQ_TYPE_LEVEL_HIGH>; 46 + }; 47 +