-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dpdk/ena: add ena driver v2.8.0 folder
- Loading branch information
Showing
18 changed files
with
13,974 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
1,876 changes: 1,876 additions & 0 deletions
1,876
userspace/dpdk/ena/base/ena_defs/ena_admin_defs.h
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* SPDX-License-Identifier: BSD-3-Clause | ||
* Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates. | ||
* All rights reserved. | ||
*/ | ||
|
||
#ifndef _ENA_COMMON_H_ | ||
#define _ENA_COMMON_H_ | ||
|
||
#define ENA_COMMON_SPEC_VERSION_MAJOR 2 | ||
#define ENA_COMMON_SPEC_VERSION_MINOR 0 | ||
|
||
/* ENA operates with 48-bit memory addresses. ena_mem_addr_t */ | ||
struct ena_common_mem_addr { | ||
uint32_t mem_addr_low; | ||
|
||
uint16_t mem_addr_high; | ||
|
||
/* MBZ */ | ||
uint16_t reserved16; | ||
}; | ||
|
||
#endif /* _ENA_COMMON_H_ */ |
Oops, something went wrong.