From nobody Fri Nov 29 17:47:39 2024 Received: from mail-sh.amlogic.com (unknown [58.32.228.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 03887170A27; Wed, 18 Sep 2024 07:57:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=58.32.228.46 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726646269; cv=none; b=PbY/nCtetQ0vyMaoDBxtNOr5mp84eybBWvDxs3vgxijZg+rXripG0iPueeRxtIzKTwNq7iy1V9ADetm1sgTzI95DJjKdGP7qd7Mjh/xpZjncfvW7kAb5ee+WPxjhTi7ibXrbgyb1kLWxS71RlO7W1ibmFSW+NKE2Y9pITuxX9dY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726646269; c=relaxed/simple; bh=J7823u6Wzr1O7Z+TufDSgdlniB5vRNbDE7kS9mkV5UQ=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=eBr1ftpZOGNHC9XhnMySXIUFRcuFIuftXf3/651/gyN5HiCc+vG1DfpIWSSMHL/sXf0QeiNh6E4IyOXaJBCB/EGE7o1fynTlk3Hh/AiCzMCy+R5AZq6ye0++ZeN0QcG67gNdNCvcciG3K5qRX/4vxbTnj0uDyPnncDVPPIuOv34= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=amlogic.com; spf=pass smtp.mailfrom=amlogic.com; arc=none smtp.client-ip=58.32.228.46 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=amlogic.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=amlogic.com Received: from droid10-sz.amlogic.com (10.28.11.69) by mail-sh.amlogic.com (10.18.11.5) with Microsoft SMTP Server id 15.1.2507.39; Wed, 18 Sep 2024 15:42:19 +0800 From: zelong dong To: Neil Armstrong , Philipp Zabel , Kevin Hilman , Rob Herring , Martin Blumenstingl , Jerome Brunet , Krzysztof Kozlowski CC: , , , , , Zelong Dong , "Conor Dooley" Subject: [PATCH v3 1/3] dt-bindings: reset: Add compatible for Amlogic A4/A5 Reset Controller Date: Wed, 18 Sep 2024 15:42:09 +0800 Message-ID: <20240918074211.8067-2-zelong.dong@amlogic.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20240918074211.8067-1-zelong.dong@amlogic.com> References: <20240918074211.8067-1-zelong.dong@amlogic.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Zelong Dong Add new compatible for Amlogic A4/A5 Reset Controller Signed-off-by: Zelong Dong Acked-by: Conor Dooley Acked-by: Philipp Zabel --- .../bindings/reset/amlogic,meson-reset.yaml | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/Documentation/devicetree/bindings/reset/amlogic,meson-reset.ya= ml b/Documentation/devicetree/bindings/reset/amlogic,meson-reset.yaml index 695ef38a7bb3..0ad81fe7b629 100644 --- a/Documentation/devicetree/bindings/reset/amlogic,meson-reset.yaml +++ b/Documentation/devicetree/bindings/reset/amlogic,meson-reset.yaml @@ -12,14 +12,21 @@ maintainers: =20 properties: compatible: - 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 S= oCs - - 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 + oneOf: + - items: + - enum: + - amlogic,meson8b-reset # Reset Controller on Meson8b and co= mpatible SoCs + - amlogic,meson-gxbb-reset # Reset Controller on GXBB and co= mpatible SoCs + - amlogic,meson-axg-reset # Reset Controller on AXG and comp= atible SoCs + - amlogic,meson-a1-reset # Reset Controller on A1 and compat= ible SoCs + - amlogic,meson-s4-reset # Reset Controller on S4 and compat= ible SoCs + - amlogic,c3-reset # Reset Controller on C3 and compatible S= oCs + - amlogic,t7-reset + - items: + - enum: + - amlogic,a4-reset + - amlogic,a5-reset + - const: amlogic,meson-s4-reset =20 reg: maxItems: 1 --=20 2.35.1