e1000: fix big endian access
authorXuelin Shi <xuelin.shi@freescale.com>
Thu, 12 Feb 2015 01:26:52 +0000 (09:26 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 20 Feb 2015 10:44:52 +0000 (11:44 +0100)
e1000 is little endian, but cpu maybe not.
add necessary conversions.

rte_cpu_to_le_32(...) for PCI write
rte_le_to_cpu_32(...) for PCI read.

Signed-off-by: Xuelin Shi <xuelin.shi@freescale.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_pmd_e1000/e1000/e1000_osdep.h

index 438641e..d04ec73 100644 (file)
@@ -43,6 +43,7 @@
 #include <rte_cycles.h>
 #include <rte_log.h>
 #include <rte_debug.h>
+#include <rte_byteorder.h>
 
 #include "../e1000_logs.h"
 
@@ -96,7 +97,7 @@ typedef int           bool;
 #define E1000_PCI_REG(reg) (*((volatile uint32_t *)(reg)))
 
 #define E1000_PCI_REG_WRITE(reg, value) do { \
-       E1000_PCI_REG((reg)) = (value); \
+       E1000_PCI_REG((reg)) = (rte_cpu_to_le_32(value)); \
 } while (0)
 
 #define E1000_PCI_REG_ADDR(hw, reg) \
@@ -107,7 +108,7 @@ typedef int         bool;
 
 static inline uint32_t e1000_read_addr(volatile void* addr)
 {
-       return E1000_PCI_REG(addr);
+       return rte_le_to_cpu_32(E1000_PCI_REG(addr));
 }
 
 /* Necessary defines */