mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
The ISSEI (Intel Silicon Security Engine Interface) subsystem provides a communication channel between the host and the Silicon Security Engine. Prepare basic driver functions and character device for user-space communication. Add DMA access routines for ISSEI HECI devices. Add of DMA-related structures and implementation of routines for setting up DMA, as well as reading and writing DMA buffers. 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-1-f590038678f9@intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17 lines
463 B
C
17 lines
463 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2023-2026 Intel Corporation */
|
|
#ifndef _ISSEI_CDEV_H_
|
|
#define _ISSEI_CDEV_H_
|
|
|
|
struct device;
|
|
struct issei_device;
|
|
struct issei_dma_length;
|
|
struct issei_hw_ops;
|
|
|
|
struct issei_device *issei_register(size_t hw_size, struct device *parent,
|
|
const struct issei_dma_length *dma_length,
|
|
const struct issei_hw_ops *ops);
|
|
void issei_deregister(struct issei_device *idev);
|
|
|
|
#endif /* _ISSEI_CDEV_H_ */
|