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 CB3E9C43334 for ; Wed, 22 Jun 2022 13:11:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352459AbiFVNLM (ORCPT ); Wed, 22 Jun 2022 09:11:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60964 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352562AbiFVNLJ (ORCPT ); Wed, 22 Jun 2022 09:11:09 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6F5C522B12; Wed, 22 Jun 2022 06:11:08 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 0C74C619EC; Wed, 22 Jun 2022 13:11:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 66655C34114; Wed, 22 Jun 2022 13:11:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655903467; bh=PJzXe925HCqsYaa0YKzQGk6/8QcoNdNCI3+zoH4oCOw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Z28Ejs30GtBeePmJS4SvW7mW4DuI0E3OIXcbvfMWglYmkX4vTXF2Tf7R4dTNOoR+h XGe6lNq88FK8RORGj6TNsPQXZDdpb9Gl3rve+62Uo4wLb5ITFbXkwgPKuxZiCoRx64 xds5VDgmm2dQgBvwJ16YtWttHtXR+WXQmlMg50mmClzFPMvZkhvkKzwJij3n2GWKH9 vbdOZxh3JurBtFtFwWZToIy9wAXc/9QnZmAzzLpSeZWzEkikGEEbi2RbTEbcA3N+6S T9UtObpuwuVJRjMvQ52H4w4pWWFoZ4s/NCKU+D0cKVGPRFRS6gvUZNF46+LnXH1T2v O2P83DSIS7RmA== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1o408N-0006GG-ME; Wed, 22 Jun 2022 15:11:03 +0200 Date: Wed, 22 Jun 2022 15:11:03 +0200 From: Johan Hovold To: Bjorn Andersson Cc: Andy Gross , Krzysztof Kozlowski , Rob Herring , Manivannan Sadhasivam , Jassi Brar , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 5/6] arm64: dts: qcom: add SA8540P and ADP Message-ID: References: <20220622041224.627803-1-bjorn.andersson@linaro.org> <20220622041224.627803-6-bjorn.andersson@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220622041224.627803-6-bjorn.andersson@linaro.org> Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On Tue, Jun 21, 2022 at 09:12:23PM -0700, Bjorn Andersson wrote: > Introduce the Qualcomm SA8540P automotive platform and the SA8295P ADP > development board. > > The SA8540P and SC8280XP are fairly similar, so the SA8540P is built > ontop of the SC8280XP dtsi to reduce duplication. As more advanced > features are integrated this might be re-evaluated. > > This initial contribution supports SMP, CPUFreq, cluster idle, UFS, RPMh > regulators, debug UART, PMICs, remoteprocs (NSPs crashes shortly after > booting) and USB. > > The SA8295P ADP contains four PM8450 PMICs, which according to their > revid are compatible with PM8150. They are defined within the ADP for > now, to avoid creating additional .dtsi files for PM8150 with just > addresses changed - and to allow using the labels from the schematics. > > Signed-off-by: Bjorn Andersson > --- /dev/null > +++ b/arch/arm64/boot/dts/qcom/sa8295p-adp.dts > @@ -0,0 +1,427 @@ > +// SPDX-License-Identifier: BSD-3-Clause > +/* > + * Copyright (c) 2021, The Linux Foundation. All rights reserved. > + * Copyright (c) 2022, Linaro Limited > + */ > + > +/dts-v1/; > + > +#include > +#include > +#include Both of these are unused for ADP and should be removed. > +#include > +#include > + > +#include "sa8540p.dtsi" Johan