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 B2BC9C4332F for ; Mon, 19 Dec 2022 11:13:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229528AbiLSLNZ (ORCPT ); Mon, 19 Dec 2022 06:13:25 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33504 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231301AbiLSLNU (ORCPT ); Mon, 19 Dec 2022 06:13:20 -0500 Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 696CEDFA8; Mon, 19 Dec 2022 03:13:18 -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 1p7E53-0004q6-7Z; Mon, 19 Dec 2022 12:13:13 +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: Jisheng Zhang , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Krzysztof Kozlowski , Rob Herring , linux-arm-kernel@lists.infradead.org, Andre Przywara , Samuel Holland Subject: Re: [PATCH v3 00/12] riscv: Allwinner D1/D1s platform support Date: Mon, 19 Dec 2022 12:13:12 +0100 Message-ID: <7683309.EvYhyI6sBW@diego> In-Reply-To: <20221208090237.20572-1-samuel@sholland.org> References: <20221208090237.20572-1-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: devicetree@vger.kernel.org Am Donnerstag, 8. Dezember 2022, 10:02:25 CET schrieb Samuel Holland: > This series adds the Kconfig/defconfig plumbing and devicetrees for a > range of Allwinner D1 and D1s-based boards. Many features are already > enabled, including USB, Ethernet, and WiFi. > > The devicetrees use bindings from the following series which have not > yet been merged to linux-next: > - In-package LDO regulators: > https://lore.kernel.org/lkml/20221208084127.17443-1-samuel@sholland.org/ > - Ethernet MAC binding fix (not a new issue with D1): > https://lore.kernel.org/lkml/20221208061616.7806-1-samuel@sholland.org/ > - TI ADC101C ADC (accepted, not yet in linux-next): > https://lore.kernel.org/lkml/20221125220903.8632-1-samuel@sholland.org/ > > The only remaining DT validation issue is that gpio-fan is missing a > YAML conversion, although one is on the list here: > https://lore.kernel.org/lkml/20220126200350.3633576-1-clabbe@baylibre.com/ > > $ make ARCH=riscv CROSS_COMPILE=riscv64-linux-musl- dtbs_check > SYNC include/config/auto.conf.cmd > LINT Documentation/devicetree/bindings > CHKDT Documentation/devicetree/bindings/processed-schema.json > SCHEMA Documentation/devicetree/bindings/processed-schema.json > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-clockworkpi-v3.14.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-devterm-v3.14.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-dongshan-nezha-stu.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-lichee-rv-86-panel-480p.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-lichee-rv-86-panel-720p.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-lichee-rv-dock.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-lichee-rv.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-mangopi-mq-pro.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1-nezha.dtb > DTC_CHK arch/riscv/boot/dts/allwinner/sun20i-d1s-mangopi-mq.dtb > arch/riscv/boot/dts/allwinner/sun20i-d1-devterm-v3.14.dtb:0:0: /fan: failed to match any schema with compatible: ['gpio-fan'] > > Note that validation requires dt-schema v2022.12 or newer. > > I tested this series (DMIC, Ethernet, LEDs, MMC, PMIC, touch, and USB, > all where available) on the following boards: > - sun20i-d1-devterm-v3.14 > - sun20i-d1-dongshan-nezha-stu > - sun20i-d1-lichee-rv-86-panel-480p > - sun20i-d1-mangopi-mq-pro > - sun20i-d1-nezha > - sun20i-d1s-mangopi-mq I've re-tested this series again with the current merge-window state (riscv pull already in) and everything still works nicely. So all tags still hold :-) Thanks Heiko