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 1ED41C48BF8 for ; Thu, 22 Feb 2024 09:09:56 +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=LWGifj/iOHCrdGk0F7OUyAM2gx4Rw+TqmSRQ8beLS5g=; b=BsJnHcTuCqMHb3 n9x4buBQmLjyZouEmjeIutXH+BcAKvIhrgaCZT+cMeeHpcUdpaPnO32YQciAiugJOonFcr/wCf3Y1 JDXY14fpIivZiZEAMCgoQ6V/Fs6pnWGKDb27Sr4wNTVgRejsT70CitNOiIPad7kAwOrcP1tbgsjOp VK4sqCV2CmeuVStyrQehCktxoKGppa9Ncuz7hN2EymVQaJkx8HMiq4dmp67fzu5hFMeTDpymuyCz2 Utp93uhMwy6C8jR8fS9QYinG7+pF0eTlPckTa+xPVO3xoZGg6WI+P62slrBzm5LIsLmu87cWfDuAp SCATkcKEJy/T44MnwlXQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rd55H-00000004B5r-3HMu; Thu, 22 Feb 2024 09:09:39 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rd55E-00000004B5S-1tlL for linux-arm-kernel@lists.infradead.org; Thu, 22 Feb 2024 09:09:37 +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 544561007; Thu, 22 Feb 2024 01:10:11 -0800 (PST) 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 A6D8C3F766; Thu, 22 Feb 2024 01:09:31 -0800 (PST) From: Sudeep Holla To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Cristian Marussi Cc: Sudeep Holla , vincent.guittot@linaro.org, peng.fan@oss.nxp.com, michal.simek@amd.com, quic_sibis@quicinc.com, quic_nkela@quicinc.com, souvik.chakravarty@arm.com Subject: Re: [PATCH 00/11] Add SCMI core checks for notification support. Date: Thu, 22 Feb 2024 09:09:23 +0000 Message-ID: <170859289755.107527.12693501284171395498.b4-ty@arm.com> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240212123233.1230090-1-cristian.marussi@arm.com> References: <20240212123233.1230090-1-cristian.marussi@arm.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240222_010936_555644_8BC2F7BA X-CRM114-Status: GOOD ( 10.45 ) 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 Mon, 12 Feb 2024 12:32:22 +0000, Cristian Marussi wrote: > this small series adds a new logic into the SCMI core to implicitly check > for notification support when some SCMI driver attempts to register for > notifications. > > Till now, trying to register a notifier for an unsuppported notification > returned an error and this behaviour generated unneeded message exchanges: > the only way to avoid this was to lookup in advance the specific protocol > and resources available in order to avoid registering at all any notifier > where not supported. > > [...] Applied to sudeep.holla/linux (for-next/scmi/updates), thanks! [01/11] firmware: arm_scmi: Check for notification support https://git.kernel.org/sudeep.holla/c/8733e86a80f5 [02/11] firmware: arm_scmi: Add a common helper to check if a message is supported https://git.kernel.org/sudeep.holla/c/637b6d6cae9c [03/11] firmware: arm_scmi: Implement Perf .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/120d26312abc [04/11] firmware: arm_scmi: Implement Power .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/b7e400bc2e2d [05/11] firmware: arm_scmi: Implement SysPower .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/9f5ddbc22225 [06/11] firmware: arm_scmi: Implement Clock .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/cf1bba2775ec [07/11] firmware: arm_scmi: Implement Sensor .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/7ac7932df247 [08/11] firmware: arm_scmi: Implement Reset .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/12d6a03f3224 [09/11] firmware: arm_scmi: Implement Powercap .is_notify_supported callback https://git.kernel.org/sudeep.holla/c/e85beaf76080 [10/11] firmware: arm_scmi: Use opps_by_lvl to store opps https://git.kernel.org/sudeep.holla/c/23443a3c7c0c [11/11] firmware: arm_scmi: Report frequencies in Perf notifications https://git.kernel.org/sudeep.holla/c/22ffc748a647 -- Regards, Sudeep _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel