Imported Upstream version 16.11
[deb_dpdk.git] / lib / librte_eal / linuxapp / kni / ethtool / igb / e1000_osdep.h
1 /*******************************************************************************
2
3   Intel(R) Gigabit Ethernet Linux driver
4   Copyright(c) 2007-2013 Intel Corporation.
5
6   This program is free software; you can redistribute it and/or modify it
7   under the terms and conditions of the GNU General Public License,
8   version 2, as published by the Free Software Foundation.
9
10   This program is distributed in the hope it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13   more details.
14
15   You should have received a copy of the GNU General Public License along with
16   this program; if not, write to the Free Software Foundation, Inc.,
17   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19   The full GNU General Public License is included in this distribution in
20   the file called "LICENSE.GPL".
21
22   Contact Information:
23   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26 *******************************************************************************/
27
28
29 /* glue for the OS independent part of e1000
30  * includes register access macros
31  */
32
33 #ifndef _E1000_OSDEP_H_
34 #define _E1000_OSDEP_H_
35
36 #include <linux/pci.h>
37 #include <linux/delay.h>
38 #include <linux/interrupt.h>
39 #include <linux/if_ether.h>
40 #include <linux/sched.h>
41 #include "kcompat.h"
42
43 #ifndef __INTEL_COMPILER
44 #pragma GCC diagnostic ignored "-Wunused-function"
45 #endif
46
47 #define usec_delay(x) udelay(x)
48 #define usec_delay_irq(x) udelay(x)
49 #ifndef msec_delay
50 #define msec_delay(x) do { \
51         /* Don't mdelay in interrupt context! */ \
52         if (in_interrupt()) \
53                 BUG(); \
54         else \
55                 msleep(x); \
56 } while (0)
57
58 /* Some workarounds require millisecond delays and are run during interrupt
59  * context.  Most notably, when establishing link, the phy may need tweaking
60  * but cannot process phy register reads/writes faster than millisecond
61  * intervals...and we establish link due to a "link status change" interrupt.
62  */
63 #define msec_delay_irq(x) mdelay(x)
64 #endif
65
66 #define PCI_COMMAND_REGISTER   PCI_COMMAND
67 #define CMD_MEM_WRT_INVALIDATE PCI_COMMAND_INVALIDATE
68 #define ETH_ADDR_LEN           ETH_ALEN
69
70 #ifdef __BIG_ENDIAN
71 #define E1000_BIG_ENDIAN __BIG_ENDIAN
72 #endif
73
74
75 #ifdef DEBUG
76 #define DEBUGOUT(S) printk(KERN_DEBUG S)
77 #define DEBUGOUT1(S, A...) printk(KERN_DEBUG S, ## A)
78 #else
79 #define DEBUGOUT(S)
80 #define DEBUGOUT1(S, A...)
81 #endif
82
83 #ifdef DEBUG_FUNC
84 #define DEBUGFUNC(F) DEBUGOUT(F "\n")
85 #else
86 #define DEBUGFUNC(F)
87 #endif
88 #define DEBUGOUT2 DEBUGOUT1
89 #define DEBUGOUT3 DEBUGOUT2
90 #define DEBUGOUT7 DEBUGOUT3
91
92 #define E1000_REGISTER(a, reg) reg
93
94 #define E1000_WRITE_REG(a, reg, value) ( \
95     writel((value), ((a)->hw_addr + E1000_REGISTER(a, reg))))
96
97 #define E1000_READ_REG(a, reg) (readl((a)->hw_addr + E1000_REGISTER(a, reg)))
98
99 #define E1000_WRITE_REG_ARRAY(a, reg, offset, value) ( \
100     writel((value), ((a)->hw_addr + E1000_REGISTER(a, reg) + ((offset) << 2))))
101
102 #define E1000_READ_REG_ARRAY(a, reg, offset) ( \
103     readl((a)->hw_addr + E1000_REGISTER(a, reg) + ((offset) << 2)))
104
105 #define E1000_READ_REG_ARRAY_DWORD E1000_READ_REG_ARRAY
106 #define E1000_WRITE_REG_ARRAY_DWORD E1000_WRITE_REG_ARRAY
107
108 #define E1000_WRITE_REG_ARRAY_WORD(a, reg, offset, value) ( \
109     writew((value), ((a)->hw_addr + E1000_REGISTER(a, reg) + ((offset) << 1))))
110
111 #define E1000_READ_REG_ARRAY_WORD(a, reg, offset) ( \
112     readw((a)->hw_addr + E1000_REGISTER(a, reg) + ((offset) << 1)))
113
114 #define E1000_WRITE_REG_ARRAY_BYTE(a, reg, offset, value) ( \
115     writeb((value), ((a)->hw_addr + E1000_REGISTER(a, reg) + (offset))))
116
117 #define E1000_READ_REG_ARRAY_BYTE(a, reg, offset) ( \
118     readb((a)->hw_addr + E1000_REGISTER(a, reg) + (offset)))
119
120 #define E1000_WRITE_REG_IO(a, reg, offset) do { \
121     outl(reg, ((a)->io_base));                  \
122     outl(offset, ((a)->io_base + 4));      } while (0)
123
124 #define E1000_WRITE_FLUSH(a) E1000_READ_REG(a, E1000_STATUS)
125
126 #define E1000_WRITE_FLASH_REG(a, reg, value) ( \
127     writel((value), ((a)->flash_address + reg)))
128
129 #define E1000_WRITE_FLASH_REG16(a, reg, value) ( \
130     writew((value), ((a)->flash_address + reg)))
131
132 #define E1000_READ_FLASH_REG(a, reg) (readl((a)->flash_address + reg))
133
134 #define E1000_READ_FLASH_REG16(a, reg) (readw((a)->flash_address + reg))
135
136 #endif /* _E1000_OSDEP_H_ */