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 91A37C54EB4 for ; Mon, 23 Jan 2023 14:17:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232039AbjAWORW (ORCPT ); Mon, 23 Jan 2023 09:17:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34872 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230267AbjAWORV (ORCPT ); Mon, 23 Jan 2023 09:17:21 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DDFFB211F; Mon, 23 Jan 2023 06:17:20 -0800 (PST) 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 847FCB80D2F; Mon, 23 Jan 2023 14:17:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1A6A8C433EF; Mon, 23 Jan 2023 14:17:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1674483438; bh=oARpShREgynxaPbK8Ov7RvXgvvHmNN/Z6I795Bq13vI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=iM+x2sLrGQKFJxuGbun9XAJPrr99iQ59q3Jx0fcAynZy2b5lTkdBDkKbmJDq0r4tq E4IsfP9bb/haM3BwuzSZayi2uue2+QcjJROHfTNdymVw954x9Ov9w/Yymu4whA0sPj oERESoDOFnYpYEsMq5Sq+xpdtRBgmc98aGk4KNeokrhD6N+Nk/vMAs+wXDdY1/TVPj VT9vNRtWEIXvR+H0y6NKSMQa5Co/M0DyozE/vuWEllFiHGP6q2gOpS8+3zHY36yN3a Eu951O1Xp8uEpge/KepBK7vAxMN4uzjz/5VY+9ZOSCb/BRPyZTd5il/Twfkwspekxq FfP1aAANnArug== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1pJxdL-0003cs-Mo; Mon, 23 Jan 2023 15:17:15 +0100 Date: Mon, 23 Jan 2023 15:17:15 +0100 From: Johan Hovold To: Abel Vesa Cc: Andy Gross , Bjorn Andersson , Konrad Dybcio , Lorenzo Pieralisi , Rob Herring , Krzysztof =?utf-8?Q?Wilczy=C5=84ski?= , Bjorn Helgaas , Krzysztof Kozlowski , Lorenzo Pieralisi , "vkoul@kernel.org" , Kishon Vijay Abraham I , Manivannan Sadhasivam , linux-arm-msm@vger.kernel.org, linux-pci@vger.kernel.org, linux-phy@lists.infradead.org, devicetree@vger.kernel.org, Linux Kernel Mailing List Subject: Re: [PATCH v4 11/12] arm64: dts: qcom: sm8550: Add PCIe PHYs and controllers nodes Message-ID: References: <20230119140453.3942340-1-abel.vesa@linaro.org> <20230119140453.3942340-12-abel.vesa@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Mon, Jan 23, 2023 at 03:11:40PM +0200, Abel Vesa wrote: > On 23-01-23 14:39:55, Abel Vesa wrote: > > On 23-01-23 09:51:20, Johan Hovold wrote: > > > On Thu, Jan 19, 2023 at 04:04:52PM +0200, Abel Vesa wrote: > > > > Add PCIe controllers and PHY nodes. > > > > > > > > Signed-off-by: Abel Vesa > > > > + clocks = <&gcc GCC_PCIE_0_AUX_CLK>, > > > > + <&gcc GCC_PCIE_0_CFG_AHB_CLK>, > > > > + <&gcc GCC_PCIE_0_MSTR_AXI_CLK>, > > > > + <&gcc GCC_PCIE_0_SLV_AXI_CLK>, > > > > + <&gcc GCC_PCIE_0_SLV_Q2A_AXI_CLK>, > > > > + <&gcc GCC_DDRSS_PCIE_SF_QTB_CLK>, > > > > + <&gcc GCC_AGGRE_NOC_PCIE_AXI_CLK>; > > > > + clock-names = "aux", > > > > + "cfg", > > > > + "bus_master", > > > > + "bus_slave", > > > > + "slave_q2a", > > > > + "ddrss_sf_tbu", > > > > > > You're reusing a clock name which doesn't seem to match this SoC. I > > > don't know what "QTB" refers to here and if it's just some Qualcomm > > > alternate name for "TBU" which could make this ok. > > > > I'll come back later with an answer here, once I know exactly what QTB > > means. > > So, AFAICT, they replaced the TBU with QTB, which basically does the > same thing. It is part of the SMMU. So, yes, it is just an alternate > name, at least from the clock point of view. Good, thanks for checking. Johan