From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CE6DB1B260 for ; Fri, 13 Oct 2023 15:01:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="pOboIkdN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6469EC433C7; Fri, 13 Oct 2023 15:01:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697209297; bh=XwBgXpXgYLg9MgD+nnnx88FLFxUjShjOXlnTqK+olfw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pOboIkdNWOEKjYfIskqC+u3bj27ujMsDVh9PHb/Hzjl4zAasVGX6FNlVirBn93CT7 tr9GyiYMPJv3EBei09cmulhYfaQMMsKzvnrJx/l6bh88LzS48lIZPZwYvyePbMXvwE v7DK28FKj/PU4Dyeec4VEuxMJdSJS0S9S0OyDn/W89ubeQnui9DbH843eGJTMluf+X ox2IW/U6UXO2wYNS7jh/bfv2TjJxbXlHxiSRyzoXdOFRmN+pq3vt4KqSK8XRREHxgL A4WEsjrlCIFLwT13JPcSbjtF6H/0eN7FwbrF8lq6xF25p920TWYnCfC9n1LxMcMddM l9JqAlQfJVZmQ== Date: Fri, 13 Oct 2023 16:01:32 +0100 From: Conor Dooley To: Kris Chaplin Cc: thomas.delev@amd.com, michal.simek@amd.com, krzysztof.kozlowski@linaro.org, robh+dt@kernel.org, conor+dt@kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, git@amd.com Subject: Re: [PATCH 1/2] dt-bindings: w1: Add YAML DT Schema for AMD w1 master and MAINTAINERS entry Message-ID: <20231013-blip-sheath-440f05d3767e@spud> References: <20231013093109.37165-1-kris.chaplin@amd.com> <20231013093109.37165-2-kris.chaplin@amd.com> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="0bXVZ/QeawNbrU3k" Content-Disposition: inline In-Reply-To: <20231013093109.37165-2-kris.chaplin@amd.com> --0bXVZ/QeawNbrU3k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 13, 2023 at 02:30:12AM -0700, Kris Chaplin wrote: > Add YAML DT Schema for the AMD w1 master IP. >=20 > This hardware guarantees protocol timing for driving off-board devices su= ch > as thermal sensors, proms, etc using the 1wire protocol. >=20 > Add MAINTAINERS entry for DT Schema. >=20 > Co-developed-by: Thomas Delev > Signed-off-by: Thomas Delev > Signed-off-by: Kris Chaplin > --- > .../bindings/w1/amd,axi-1wire-master.yaml | 44 +++++++++++++++++++ > MAINTAINERS | 7 +++ > 2 files changed, 51 insertions(+) > create mode 100644 Documentation/devicetree/bindings/w1/amd,axi-1wire-ma= ster.yaml >=20 > diff --git a/Documentation/devicetree/bindings/w1/amd,axi-1wire-master.ya= ml b/Documentation/devicetree/bindings/w1/amd,axi-1wire-master.yaml > new file mode 100644 > index 000000000000..41f7294a84a3 > --- /dev/null > +++ b/Documentation/devicetree/bindings/w1/amd,axi-1wire-master.yaml > @@ -0,0 +1,44 @@ > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/w1/amd,axi-1wire-master.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: AMD AXI 1-wire bus master for Programmable Logic Inconsistent case for the title here bothers my OCD, but the binding is fine as far as I can see. Reviewed-by: Conor Dooley Thanks, Conor. > + > +maintainers: > + - Kris Chaplin > + > +properties: > + compatible: > + const: amd,axi-1wire-master > + > + reg: > + maxItems: 1 > + > + clocks: > + maxItems: 1 > + > + interrupts: > + maxItems: 1 > + > +required: > + - compatible > + - reg > + - clocks > + - interrupts > + > +additionalProperties: false > + > +examples: > + - | > + #include > + > + onewire@a0000000 { > + compatible =3D "amd,axi-1wire-master"; > + reg =3D <0xa0000000 0x10000>; > + clocks =3D <&zynqmp_clk 0x47>; > + interrupts =3D ; > + }; > + > +... > diff --git a/MAINTAINERS b/MAINTAINERS > index 4b2c378b4fd9..6ec3922b256e 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -1066,6 +1066,13 @@ M: Sanjay R Mehta > S: Maintained > F: drivers/spi/spi-amd.c > =20 > +AMD W1 DRIVER > +M: Kris Chaplin > +R: Thomas Delev > +R: Michal Simek > +S: Maintained > +F: Documentation/devicetree/bindings/w1/amd,axi-1wire-master.yaml > + > AMD XGBE DRIVER > M: "Shyam Sundar S K" > L: netdev@vger.kernel.org > --=20 > 2.42.GIT >=20 --0bXVZ/QeawNbrU3k Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQRh246EGq/8RLhDjO14tDGHoIJi0gUCZSlbywAKCRB4tDGHoIJi 0tHYAP4uAXwv3ro3wdcDxYLMpAqtbZ6nqRBVfA3Ai/RL7xr9vgD/VbV4jzbXlwRc w7H6U85tITzD5uMAE7D5G/OhIU/1EAM= =DJTU -----END PGP SIGNATURE----- --0bXVZ/QeawNbrU3k--