WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / ethernet / amazon / ena / ena_common_defs.h
blobe210c8a81fc0edf2e6dda4fb6bce7dde137f4ced
1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2 /*
3 * Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All rights reserved.
4 */
5 #ifndef _ENA_COMMON_H_
6 #define _ENA_COMMON_H_
8 #define ENA_COMMON_SPEC_VERSION_MAJOR 2
9 #define ENA_COMMON_SPEC_VERSION_MINOR 0
11 /* ENA operates with 48-bit memory addresses. ena_mem_addr_t */
12 struct ena_common_mem_addr {
13 u32 mem_addr_low;
15 u16 mem_addr_high;
17 /* MBZ */
18 u16 reserved16;
21 #endif /* _ENA_COMMON_H_ */