From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 34BF12FC871; Fri, 10 Oct 2025 16:56:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760115366; cv=none; b=A+/2uF6xj2BaKlcKp9P6FeiJHEmxrxUyb2LRIwlXkyp1/tPQrYhmHgR7N+4OvV0tLUgwzbqJ5QaD4qjXkEZ/d/tfJCeaqN0xo8PeGS6Wye/rrNeNNsPhXv4vDRQx2D+hGGNF+IKeig/Quaqe3v8zP7i6Sd+ooJCtLPXm2ACg6Gk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760115366; c=relaxed/simple; bh=du1V5fP9P1xTh4uuxPbOyHM+ClzPyNcMQTT/BLE0hi4=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=mWwKNr/C/tY6LSjptRmNgz2alSui+FFb2BFrw78Wbioxze9JlgFQiQEMTy+HroMsw82JKbaWRhqxT4ynp90oSZzVlLNiohumQ0csLnytizV2XierJnnrSBoz1KmWaywwhx30CdaJsi5tKPkJlq9XVStB4UyEdxR5c47QBOjswXQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com 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 B2FA81596; Fri, 10 Oct 2025 09:55:54 -0700 (PDT) Received: from [10.1.197.69] (eglon.cambridge.arm.com [10.1.197.69]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 557333F66E; Fri, 10 Oct 2025 09:55:57 -0700 (PDT) Message-ID: <5d2b762c-f189-48fc-8ec8-c8bbc316122a@arm.com> Date: Fri, 10 Oct 2025 17:55:54 +0100 Precedence: bulk X-Mailing-List: linux-acpi@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 05/29] arm64: kconfig: Add Kconfig entry for MPAM To: Fenghua Yu , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-acpi@vger.kernel.org Cc: D Scott Phillips OS , carl@os.amperecomputing.com, lcherian@marvell.com, bobo.shaobowang@huawei.com, tan.shaopeng@fujitsu.com, baolin.wang@linux.alibaba.com, Jamie Iles , Xin Hao , peternewman@google.com, dfustini@baylibre.com, amitsinght@marvell.com, David Hildenbrand , Dave Martin , Koba Ko , Shanker Donthineni , baisheng.gao@unisoc.com, Jonathan Cameron , Rob Herring , Rohit Mathew , Rafael Wysocki , Len Brown , Lorenzo Pieralisi , Hanjun Guo , Sudeep Holla , Catalin Marinas , Will Deacon , Greg Kroah-Hartman , Danilo Krummrich References: <20250910204309.20751-1-james.morse@arm.com> <20250910204309.20751-6-james.morse@arm.com> <378ae328-089d-4f81-b48b-b5edac7515ed@nvidia.com> Content-Language: en-GB From: James Morse In-Reply-To: <378ae328-089d-4f81-b48b-b5edac7515ed@nvidia.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi Fenghua, On 02/10/2025 06:06, Fenghua Yu wrote: > On 9/10/25 13:42, James Morse wrote: >> The bulk of the MPAM driver lives outside the arch code because it >> largely manages MMIO devices that generate interrupts. The driver >> needs a Kconfig symbol to enable it. As MPAM is only found on arm64 >> platforms, the arm64 tree is the most natural home for the Kconfig >> option. >> >> This Kconfig option will later be used by the arch code to enable >> or disable the MPAM context-switch code, and to register properties >> of CPUs with the MPAM driver. >> >> Signed-off-by: James Morse >> Reviewed-by: Jonathan Cameron >> CC: Dave Martin > > Reviewed-by: Fenghua Yu Thanks! James