Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
# Copyright 2019 BayLibre, SAS
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/reset/amlogic,meson-reset.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Amlogic Meson SoC Reset Controller
|
|
|
|
maintainers:
|
|
- Neil Armstrong <neil.armstrong@linaro.org>
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- enum:
|
|
- amlogic,meson8b-reset # Reset Controller on Meson8b and compatible SoCs
|
|
- amlogic,meson-gxbb-reset # Reset Controller on GXBB and compatible SoCs
|
|
- amlogic,meson-axg-reset # Reset Controller on AXG and compatible SoCs
|
|
- amlogic,meson-a1-reset # Reset Controller on A1 and compatible SoCs
|
|
- amlogic,meson-s4-reset # Reset Controller on S4 and compatible SoCs
|
|
- amlogic,c3-reset # Reset Controller on C3 and compatible SoCs
|
|
- amlogic,t7-reset
|
|
- items:
|
|
- enum:
|
|
- amlogic,a4-reset
|
|
- amlogic,a5-reset
|
|
- const: amlogic,meson-s4-reset
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
"#reset-cells":
|
|
const: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- "#reset-cells"
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
reset-controller@c884404 {
|
|
compatible = "amlogic,meson-gxbb-reset";
|
|
reg = <0xc884404 0x20>;
|
|
#reset-cells = <1>;
|
|
};
|