]> git.droids-corp.org - dpdk.git/commitdiff
net/ena/base: use 48-bit memory addresses
authorMichal Krawczyk <mk@semihalf.com>
Wed, 8 Apr 2020 08:29:04 +0000 (10:29 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 21 Apr 2020 11:57:07 +0000 (13:57 +0200)
ENA device is using 48-bit memory for IO. Because of that, the upper
limit had to be updated.

From the driver perspective, it's just a cosmetic change to make
definition of the structure 'ena_common_mem_addr' more descriptive and
the address value was verified anyway for the valid range in the
function 'ena_com_mem_addr_set()'.

Signed-off-by: Michal Krawczyk <mk@semihalf.com>
Reviewed-by: Igor Chauskin <igorch@amazon.com>
Reviewed-by: Guy Tzalik <gtzalik@amazon.com>
drivers/net/ena/base/ena_com.c
drivers/net/ena/base/ena_defs/ena_common_defs.h

index f128d3c4f34aaaa9036c8c14117663d0fe1050a2..4968054a99702b13a6783150181cd1d410005de0 100644 (file)
@@ -73,7 +73,7 @@ static int ena_com_mem_addr_set(struct ena_com_dev *ena_dev,
        }
 
        ena_addr->mem_addr_low = lower_32_bits(addr);
-       ena_addr->mem_addr_high = upper_32_bits(addr);
+       ena_addr->mem_addr_high = (u16)upper_32_bits(addr);
 
        return 0;
 }
index 1818c29a87412e32560b81ee0fbb97821df07f0c..d1ee40de326d7bfdcc1fafc3296280d58dedcc1e 100644 (file)
@@ -1,5 +1,5 @@
 /* SPDX-License-Identifier: BSD-3-Clause
- * Copyright (c) 2015-2019 Amazon.com, Inc. or its affiliates.
+ * Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates.
  * All rights reserved.
  */
 
@@ -9,10 +9,14 @@
 #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;
 
-       uint32_t mem_addr_high;
+       uint16_t mem_addr_high;
+
+       /* MBZ */
+       uint16_t reserved16;
 };
 
 #endif /* _ENA_COMMON_H_ */