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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6F0C9CE7A89 for ; Mon, 25 Sep 2023 09:40:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=w0GN77RJN6K15O+ZMlYOCecegJ6vZ8/CETH+2G1FUOQ=; b=Fpff0fPDpPmfLM 5c+qLFsw1cPww+uhazWWPybSTwIbCKrvZIClNDiL4ilx03Le2vtoLdKrtIO1gsUhuVzVQYMeXfvm9 sixMFtu4t+lFHvUlqi+NWi9+oCxzDZZVwylRBUpB+GeAs46qgsWDCdm4GcASik1Ghdq3+6CKi0VIR Si9hcaXRFCr9UsQn1xOdUifI2+7WgJm6pxXWL7h/C2VZHMXPsJbGAooVNn1tVZvIeWakw895FO8hy sBR+G5OQo0DCZ9dfzuly/ixelk/ZYZcwmKFHCulmayGQ2QE7huSFHKvDIbhhMiGLKf9UORM5B/moW 0tig8EYXyTIIjCzMc9fg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qki4N-00DsGc-09; Mon, 25 Sep 2023 09:39:59 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qki4J-00DsFx-0k for linux-arm-kernel@lists.infradead.org; Mon, 25 Sep 2023 09:39:57 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 71DDCDA7; Mon, 25 Sep 2023 02:40:27 -0700 (PDT) Received: from usa.arm.com (e103737-lin.cambridge.arm.com [10.1.197.49]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id BC4FE3F5A1; Mon, 25 Sep 2023 02:39:47 -0700 (PDT) From: Sudeep Holla To: Cristian Marussi , Viresh Kumar , Nishanth Menon , Stephen Boyd , Ulf Hansson Cc: Sudeep Holla , Nikunj Kela , Prasad Sodagudi , Alexandre Torgue , linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 00/13] arm_scmi/cpufreq: Add generic performance scaling support Date: Mon, 25 Sep 2023 10:39:45 +0100 Message-ID: <169563470105.3833803.2257916927365455980.b4-ty@arm.com> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230825112633.236607-1-ulf.hansson@linaro.org> References: <20230825112633.236607-1-ulf.hansson@linaro.org> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230925_023955_339026_1BB95001 X-CRM114-Status: GOOD ( 12.19 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, 25 Aug 2023 13:26:20 +0200, Ulf Hansson wrote: > Changes in v3: > - Re-based upon the for-next/scmi/updates branch. > - Re-ordered some of the patches in the series, to eas review. > - Added some new DT doc patches in the series, according to comments. > - Fixed other comments, see version history for each patch. > > Changes in v2: > - Split up the series, to get the basic support in place as the first > step. The part that remains is the integration with the OPP library, to > allow consumer drivers to change performance level using the OPP lib. > - Re-based on top v6.5-rc1. > - Other changes will be described for each patch. > > [...] Applied to sudeep.holla/linux (for-next/scmi/updates), thanks! [01/13] firmware: arm_scmi: Extend perf protocol ops to get number of domains https://git.kernel.org/sudeep.holla/c/e9090e70e618 [02/13] firmware: arm_scmi: Extend perf protocol ops to get information of a domain https://git.kernel.org/sudeep.holla/c/3d99ed60721b [03/13] cpufreq: scmi: Prepare to move OF parsing of domain-id to cpufreq https://git.kernel.org/sudeep.holla/c/e336baa4193e [04/13] firmware: arm_scmi: Align perf ops to use domain-id as in-parameter https://git.kernel.org/sudeep.holla/c/39dfa5b9e1f0 [05/13] firmware: arm_scmi: Drop redundant ->device_domain_id() from perf ops https://git.kernel.org/sudeep.holla/c/9b578d83629e [06/13] cpufreq: scmi: Avoid one OF parsing in scmi_get_sharing_cpus() https://git.kernel.org/sudeep.holla/c/4f1f0bc8ed16 [08/13] dt-bindings: arm: cpus: Add a power-domain-name for a performance-domain https://git.kernel.org/sudeep.holla/c/6e429adc60b1 [09/13] dt-bindings: firmware: arm,scmi: Extend bindings for protocol@13 https://git.kernel.org/sudeep.holla/c/e11c480b6df1 [10/13] dt-bindings: power: Clarify performance capabilities of power-domains https://git.kernel.org/sudeep.holla/c/0ead1f3e158c [11/13] cpufreq: scmi: Add support to parse domain-id using #power-domain-cells https://git.kernel.org/sudeep.holla/c/92b2028b00ff [12/13] PM: domains: Allow genpd providers to manage OPP tables directly by its FW https://git.kernel.org/sudeep.holla/c/3dd91515ef43 -- Regards, Sudeep _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel