3e4e9ba0f64d2530f196f00bd55be380673eddb6
[dpdk.git] / drivers / net / sfc / base / efx_check.h
1 /*
2  * Copyright (c) 2012-2016 Solarflare Communications Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
24  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * The views and conclusions contained in the software and documentation are
27  * those of the authors and should not be interpreted as representing official
28  * policies, either expressed or implied, of the FreeBSD Project.
29  */
30
31 #ifndef _SYS_EFX_CHECK_H
32 #define _SYS_EFX_CHECK_H
33
34 #include "efsys.h"
35
36 /*
37  * Check that the efsys.h header in client code has a valid combination of
38  * EFSYS_OPT_xxx options.
39  *
40  * NOTE: Keep checks for obsolete options here to ensure that they are removed
41  * from client code (and do not reappear in merges from other branches).
42  */
43
44 #ifdef EFSYS_OPT_FALCON
45 # error "FALCON is obsolete and is not supported."
46 #endif
47
48 #if EFSYS_OPT_CHECK_REG
49 /* Verify chip implements accessed registers */
50 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
51 #  error "CHECK_REG requires SIENA or HUNTINGTON or MEDFORD"
52 # endif
53 #endif /* EFSYS_OPT_CHECK_REG */
54
55 #if EFSYS_OPT_DECODE_INTR_FATAL
56 /* Decode fatal errors */
57 # if !EFSYS_OPT_SIENA
58 #  error "INTR_FATAL requires SIENA"
59 # endif
60 #endif /* EFSYS_OPT_DECODE_INTR_FATAL */
61
62 #if EFSYS_OPT_DIAG
63 /* Support diagnostic hardware tests */
64 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
65 #  error "DIAG requires SIENA or HUNTINGTON or MEDFORD"
66 # endif
67 #endif /* EFSYS_OPT_DIAG */
68
69 #if EFSYS_OPT_EV_PREFETCH
70 /* Support optimized EVQ data access */
71 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
72 #  error "EV_PREFETCH requires SIENA or HUNTINGTON or MEDFORD"
73 # endif
74 #endif /* EFSYS_OPT_EV_PREFETCH */
75
76 #ifdef EFSYS_OPT_FALCON_NIC_CFG_OVERRIDE
77 # error "FALCON_NIC_CFG_OVERRIDE is obsolete and is not supported."
78 #endif
79
80 #if EFSYS_OPT_FILTER
81 /* Support hardware packet filters */
82 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
83 #  error "FILTER requires SIENA or HUNTINGTON or MEDFORD"
84 # endif
85 #endif /* EFSYS_OPT_FILTER */
86
87 #if (EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
88 # if !EFSYS_OPT_FILTER
89 #  error "HUNTINGTON or MEDFORD requires FILTER"
90 # endif
91 #endif /* EFSYS_OPT_HUNTINGTON */
92
93 #if EFSYS_OPT_LOOPBACK
94 /* Support hardware loopback modes */
95 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
96 #  error "LOOPBACK requires SIENA or HUNTINGTON or MEDFORD"
97 # endif
98 #endif /* EFSYS_OPT_LOOPBACK */
99
100 #ifdef EFSYS_OPT_MAC_FALCON_GMAC
101 # error "MAC_FALCON_GMAC is obsolete and is not supported."
102 #endif
103
104 #ifdef EFSYS_OPT_MAC_FALCON_XMAC
105 # error "MAC_FALCON_XMAC is obsolete and is not supported."
106 #endif
107
108 #if EFSYS_OPT_MAC_STATS
109 /* Support MAC statistics */
110 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
111 #  error "MAC_STATS requires SIENA or HUNTINGTON or MEDFORD"
112 # endif
113 #endif /* EFSYS_OPT_MAC_STATS */
114
115 #if EFSYS_OPT_MCDI
116 /* Support management controller messages */
117 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
118 #  error "MCDI requires SIENA or HUNTINGTON or MEDFORD"
119 # endif
120 #endif /* EFSYS_OPT_MCDI */
121
122 #if (EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
123 # if !EFSYS_OPT_MCDI
124 #  error "SIENA or HUNTINGTON or MEDFORD requires MCDI"
125 # endif
126 #endif
127
128 #if EFSYS_OPT_MCDI_LOGGING
129 /* Support MCDI logging */
130 # if !EFSYS_OPT_MCDI
131 #  error "MCDI_LOGGING requires MCDI"
132 # endif
133 #endif /* EFSYS_OPT_MCDI_LOGGING */
134
135 #if EFSYS_OPT_MCDI_PROXY_AUTH
136 /* Support MCDI proxy authorization */
137 # if !EFSYS_OPT_MCDI
138 #  error "MCDI_PROXY_AUTH requires MCDI"
139 # endif
140 #endif /* EFSYS_OPT_MCDI_PROXY_AUTH */
141
142 #ifdef EFSYS_OPT_MON_LM87
143 # error "MON_LM87 is obsolete and is not supported."
144 #endif
145
146 #ifdef EFSYS_OPT_MON_MAX6647
147 # error "MON_MAX6647 is obsolete and is not supported."
148 #endif
149
150 #ifdef EFSYS_OPT_MON_NULL
151 # error "MON_NULL is obsolete and is not supported."
152 #endif
153
154 #ifdef EFSYS_OPT_MON_SIENA
155 #  error "MON_SIENA is obsolete (replaced by MON_MCDI)."
156 #endif
157
158 #ifdef EFSYS_OPT_MON_HUNTINGTON
159 #  error "MON_HUNTINGTON is obsolete (replaced by MON_MCDI)."
160 #endif
161
162 #if EFSYS_OPT_MON_STATS
163 /* Support monitor statistics (voltage/temperature) */
164 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
165 #  error "MON_STATS requires SIENA or HUNTINGTON or MEDFORD"
166 # endif
167 #endif /* EFSYS_OPT_MON_STATS */
168
169 #if EFSYS_OPT_NAMES
170 /* Support printable names for statistics */
171 # if !(EFSYS_OPT_LOOPBACK || EFSYS_OPT_MAC_STATS || EFSYS_OPT_MCDI || \
172         EFSYS_MON_STATS || EFSYS_OPT_PHY_STATS || EFSYS_OPT_QSTATS)
173 #  error "NAMES requires LOOPBACK or xxxSTATS or MCDI"
174 # endif
175 #endif /* EFSYS_OPT_NAMES */
176
177 #ifdef EFSYS_OPT_NVRAM_FALCON_BOOTROM
178 # error "NVRAM_FALCON_BOOTROM is obsolete and is not supported."
179 #endif
180
181 #ifdef EFSYS_OPT_NVRAM_SFT9001
182 # error "NVRAM_SFT9001 is obsolete and is not supported."
183 #endif
184
185 #ifdef EFSYS_OPT_NVRAM_SFX7101
186 # error "NVRAM_SFX7101 is obsolete and is not supported."
187 #endif
188
189 #ifdef EFSYS_OPT_PCIE_TUNE
190 # error "PCIE_TUNE is obsolete and is not supported."
191 #endif
192
193 #ifdef EFSYS_OPT_PHY_BIST
194 # error "PHY_BIST is obsolete (replaced by BIST)."
195 #endif
196
197 #if EFSYS_OPT_PHY_FLAGS
198 /* Support PHY flags */
199 # if !EFSYS_OPT_SIENA
200 #  error "PHY_FLAGS requires SIENA"
201 # endif
202 #endif /* EFSYS_OPT_PHY_FLAGS */
203
204 #if EFSYS_OPT_PHY_LED_CONTROL
205 /* Support for PHY LED control */
206 # if !EFSYS_OPT_SIENA
207 #  error "PHY_LED_CONTROL requires SIENA"
208 # endif
209 #endif /* EFSYS_OPT_PHY_LED_CONTROL */
210
211 #ifdef EFSYS_OPT_PHY_NULL
212 # error "PHY_NULL is obsolete and is not supported."
213 #endif
214
215 #ifdef EFSYS_OPT_PHY_PM8358
216 # error "PHY_PM8358 is obsolete and is not supported."
217 #endif
218
219 #ifdef EFSYS_OPT_PHY_PROPS
220 # error "PHY_PROPS is obsolete and is not supported."
221 #endif
222
223 #ifdef EFSYS_OPT_PHY_QT2022C2
224 # error "PHY_QT2022C2 is obsolete and is not supported."
225 #endif
226
227 #ifdef EFSYS_OPT_PHY_QT2025C
228 # error "PHY_QT2025C is obsolete and is not supported."
229 #endif
230
231 #ifdef EFSYS_OPT_PHY_SFT9001
232 # error "PHY_SFT9001 is obsolete and is not supported."
233 #endif
234
235 #ifdef EFSYS_OPT_PHY_SFX7101
236 # error "PHY_SFX7101 is obsolete and is not supported."
237 #endif
238
239 #if EFSYS_OPT_PHY_STATS
240 /* Support PHY statistics */
241 # if !EFSYS_OPT_SIENA
242 #  error "PHY_STATS requires SIENA"
243 # endif
244 #endif /* EFSYS_OPT_PHY_STATS */
245
246 #ifdef EFSYS_OPT_PHY_TXC43128
247 # error "PHY_TXC43128 is obsolete and is not supported."
248 #endif
249
250 #if EFSYS_OPT_QSTATS
251 /* Support EVQ/RXQ/TXQ statistics */
252 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
253 #  error "QSTATS requires SIENA or HUNTINGTON or MEDFORD"
254 # endif
255 #endif /* EFSYS_OPT_QSTATS */
256
257 #ifdef EFSYS_OPT_RX_HDR_SPLIT
258 # error "RX_HDR_SPLIT is obsolete and is not supported"
259 #endif
260
261 #if EFSYS_OPT_RX_SCALE
262 /* Support receive scaling (RSS) */
263 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
264 #  error "RX_SCALE requires SIENA or HUNTINGTON or MEDFORD"
265 # endif
266 #endif /* EFSYS_OPT_RX_SCALE */
267
268 #if EFSYS_OPT_RX_SCATTER
269 /* Support receive scatter DMA */
270 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
271 #  error "RX_SCATTER requires SIENA or HUNTINGTON or MEDFORD"
272 # endif
273 #endif /* EFSYS_OPT_RX_SCATTER */
274
275 #ifdef EFSYS_OPT_STAT_NAME
276 # error "STAT_NAME is obsolete (replaced by NAMES)."
277 #endif
278
279 #ifdef EFSYS_OPT_WOL
280 # error "WOL is obsolete and is not supported"
281 #endif /* EFSYS_OPT_WOL */
282
283 #ifdef EFSYS_OPT_MCAST_FILTER_LIST
284 #  error "MCAST_FILTER_LIST is obsolete and is not supported"
285 #endif
286
287 #if EFSYS_OPT_BIST
288 /* Support BIST */
289 # if !(EFSYS_OPT_SIENA || EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD)
290 #  error "BIST requires SIENA or HUNTINGTON or MEDFORD"
291 # endif
292 #endif /* EFSYS_OPT_BIST */
293
294 #if EFSYS_OPT_ALLOW_UNCONFIGURED_NIC
295 /* Support adapters with missing static config (for factory use only) */
296 # if !EFSYS_OPT_MEDFORD
297 #  error "ALLOW_UNCONFIGURED_NIC requires MEDFORD"
298 # endif
299 #endif /* EFSYS_OPT_ALLOW_UNCONFIGURED_NIC */
300
301 #endif /* _SYS_EFX_CHECK_H */