a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1780939235; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=hl05PxPWKHsh1eqMVwOK1xSVKz48YTYY48stguT65Z8=; b=f30SqoyCP04dz7kx3b466Pa2MfGKUGEe7Y1tkPh2wCP+o9nldGP+Q6XBbWafxBYojVJCVb fb1r2M/VKW+L7ZcqRyqFoO+ps5lNQpRKZEcA59mtO6IesbhVTloJ0SYBFR43b0LwlkaHFx QUiaGmQtgfR4qIeCM46P4CwNYQnY1JepqZpjFvW51kYUkwFSutKVqgLlBUYR6/1HvdQtA2 Zsct9lEIIJqwr/ctNu6EspxD1ERREi6SeI94JTj2ykjMUYT9r10OUTObJrHupLdedCgViN ZTnqougpriilZZSOHims4HFPPKCzsbOkOL7C8uf8Xgxuhs4WN94zHG3wdHZBiw== Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) by mxrelay.nyi.freebsd.org (Postfix) with ESMTP id 4gYzMR3lY1zxTf for ; Mon, 08 Jun 2026 17:20:35 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from git (uid 1279) (envelope-from git@FreeBSD.org) id 30e38 by gitrepo.freebsd.org (DragonFly Mail Agent v0.13+ on gitrepo.freebsd.org); Mon, 08 Jun 2026 17:20:35 +0000 To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Cc: Koine Yuusuke From: Ed Maste Subject: git: 04cee2a1727e - stable/15 - intelhfi: Add IA32_PM_ENABLE bit flag define List-Id: Commits to the stable branches of the FreeBSD src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-branches List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-src-branches@freebsd.org Sender: owner-dev-commits-src-branches@FreeBSD.org List-Id: List-Post: List-Help: List-Subscribe: List-Unsubscribe: List-Owner: Precedence: list MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: emaste X-Git-Repository: src X-Git-Refname: refs/heads/stable/15 X-Git-Reftype: branch X-Git-Commit: 04cee2a1727ea9e5b0ad20b5c4b36d8b5859ae49 Auto-Submitted: auto-generated Date: Mon, 08 Jun 2026 17:20:35 +0000 Message-Id: <6a26f9e3.30e38.58e978f9@gitrepo.freebsd.org> The branch stable/15 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=04cee2a1727ea9e5b0ad20b5c4b36d8b5859ae49 commit 04cee2a1727ea9e5b0ad20b5c4b36d8b5859ae49 Author: Koine Yuusuke AuthorDate: 2026-05-17 15:58:41 +0000 Commit: Ed Maste CommitDate: 2026-06-08 17:20:15 +0000 intelhfi: Add IA32_PM_ENABLE bit flag define Reviewed by: Minsoo Choo Differential Revision: https://reviews.freebsd.org/D56919 (cherry picked from commit 436f47a80c20a4d8395d30f81684b2d5dd35991e) --- sys/x86/include/specialreg.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/x86/include/specialreg.h b/sys/x86/include/specialreg.h index f14c8c56d0e3..7933291a752e 100644 --- a/sys/x86/include/specialreg.h +++ b/sys/x86/include/specialreg.h @@ -903,6 +903,9 @@ /* MSR IA32_MCU_OPT_CTRL */ #define IA32_RNGDS_MITG_DIS 0x00000001 +/* MSR IA32_PM_ENABLE */ +#define IA32_PM_ENABLE_HWP_ENABLE (1ULL << 0) + /* MSR IA32_HWP_CAPABILITIES */ #define IA32_HWP_CAPABILITIES_HIGHEST_PERFORMANCE(x) (((x) >> 0) & 0xff) #define IA32_HWP_CAPABILITIES_GUARANTEED_PERFORMANCE(x) (((x) >> 8) & 0xff)