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 B1221C433EF for ; Sun, 27 Feb 2022 18:28:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230478AbiB0S3L (ORCPT ); Sun, 27 Feb 2022 13:29:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34760 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230357AbiB0S3C (ORCPT ); Sun, 27 Feb 2022 13:29:02 -0500 X-Greylist: delayed 78247 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sun, 27 Feb 2022 10:28:23 PST Received: from mxout2.routing.net (mxout2.routing.net [IPv6:2a03:2900:1:a::b]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 82F396326; Sun, 27 Feb 2022 10:28:22 -0800 (PST) Received: from mxbox1.masterlogin.de (unknown [192.168.10.88]) by mxout2.routing.net (Postfix) with ESMTP id AA78D5FBF6; Sun, 27 Feb 2022 18:28:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailerdienst.de; s=20200217; t=1645986500; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=u4mYWaeD+lK1rhFLIPWnn/G9vhAGh1u9NboRs/RE/ow=; b=JU02zlGxUNEjhxwe27o+7eMPenGEWQmkCPdSIpBR5qunebhSp461VrVf9zJq0NioEDcy2Y yr1DUrgO3XLl73oSzLG6eAeukjQICH61Z+5l+GlIrcSGH7RrWpNMXVVVPTqpyBiuqvSwLK wauW4nXFOoJSg6psFVakxfQsoI3tXl4= Received: from localhost.localdomain (fttx-pool-80.245.76.205.bambit.de [80.245.76.205]) by mxbox1.masterlogin.de (Postfix) with ESMTPSA id C713B4054D; Sun, 27 Feb 2022 18:28:19 +0000 (UTC) From: Frank Wunderlich To: "devicetree @ vger . kernel . org Damien Le Moal" , Rob Herring , Krzysztof Kozlowski , Hans de Goede , Jens Axboe , linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org, Heiko Stuebner , Peter Geis , Michael Riesch , linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org Cc: Frank Wunderlich Subject: [PATCH v3 0/3] Add sata nodes to rk356x Date: Sun, 27 Feb 2022 19:27:57 +0100 Message-Id: <20220227182800.275572-1-linux@fw-web.de> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mail-ID: b31bc3f0-f46f-4773-805b-b34a3d2c2b1d Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Frank Wunderlich This Series converts the binding for ahci-platform to yaml and adds sata nodes to rockchip rk356x device trees. v3: - add conversion to sata-series - fix some errors in dt_binding_check and dtbs_check - move to unevaluated properties = false - add power-domain to yaml - move sata0 to rk3568.dtsi - drop clock-names and interrupt-names Frank Wunderlich (3): dt-bindings: Convert ahci-platform DT bindings to yaml dt-bindings: Add power-domains property to ahci-platform arm64: dts: rockchip: Add sata nodes to rk356x .../devicetree/bindings/ata/ahci-platform.txt | 79 ---------- .../bindings/ata/ahci-platform.yaml | 143 ++++++++++++++++++ arch/arm64/boot/dts/rockchip/rk3568.dtsi | 14 ++ arch/arm64/boot/dts/rockchip/rk356x.dtsi | 26 ++++ 4 files changed, 183 insertions(+), 79 deletions(-) delete mode 100644 Documentation/devicetree/bindings/ata/ahci-platform.txt create mode 100644 Documentation/devicetree/bindings/ata/ahci-platform.yaml -- 2.25.1