From mboxrd@z Thu Jan 1 00:00:00 1970 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 D8FA231E0F8; Mon, 18 Aug 2025 13:35:58 +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=1755524158; cv=none; b=MnfF4vMr/I6iNEzqDpM0H+A2DcNftu8ksJ5U+Ni2GLwow0nJCn1kN9DIJs5ClUID7AgVafDC+aOpwGCJNAchq5hUUNuCxunME5ZGQ7B6P79w5xPGkdv4zeAHOyZQKWCQ0ECXFZqZxP+bFSkcB+VAf6r27CkDtnU9AA6wkBrSQYU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755524158; c=relaxed/simple; bh=TROAZPoJgFZhfFSHfsGifs/IHDrb43B8ckoy9rHSj6I=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gXXOPObDUlAep2gu8uzXKrQYMNU1CySh6/FJCdyjleVidK3wDbgxtp+5IOQvpgMtEci6Lz0SXUDMY1z1hvxuJLECP1XoAQlcE5cC7qNNOt80DExHWNIm0fYNJ6P9dRLNesheOuV8uDpnmOhxk7Sw4FNQf2FVvVJhZv5wB4NPlWY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=OUQhFNxm; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="OUQhFNxm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 480C2C4CEEB; Mon, 18 Aug 2025 13:35:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755524158; bh=TROAZPoJgFZhfFSHfsGifs/IHDrb43B8ckoy9rHSj6I=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OUQhFNxmbi21p+b5VD+w4xVwQd0olxQ3H3YppHPcjIH8iOSpKvpWfooRtFpP8W/jZ QMeUtk0AL2vWOaiUXHVPgLqUZ1Sonp1kI0DUQefruWpEk1BfcuQqgc07hLDJxBWMVw 3EIzRFpblH6dbW7FFiDJZfgAwG4I5I0Hcg7ZUUAM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Tom Lendacky , Mario Limonciello , Herbert Xu , Sasha Levin Subject: [PATCH 6.15 385/515] crypto: ccp - Add missing bootloader info reg for pspv6 Date: Mon, 18 Aug 2025 14:46:11 +0200 Message-ID: <20250818124513.238418071@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250818124458.334548733@linuxfoundation.org> References: <20250818124458.334548733@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Mario Limonciello [ Upstream commit aaeff14688d0254b39731d9bb303c79bfd610f7d ] The bootloader info reg for pspv6 is the same as pspv4 and pspv5. Suggested-by: Tom Lendacky Signed-off-by: Mario Limonciello Signed-off-by: Herbert Xu Signed-off-by: Sasha Levin --- drivers/crypto/ccp/sp-pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/crypto/ccp/sp-pci.c b/drivers/crypto/ccp/sp-pci.c index 2ebc878da160..224edaaa737b 100644 --- a/drivers/crypto/ccp/sp-pci.c +++ b/drivers/crypto/ccp/sp-pci.c @@ -451,6 +451,7 @@ static const struct psp_vdata pspv6 = { .cmdresp_reg = 0x10944, /* C2PMSG_17 */ .cmdbuff_addr_lo_reg = 0x10948, /* C2PMSG_18 */ .cmdbuff_addr_hi_reg = 0x1094c, /* C2PMSG_19 */ + .bootloader_info_reg = 0x109ec, /* C2PMSG_59 */ .feature_reg = 0x109fc, /* C2PMSG_63 */ .inten_reg = 0x10510, /* P2CMSG_INTEN */ .intsts_reg = 0x10514, /* P2CMSG_INTSTS */ -- 2.39.5