From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EB078C4321E for ; Mon, 28 Nov 2022 20:56:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234390AbiK1U4B (ORCPT ); Mon, 28 Nov 2022 15:56:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34128 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234356AbiK1Uzt (ORCPT ); Mon, 28 Nov 2022 15:55:49 -0500 Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D71FA2EF4D; Mon, 28 Nov 2022 12:55:45 -0800 (PST) Received: from ip5b412258.dynamic.kabel-deutschland.de ([91.65.34.88] helo=diego.localnet) by gloria.sntech.de with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ozlA5-000801-38; Mon, 28 Nov 2022 21:55:33 +0100 From: Heiko =?ISO-8859-1?Q?St=FCbner?= To: Chen-Yu Tsai , Jernej Skrabec , linux-sunxi@lists.linux.dev, Palmer Dabbelt , Conor Dooley , linux-riscv@lists.infradead.org, Samuel Holland Cc: devicetree@vger.kernel.org, Krzysztof Kozlowski , Rob Herring , Jisheng Zhang , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Andre Przywara , Samuel Holland , Albert Ou , Anup Patel , Atish Patra , Christian Hewitt , Conor Dooley , Guo Ren , Heinrich Schuchardt , Linus Walleij , Paul Walmsley , Stanislav Jakubek , Rob Herring Subject: Re: [PATCH v2 03/12] dt-bindings: riscv: Add Allwinner D1/D1s board compatibles Date: Mon, 28 Nov 2022 21:55:31 +0100 Message-ID: <7181632.DvuYhMxLoT@diego> In-Reply-To: <20221125234656.47306-4-samuel@sholland.org> References: <20221125234656.47306-1-samuel@sholland.org> <20221125234656.47306-4-samuel@sholland.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Samstag, 26. November 2022, 00:46:47 CET schrieb Samuel Holland: > Several SoMs and boards are available that feature the Allwinner D1 or > D1s SoC. Document their compatible strings. > > Acked-by: Rob Herring > Signed-off-by: Samuel Holland Reviewed-by: Heiko Stuebner > --- > > Changes in v2: > - Add MangoPi MQ (non-Pro) board > > .../devicetree/bindings/riscv/sunxi.yaml | 69 +++++++++++++++++++ > 1 file changed, 69 insertions(+) > create mode 100644 Documentation/devicetree/bindings/riscv/sunxi.yaml > > diff --git a/Documentation/devicetree/bindings/riscv/sunxi.yaml b/Documentation/devicetree/bindings/riscv/sunxi.yaml > new file mode 100644 > index 000000000000..9edb5e5992b1 > --- /dev/null > +++ b/Documentation/devicetree/bindings/riscv/sunxi.yaml > @@ -0,0 +1,69 @@ > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/riscv/sunxi.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Allwinner RISC-V SoC-based boards > + > +maintainers: > + - Chen-Yu Tsai > + - Jernej Skrabec > + - Samuel Holland > + > +description: > + Allwinner RISC-V SoC-based boards > + > +properties: > + $nodename: > + const: '/' > + compatible: > + oneOf: > + - description: Dongshan Nezha STU SoM > + items: > + - const: 100ask,dongshan-nezha-stu > + - const: allwinner,sun20i-d1 > + > + - description: D1 Nezha board > + items: > + - const: allwinner,d1-nezha > + - const: allwinner,sun20i-d1 > + > + - description: ClockworkPi R-01 SoM and v3.14 board > + items: > + - const: clockwork,r-01-clockworkpi-v3.14 > + - const: allwinner,sun20i-d1 > + > + - description: ClockworkPi R-01 SoM, v3.14 board, and DevTerm expansion > + items: > + - const: clockwork,r-01-devterm-v3.14 > + - const: clockwork,r-01-clockworkpi-v3.14 > + - const: allwinner,sun20i-d1 > + > + - description: Lichee RV SoM > + items: > + - const: sipeed,lichee-rv > + - const: allwinner,sun20i-d1 > + > + - description: Carrier boards for the Lichee RV SoM > + items: > + - enum: > + - sipeed,lichee-rv-86-panel-480p > + - sipeed,lichee-rv-86-panel-720p > + - sipeed,lichee-rv-dock > + - const: sipeed,lichee-rv > + - const: allwinner,sun20i-d1 > + > + - description: MangoPi MQ board > + items: > + - const: widora,mangopi-mq > + - const: allwinner,sun20i-d1s > + > + - description: MangoPi MQ Pro board > + items: > + - const: widora,mangopi-mq-pro > + - const: allwinner,sun20i-d1 > + > +additionalProperties: true > + > +... >