mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 02:10:45 -05: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
12 lines
342 B
C
12 lines
342 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/* Copyright(c) 2007-2023 Intel Corporation */
|
|
/* $FreeBSD$ */
|
|
#ifndef ADF_CFG_SYSCTL_H_
|
|
#define ADF_CFG_SYSCTL_H_
|
|
|
|
#include "adf_accel_devices.h"
|
|
|
|
int adf_cfg_sysctl_add(struct adf_accel_dev *accel_dev);
|
|
void adf_cfg_sysctl_remove(struct adf_accel_dev *accel_dev);
|
|
|
|
#endif /* ADF_CFG_SYSCTL_H_ */
|