Skip to content

Commit

Permalink
tools arch x86: Add Intel SDSi provisiong tool
Browse files Browse the repository at this point in the history
Add tool for key certificate and activation payload provisioning on
Intel CPUs supporting Software Defined Silicon (SDSi).

Signed-off-by: David E. Box <david.e.box@linux.intel.com>
Link: https://lore.kernel.org/r/20220225012457.1661574-1-david.e.box@linux.intel.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
  • Loading branch information
David E. Box authored and Hans de Goede committed Mar 2, 2022
1 parent faabb26 commit f6d92cf
Show file tree
Hide file tree
Showing 3 changed files with 580 additions and 0 deletions.
1 change: 1 addition & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -9881,6 +9881,7 @@ INTEL SDSI DRIVER
M: David E. Box <david.e.box@linux.intel.com>
S: Supported
F: drivers/platform/x86/intel/sdsi.c
F: tools/arch/x86/intel_sdsi/

INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
M: Daniel Scally <djrscally@gmail.com>
Expand Down
21 changes: 21 additions & 0 deletions tools/arch/x86/intel_sdsi/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# SPDX-License-Identifier: GPL-2.0
# Makefile for Intel Software Defined Silicon provisioning tool

intel_sdsi: intel_sdsi.c

CFLAGS = -Wextra

BINDIR ?= /usr/sbin

override CFLAGS += -O2 -Wall

%: %.c
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)

.PHONY : clean
clean :
@rm -f intel_sdsi

install : intel_sdsi
install -d $(DESTDIR)$(BINDIR)
install -m 755 -p intel_sdsi $(DESTDIR)$(BINDIR)/intel_sdsi
Loading

0 comments on commit f6d92cf

Please sign in to comment.