8000 DSA: Refine the Readme adding pre-conditions by ysun · Pull Request #462 · intel/lkvs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

DSA: Refine the Readme adding pre-conditions #462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions BM/dsa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ networking, persistent memory, and various data processing applications. IAA is
a similar accelerator which is more focused on data encryption and decryption.
DSA and IAA share the same Linux Kernel driver “IDXD”

## dependencies
### Kenrel Configuration
Please check if `CONFIG_DMATEST=m` is configured.

### Kernel Commandline
Make sure the kernel commandline has the following options:
```
intel_iommu=on,sm_on
```

### BIOS dependencies
Please check if the following BIOS options are enabled:
```
EDKII -> Socket Configuration -> IIO Configuration -> Intel VT for Directed I/O (VT-d) -> Intel VT for Directed I/O -> Enable

EDKII -> Socket Configuration -> IIO Configuration -> Intel VT for Directed I/O (VT-d) ->Opt-out Illegal MSI Mitigation -> Enable
```

## Usage
IDXD is the DSA driver name and enabled after kernel 5.19, it is better to do tests
newer than that.
Expand Down
0