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 0ABA3C43334 for ; Tue, 14 Jun 2022 15:47:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234683AbiFNPrO (ORCPT ); Tue, 14 Jun 2022 11:47:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55658 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229490AbiFNPrN (ORCPT ); Tue, 14 Jun 2022 11:47:13 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F315427C4; Tue, 14 Jun 2022 08:47:11 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B5663B8198A; Tue, 14 Jun 2022 15:47:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 392BEC3411B; Tue, 14 Jun 2022 15:47:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655221628; bh=b22lZ+UrnJsF1tpdplHnqiydkGHLnNC8hvVtKauyzZA=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=q63HgsPDtKd771Qakfg55DRXv9QuQDcbBFKAtabwwr+5ACLM2YwdukCE26JceWJ6+ DFE6szJKL0C61c5CZIOHvyTFliIamiivv4Ozt1+JmqGCsVG8YzFUXcPO6tFu2ycBsq erSzEvcBTuCpvr0I20ApwhIB7DBlGBove1g85QJPqoU5Og08irCaLdOJ/I7PGBt2Al b8fXZb5fnzbmYwbtxQqtdejJUAI+c2WxSYMAWHBhVixALvKeStL+NZaNZ9x0WyFKEw Q66gSRtY9owZz2Gy74+Sk2l5J+sUbcph8lxSEbNb3QHyPCBsM+OjFejxDrci/wd+ui zw5vFqs5wY6ZA== Message-ID: Date: Tue, 14 Jun 2022 10:47:05 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.1 Subject: Re: [PATCH v4 0/5] Add Chameleon v3 devicetree Content-Language: en-US To: =?UTF-8?Q?Pawe=c5=82_Anikiel?= , robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, amstan@chromium.org, upstream@semihalf.com References: <20220603092354.141927-1-pan@semihalf.com> From: Dinh Nguyen In-Reply-To: <20220603092354.141927-1-pan@semihalf.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 6/3/22 04:23, Paweł Anikiel wrote: > The Google Chameleon v3 is a board made for testing both video and audio > interfaces of external devices. It acts as a base board for the > Mercury+ AA1 module. > > socfpga_arria10_mercury_aa1.dtsi and socfpga_arria10_chameleonv3.dts > have also been sent to u-boot: > https://lists.denx.de/pipermail/u-boot/2022-May/485107.html > https://lists.denx.de/pipermail/u-boot/2022-May/485111.html > > v4 changes: > - remove enclustra,mercury-aa1 from Arria 10 boards in dt-bindings > > v3 changes: > - make seperate group for Chameleon v3 in dt-bindings > - add blank line after copyright header > > v2 changes: > - split first patch into three > - move sdmmc-ecc node to socfpga_arria10.dtsi (instead of removing it entirely) > - use generic names for dts node names > - keep the enclustra,mercury-aa1 compatible > > Paweł Anikiel (5): > ARM: dts: socfpga: Change Mercury+ AA1 dts to dtsi > ARM: dts: socfpga: Move sdmmc-ecc node to Arria 10 dts > ARM: dts: socfpga: Add atsha204a node to Mercury+ AA1 dts > ARM: dts: socfpga: Add Google Chameleon v3 devicetree > dt-bindings: altera: Add Chameleon v3 board > > .../devicetree/bindings/arm/altera.yaml | 9 +- > arch/arm/boot/dts/Makefile | 2 +- > arch/arm/boot/dts/socfpga_arria10.dtsi | 10 +++ > .../boot/dts/socfpga_arria10_chameleonv3.dts | 90 +++++++++++++++++++ > ...1.dts => socfpga_arria10_mercury_aa1.dtsi} | 48 ++-------- > 5 files changed, 117 insertions(+), 42 deletions(-) > create mode 100644 arch/arm/boot/dts/socfpga_arria10_chameleonv3.dts > rename arch/arm/boot/dts/{socfpga_arria10_mercury_aa1.dts => socfpga_arria10_mercury_aa1.dtsi} (70%) > Whole series applied! Thanks, Dinh