2022-06-03 19:15:11 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2018-06-12 23:31:20 +00:00
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2020-02-05 17:10:05 +00:00
|
|
|
#ifndef SPDK_ACCEL_ENGINE_IOAT_H
|
|
|
|
#define SPDK_ACCEL_ENGINE_IOAT_H
|
2018-06-12 23:31:20 +00:00
|
|
|
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
|
|
|
|
#define IOAT_MAX_CHANNELS 64
|
|
|
|
|
2020-02-05 17:10:05 +00:00
|
|
|
void accel_engine_ioat_enable_probe(void);
|
2018-06-12 23:31:20 +00:00
|
|
|
|
2020-02-05 17:10:05 +00:00
|
|
|
#endif /* SPDK_ACCEL_ENGINE_IOAT_H */
|