mbox series

[v5,0/4] x86/xen-ucode: Introduce --force option

Message ID 20240712130749.1272741-1-fouad.hilly@cloud.com (mailing list archive)
Headers show
Series x86/xen-ucode: Introduce --force option | expand

Message

Fouad Hilly July 12, 2024, 1:07 p.m. UTC
Refactor and introduce --force option to xen-ucode, which skips microcode
version check when updating x86 CPU micocode. A new hypercall introduced
with flags field to facilitate the new option and allow for future flags
as needed.
This change is required to enable developers to load ucode that is the same version as the
one already loaded or downgrade for testing.

Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>

Fouad Hilly (4):
  x86/ucode: Introduce XENPF_microcode_update2 with flags parameter
  x86/ucode: refactor xen-ucode to utilize getopt
  x86/ucode: Introduce --force option to xen-ucode
  x86/ucode: Utilize ucode_force and remove opt_ucode_allow_same

 docs/misc/xen-command-line.pandoc    |   7 +-
 tools/include/xenctrl.h              |   3 +-
 tools/libs/ctrl/xc_misc.c            |  12 ++--
 tools/misc/xen-ucode.c               |  63 +++++++++++++---
 xen/arch/x86/cpu/microcode/amd.c     |   8 ++-
 xen/arch/x86/cpu/microcode/core.c    | 104 +++++++++++++++++----------
 xen/arch/x86/cpu/microcode/intel.c   |   9 ++-
 xen/arch/x86/cpu/microcode/private.h |   5 +-
 xen/arch/x86/include/asm/microcode.h |   3 +-
 xen/arch/x86/platform_hypercall.c    |  13 +++-
 xen/include/public/platform.h        |  14 ++++
 11 files changed, 172 insertions(+), 69 deletions(-)