mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 17:42:03 +02:00
Add support for the ISSEI (Intel Silicon Security Engine Interface) HECI PCI devices. Add the necessary PCI handling routines, hardware definitions, register mappings and hardware access routines. This enables the communication via HECI PCI device advertized by BIOS. Reviewed-by: Karol Wachowski <karol.wachowski@linux.intel.com> Co-developed-by: Vitaly Lubart <lubvital@gmail.com> Signed-off-by: Vitaly Lubart <lubvital@gmail.com> Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com> Link: https://patch.msgid.link/20260513-issei-for-upstream-v1-4-f590038678f9@intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
416 B
Makefile
16 lines
416 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023-2026 Intel Corporation
|
|
ccflags-y += -DDEFAULT_SYMBOL_NAMESPACE='"INTEL_SSEI"'
|
|
|
|
obj-$(CONFIG_INTEL_SSEI) += issei.o
|
|
issei-objs += cdev.o
|
|
issei-objs += dma.o
|
|
issei-objs += fw_client.o
|
|
issei-objs += host_client.o
|
|
issei-objs += ham.o
|
|
issei-objs += main.o
|
|
|
|
obj-$(CONFIG_INTEL_SSEI_HW_HECI) += issei-heci.o
|
|
issei-heci-objs := pci_heci.o
|
|
issei-heci-objs += hw_heci.o
|