Skip to content

Commit 36c46ca

Browse files
ostrH. Peter Anvin
authored andcommitted
x86, microcode, AMD: Add support for family 16h processors
Add valid patch size for family 16h processors. [ hpa: promoting to urgent/stable since it is hw enabling and trivial ] Signed-off-by: Boris Ostrovsky <boris.ostrovsky@amd.com> Acked-by: Andreas Herrmann <herrmann.der.user@googlemail.com> Link: http://lkml.kernel.org/r/1353004910-2204-1-git-send-email-boris.ostrovsky@amd.com Signed-off-by: H. Peter Anvin <hpa@linux.intel.com> Cc: <stable@vger.kernel.org>
1 parent cb57a2b commit 36c46ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

arch/x86/kernel/microcode_amd.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ static unsigned int verify_patch_size(int cpu, u32 patch_size,
190190
#define F1XH_MPB_MAX_SIZE 2048
191191
#define F14H_MPB_MAX_SIZE 1824
192192
#define F15H_MPB_MAX_SIZE 4096
193+
#define F16H_MPB_MAX_SIZE 3458
193194

194195
switch (c->x86) {
195196
case 0x14:
@@ -198,6 +199,9 @@ static unsigned int verify_patch_size(int cpu, u32 patch_size,
198199
case 0x15:
199200
max_size = F15H_MPB_MAX_SIZE;
200201
break;
202+
case 0x16:
203+
max_size = F16H_MPB_MAX_SIZE;
204+
break;
201205
default:
202206
max_size = F1XH_MPB_MAX_SIZE;
203207
break;

0 commit comments

Comments
 (0)