2020-04-17 16:13:05 +00:00
|
|
|
# IDXD Driver {#idxd}
|
|
|
|
|
2021-08-02 12:27:54 +00:00
|
|
|
## Public Interface {#idxd_interface}
|
2020-04-17 16:13:05 +00:00
|
|
|
|
|
|
|
- spdk/idxd.h
|
|
|
|
|
2021-08-02 12:27:54 +00:00
|
|
|
## Key Functions {#idxd_key_functions}
|
2020-04-17 16:13:05 +00:00
|
|
|
|
|
|
|
Function | Description
|
|
|
|
--------------------------------------- | -----------
|
|
|
|
spdk_idxd_probe() | @copybrief spdk_idxd_probe()
|
|
|
|
spdk_idxd_submit_copy() | @copybrief spdk_idxd_submit_copy()
|
2020-04-30 22:07:58 +00:00
|
|
|
spdk_idxd_submit_compare() | @copybrief spdk_idxd_submit_compare()
|
|
|
|
spdk_idxd_submit_crc32c() | @copybrief spdk_idxd_submit_crc32c()
|
|
|
|
spdk_idxd_submit_dualcast | @copybrief spdk_idxd_submit_dualcast()
|
2020-04-17 16:13:05 +00:00
|
|
|
spdk_idxd_submit_fill() | @copybrief spdk_idxd_submit_fill()
|
|
|
|
|
2022-05-20 15:33:50 +00:00
|
|
|
## Kernel vs User {#idxd_configs}
|
2020-04-17 16:13:05 +00:00
|
|
|
|
2022-05-20 15:33:50 +00:00
|
|
|
The low level library can be initialized either directly via `spdk_idxd_set_config`,
|
|
|
|
passing in a value of `true` indicates that the IDXD kernel driver is loaded and
|
|
|
|
that SPDK will use work queue(s) surfaced by the driver. Passing in `false` means
|
|
|
|
that the SPDK user space driver will be used to initialize the hardware.
|