mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Overview: Intel(R) QuickAssist Technology (Intel(R) QAT) provides hardware acceleration for offloading security, authentication and compression services from the CPU, thus significantly increasing the performance and efficiency of standard platform solutions. This commit introduces: - Intel® 4xxx Series VF driver support. - Device configurability via sysctls. - UIO support for Intel® 4xxx Series devices. Patch co-authored by: Krzysztof Zdziarski <krzysztofx.zdziarski@intel.com> Patch co-authored by: Michal Gulbicki <michalx.gulbicki@intel.com> Patch co-authored by: Julian Grajkowski <julianx.grajkowski@intel.com> Patch co-authored by: Piotr Kasierski <piotrx.kasierski@intel.com> Patch co-authored by: Lukasz Kolodzinski <lukaszx.kolodzinski@intel.com> Patch co-authored by: Karol Grzadziel <karolx.grzadziel@intel.com> Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D39850
17 lines
468 B
C
17 lines
468 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/* Copyright(c) 2007-2023 Intel Corporation */
|
|
/* $FreeBSD$ */
|
|
#ifndef ADF_UIO_H
|
|
#define ADF_UIO_H
|
|
#include "adf_accel_devices.h"
|
|
|
|
struct qat_uio_bundle_dev {
|
|
u8 hardware_bundle_number;
|
|
struct adf_uio_control_bundle *bundle;
|
|
struct adf_uio_control_accel *accel;
|
|
};
|
|
|
|
int adf_uio_register(struct adf_accel_dev *accel_dev);
|
|
void adf_uio_remove(struct adf_accel_dev *accel_dev);
|
|
|
|
#endif /* end of include guard: ADF_UIO_H */
|