From patchwork Tue Feb 18 19:08:11 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mario Limonciello X-Patchwork-Id: 866347 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AABD726FDAE; Tue, 18 Feb 2025 19:08:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739905734; cv=none; b=ooRQ2ojgmL+ksK/KraQf/2N+K8ZMvObn4/2yr6hz16tMG6U8/3I01FEw3w2g1sdA5dAvbKvjrEVsMbkRAbIVdryzydelq0Ryn9FGSiFjl7Ef06EHXcgTsPsZf6W4jrfiEuyJXkzLsUzfEQtTQWVSCjjNWON8kMaPdmj5DMnJPcM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739905734; c=relaxed/simple; bh=9qaXcaBCFsKmd+V7XAdrwxOKh1ZrVcJwI/csElZRrAM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Uyn5oMMYei7JJMwghs9vtsVkuw7u6HArqjz2SScf3P8JNe1w2yKXedzVOpx8+DwyOEUXqV7caufg/ahgVZ5p8tZPoOgvX9421TCTu7eXpNwqBNxjXDC9Ec6jbj3lWnpvaCsEcLRvilD0RaS+YzIf1XnmZrgsNB10o9kMjREKFfk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=skXq7J+4; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="skXq7J+4" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 55DF2C4CEE4; Tue, 18 Feb 2025 19:08:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1739905734; bh=9qaXcaBCFsKmd+V7XAdrwxOKh1ZrVcJwI/csElZRrAM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=skXq7J+4D5ECdBf+r2sCIi7s8l85kK9m5GWbJNb9130USnBCV8aohAIP6VDhFV0Yp JLo2R+bdCG9JKJU5DSitQp8p3LJH4M9v10oAF2rBs9OP25+fPRSJDMWspnCyaWhRi6 zGwpseTiOgcZ7WXDmZuhYG0lL+pEjv0gXHxj70NRtk/JknuWqA0TF24G2bkhvgHDvC HgoOUrasPQFn87xMuEmUI7fO24/L/nUKE96Xbpuv1loiT8eXFS+2G6nF9uI+VJHT/g mexnB+rADzNK5ehtK+LiYZaaKWxshc7lvcWwKn3CGURxLtMUhC0WaiWLM0WHt2VbhS QHyvumJY1pWvQ== From: Mario Limonciello To: Hans de Goede , =?utf-8?q?Ilpo_J=C3=A4rvinen?= Cc: Mario Limonciello , Perry Yuan , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org (maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT)), "H . Peter Anvin" , Jonathan Corbet , Huang Rui , "Gautham R . Shenoy" , "Rafael J . Wysocki" , Viresh Kumar , platform-driver-x86@vger.kernel.org (open list:AMD HETERO CORE HARDWARE FEEDBACK DRIVER), linux-kernel@vger.kernel.org (open list:X86 ARCHITECTURE (32-BIT AND 64-BIT)), linux-doc@vger.kernel.org (open list:DOCUMENTATION), linux-pm@vger.kernel.org (open list:AMD PSTATE DRIVER) Subject: [PATCH v8 02/13] MAINTAINERS: Add maintainer entry for AMD Hardware Feedback Driver Date: Tue, 18 Feb 2025 13:08:11 -0600 Message-ID: <20250218190822.1039982-3-superm1@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250218190822.1039982-1-superm1@kernel.org> References: <20250218190822.1039982-1-superm1@kernel.org> Precedence: bulk X-Mailing-List: linux-pm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Mario Limonciello Introduce the `amd_hfi` driver into the MAINTAINERS file. The driver will support AMD Heterogeneous Core design which provides hardware feedback to the OS scheduler. Moving forward, Mario will be responsible for the maintenance and Perry will assist on review of patches related to this driver. Signed-off-by: Mario Limonciello --- MAINTAINERS | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index efee40ea589f7..2c85c16d82770 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1098,6 +1098,15 @@ F: arch/x86/include/asm/amd_hsmp.h F: arch/x86/include/uapi/asm/amd_hsmp.h F: drivers/platform/x86/amd/hsmp/ +AMD HETERO CORE HARDWARE FEEDBACK DRIVER +M: Mario Limonciello +R: Perry Yuan +L: platform-driver-x86@vger.kernel.org +S: Supported +B: https://gitlab.freedesktop.org/drm/amd/-/issues +F: Documentation/arch/x86/amd-hfi.rst +F: drivers/platform/x86/amd/hfi/ + AMD IOMMU (AMD-VI) M: Joerg Roedel R: Suravee Suthikulpanit