From patchwork Thu Sep 8 14:29:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Ciocaltea X-Patchwork-Id: 603980 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 09311C38145 for ; Thu, 8 Sep 2022 14:29:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232318AbiIHO33 (ORCPT ); Thu, 8 Sep 2022 10:29:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39934 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231513AbiIHO32 (ORCPT ); Thu, 8 Sep 2022 10:29:28 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 874A71DE; Thu, 8 Sep 2022 07:29:21 -0700 (PDT) Received: from localhost (unknown [188.27.54.142]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: cristicc) by madras.collabora.co.uk (Postfix) with ESMTPSA id 6D4436601F95; Thu, 8 Sep 2022 15:29:19 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1662647359; bh=tpSobSIcb0QsOQnZGDIgD2ENJ2Bf9A/dSaw8KuUOnWk=; h=From:To:Cc:Subject:Date:From; b=a1QqqcXTRTWYWI0tj4ea/P4CA204KN8uwPEywASsiBS1tC6McY89UJP7TuOCsbnqw VrelOfl/JCdhiX2WdrrkeJmykO3NTN9LHx+5jwpkF+DsQpLZTy9yGYaB3RUyTqEja7 DLNWo5HDdxJl8Majy4eXesbh5SqcSV9onaPvkwdxMoPtFasaYVk5t5jsZDsZ3EO382 tiB6FvUoi7zY3VyakMSsi6/Da7RYkV4SS9tuPsp0anLkQm+605jy9dAEKsIplTWl8v Uys0uwfqatise9veyWe0Rl4NMlN/y750nECoCG1HkAvLX/GsNopVNESzcTRLBRPc0Q PZ16qmIGxqnbw== From: Cristian Ciocaltea To: Rob Herring , Krzysztof Kozlowski , Paul Walmsley , Palmer Dabbelt , Albert Ou , Michael Zhu , Drew Fustini , Emil Renner Berthing , Conor Dooley Cc: devicetree@vger.kernel.org, linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, kernel@collabora.com Subject: [PATCH v3 0/3] Enable initial support for StarFive VisionFive V1 SBC Date: Thu, 8 Sep 2022 17:29:11 +0300 Message-Id: <20220908142914.359777-1-cristian.ciocaltea@collabora.com> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org The StarFive VisionFive V1 SBC [1] is similar with the already supported BeagleV Starlight Beta board, both being based on the StarFive JH7100 SoC. In addition to documenting the necessary compatibles, this patch series moves most of the content from jh7100-beaglev-starlight.dts to a new file jh7100-common.dtsi, to be shared between the two boards. No other changes are required in order to successfully boot the board. [1] https://github.com/starfive-tech/VisionFive Changes in v3: - Added Reviewed-by tag from Krzysztof in patch 1/3 - Optimized patch 2/3 by enabling copy detection on "git format-patch", as indicated by Krzysztof Changes in v2: - Simplified documentation by using 'enum' instead of 'const' in patch 1/3, according to Conor's review - Added Reviewed-by tags from Conor Cristian Ciocaltea (3): dt-bindings: riscv: starfive: Add StarFive VisionFive V1 board riscv: dts: starfive: Add common DT for JH7100 based boards riscv: dts: starfive: Add StarFive VisionFive V1 device tree .../devicetree/bindings/riscv/starfive.yaml | 4 +- arch/riscv/boot/dts/starfive/Makefile | 2 +- .../dts/starfive/jh7100-beaglev-starlight.dts | 153 +----------------- ...aglev-starlight.dts => jh7100-common.dtsi} | 3 - .../jh7100-starfive-visionfive-v1.dts | 20 +++ 5 files changed, 25 insertions(+), 157 deletions(-) copy arch/riscv/boot/dts/starfive/{jh7100-beaglev-starlight.dts => jh7100-common.dtsi} (96%) create mode 100644 arch/riscv/boot/dts/starfive/jh7100-starfive-visionfive-v1.dts