Skip to content

Commit

Permalink
dpdk/ena: add ena driver v2.8.0 folder
Browse files Browse the repository at this point in the history
  • Loading branch information
shaibran committed Nov 1, 2023
1 parent 0fe4513 commit 8734667
Show file tree
Hide file tree
Showing 18 changed files with 13,974 additions and 0 deletions.
3,354 changes: 3,354 additions & 0 deletions userspace/dpdk/ena/base/ena_com.c

Large diffs are not rendered by default.

1,200 changes: 1,200 additions & 0 deletions userspace/dpdk/ena/base/ena_com.h

Large diffs are not rendered by default.

1,876 changes: 1,876 additions & 0 deletions userspace/dpdk/ena/base/ena_defs/ena_admin_defs.h

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions userspace/dpdk/ena/base/ena_defs/ena_common_defs.h
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_ */
Loading

0 comments on commit 8734667

Please sign in to comment.