Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/dev/axgbe/xgbe-drv.c
39507 views
1
/*
2
* AMD 10Gb Ethernet driver
3
*
4
* Copyright (c) 2014-2016,2020 Advanced Micro Devices, Inc.
5
*
6
* This file is available to you under your choice of the following two
7
* licenses:
8
*
9
* License 1: GPLv2
10
*
11
* This file is free software; you may copy, redistribute and/or modify
12
* it under the terms of the GNU General Public License as published by
13
* the Free Software Foundation, either version 2 of the License, or (at
14
* your option) any later version.
15
*
16
* This file is distributed in the hope that it will be useful, but
17
* WITHOUT ANY WARRANTY; without even the implied warranty of
18
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19
* General Public License for more details.
20
*
21
* You should have received a copy of the GNU General Public License
22
* along with this program. If not, see <http://www.gnu.org/licenses/>.
23
*
24
* This file incorporates work covered by the following copyright and
25
* permission notice:
26
* The Synopsys DWC ETHER XGMAC Software Driver and documentation
27
* (hereinafter "Software") is an unsupported proprietary work of Synopsys,
28
* Inc. unless otherwise expressly agreed to in writing between Synopsys
29
* and you.
30
*
31
* The Software IS NOT an item of Licensed Software or Licensed Product
32
* under any End User Software License Agreement or Agreement for Licensed
33
* Product with Synopsys or any supplement thereto. Permission is hereby
34
* granted, free of charge, to any person obtaining a copy of this software
35
* annotated with this license and the Software, to deal in the Software
36
* without restriction, including without limitation the rights to use,
37
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies
38
* of the Software, and to permit persons to whom the Software is furnished
39
* to do so, subject to the following conditions:
40
*
41
* The above copyright notice and this permission notice shall be included
42
* in all copies or substantial portions of the Software.
43
*
44
* THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
45
* BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
46
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
47
* PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
48
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
49
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
50
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
51
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
52
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
53
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
54
* THE POSSIBILITY OF SUCH DAMAGE.
55
*
56
*
57
* License 2: Modified BSD
58
*
59
* Redistribution and use in source and binary forms, with or without
60
* modification, are permitted provided that the following conditions are met:
61
* * Redistributions of source code must retain the above copyright
62
* notice, this list of conditions and the following disclaimer.
63
* * Redistributions in binary form must reproduce the above copyright
64
* notice, this list of conditions and the following disclaimer in the
65
* documentation and/or other materials provided with the distribution.
66
* * Neither the name of Advanced Micro Devices, Inc. nor the
67
* names of its contributors may be used to endorse or promote products
68
* derived from this software without specific prior written permission.
69
*
70
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
71
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
72
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
73
* ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
74
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
75
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
76
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
77
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
78
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
79
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
80
*
81
* This file incorporates work covered by the following copyright and
82
* permission notice:
83
* The Synopsys DWC ETHER XGMAC Software Driver and documentation
84
* (hereinafter "Software") is an unsupported proprietary work of Synopsys,
85
* Inc. unless otherwise expressly agreed to in writing between Synopsys
86
* and you.
87
*
88
* The Software IS NOT an item of Licensed Software or Licensed Product
89
* under any End User Software License Agreement or Agreement for Licensed
90
* Product with Synopsys or any supplement thereto. Permission is hereby
91
* granted, free of charge, to any person obtaining a copy of this software
92
* annotated with this license and the Software, to deal in the Software
93
* without restriction, including without limitation the rights to use,
94
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies
95
* of the Software, and to permit persons to whom the Software is furnished
96
* to do so, subject to the following conditions:
97
*
98
* The above copyright notice and this permission notice shall be included
99
* in all copies or substantial portions of the Software.
100
*
101
* THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
102
* BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
103
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
104
* PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
105
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
106
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
107
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
108
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
109
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
110
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
111
* THE POSSIBILITY OF SUCH DAMAGE.
112
*/
113
114
#include <sys/cdefs.h>
115
#include "xgbe.h"
116
#include "xgbe-common.h"
117
118
int
119
xgbe_calc_rx_buf_size(if_t netdev, unsigned int mtu)
120
{
121
unsigned int rx_buf_size;
122
123
if (mtu > XGMAC_JUMBO_PACKET_MTU)
124
return (-EINVAL);
125
126
rx_buf_size = mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
127
rx_buf_size = min(max(rx_buf_size, XGBE_RX_MIN_BUF_SIZE), PAGE_SIZE);
128
rx_buf_size = (rx_buf_size + XGBE_RX_BUF_ALIGN - 1) &
129
~(XGBE_RX_BUF_ALIGN - 1);
130
131
return (rx_buf_size);
132
}
133
134
void
135
xgbe_get_all_hw_features(struct xgbe_prv_data *pdata)
136
{
137
unsigned int mac_hfr0, mac_hfr1, mac_hfr2;
138
struct xgbe_hw_features *hw_feat = &pdata->hw_feat;
139
140
DBGPR("-->xgbe_get_all_hw_features\n");
141
142
mac_hfr0 = XGMAC_IOREAD(pdata, MAC_HWF0R);
143
mac_hfr1 = XGMAC_IOREAD(pdata, MAC_HWF1R);
144
mac_hfr2 = XGMAC_IOREAD(pdata, MAC_HWF2R);
145
146
memset(hw_feat, 0, sizeof(*hw_feat));
147
148
hw_feat->version = XGMAC_IOREAD(pdata, MAC_VR);
149
150
/* Hardware feature register 0 */
151
hw_feat->gmii = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, GMIISEL);
152
hw_feat->vlhash = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, VLHASH);
153
hw_feat->sma = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, SMASEL);
154
hw_feat->rwk = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, RWKSEL);
155
hw_feat->mgk = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, MGKSEL);
156
hw_feat->mmc = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, MMCSEL);
157
hw_feat->aoe = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, ARPOFFSEL);
158
hw_feat->ts = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, TSSEL);
159
hw_feat->eee = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, EEESEL);
160
hw_feat->tx_coe = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, TXCOESEL);
161
hw_feat->rx_coe = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, RXCOESEL);
162
hw_feat->addn_mac = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R,
163
ADDMACADRSEL);
164
hw_feat->ts_src = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, TSSTSSEL);
165
hw_feat->sa_vlan_ins = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, SAVLANINS);
166
hw_feat->vxn = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, VXN);
167
168
/* Hardware feature register 1 */
169
hw_feat->rx_fifo_size = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
170
RXFIFOSIZE);
171
hw_feat->tx_fifo_size = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
172
TXFIFOSIZE);
173
hw_feat->adv_ts_hi = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, ADVTHWORD);
174
hw_feat->dma_width = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, ADDR64);
175
hw_feat->dcb = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, DCBEN);
176
hw_feat->sph = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, SPHEN);
177
hw_feat->tso = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, TSOEN);
178
hw_feat->dma_debug = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, DBGMEMA);
179
hw_feat->rss = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, RSSEN);
180
hw_feat->tc_cnt = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, NUMTC);
181
hw_feat->hash_table_size = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
182
HASHTBLSZ);
183
hw_feat->l3l4_filter_num = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
184
L3L4FNUM);
185
186
/* Hardware feature register 2 */
187
hw_feat->rx_q_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, RXQCNT);
188
hw_feat->tx_q_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, TXQCNT);
189
hw_feat->rx_ch_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, RXCHCNT);
190
hw_feat->tx_ch_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, TXCHCNT);
191
hw_feat->pps_out_num = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, PPSOUTNUM);
192
hw_feat->aux_snap_num = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, AUXSNAPNUM);
193
194
/* Translate the Hash Table size into actual number */
195
switch (hw_feat->hash_table_size) {
196
case 0:
197
break;
198
case 1:
199
hw_feat->hash_table_size = 64;
200
break;
201
case 2:
202
hw_feat->hash_table_size = 128;
203
break;
204
case 3:
205
hw_feat->hash_table_size = 256;
206
break;
207
}
208
209
/* Translate the address width setting into actual number */
210
switch (hw_feat->dma_width) {
211
case 0:
212
hw_feat->dma_width = 32;
213
break;
214
case 1:
215
hw_feat->dma_width = 40;
216
break;
217
case 2:
218
hw_feat->dma_width = 48;
219
break;
220
default:
221
hw_feat->dma_width = 32;
222
}
223
224
/* The Queue, Channel and TC counts are zero based so increment them
225
* to get the actual number
226
*/
227
hw_feat->rx_q_cnt++;
228
hw_feat->tx_q_cnt++;
229
hw_feat->rx_ch_cnt++;
230
hw_feat->tx_ch_cnt++;
231
hw_feat->tc_cnt++;
232
233
/* Translate the fifo sizes into actual numbers */
234
hw_feat->rx_fifo_size = 1 << (hw_feat->rx_fifo_size + 7);
235
hw_feat->tx_fifo_size = 1 << (hw_feat->tx_fifo_size + 7);
236
DBGPR("%s: Tx fifo 0x%x Rx fifo 0x%x\n", __func__,
237
hw_feat->tx_fifo_size, hw_feat->rx_fifo_size);
238
239
DBGPR("Hardware features:\n");
240
241
/* Hardware feature register 0 */
242
DBGPR(" 1GbE support : %s\n",
243
hw_feat->gmii ? "yes" : "no");
244
DBGPR(" VLAN hash filter : %s\n",
245
hw_feat->vlhash ? "yes" : "no");
246
DBGPR(" MDIO interface : %s\n",
247
hw_feat->sma ? "yes" : "no");
248
DBGPR(" Wake-up packet support : %s\n",
249
hw_feat->rwk ? "yes" : "no");
250
DBGPR(" Magic packet support : %s\n",
251
hw_feat->mgk ? "yes" : "no");
252
DBGPR(" Management counters : %s\n",
253
hw_feat->mmc ? "yes" : "no");
254
DBGPR(" ARP offload : %s\n",
255
hw_feat->aoe ? "yes" : "no");
256
DBGPR(" IEEE 1588-2008 Timestamp : %s\n",
257
hw_feat->ts ? "yes" : "no");
258
DBGPR(" Energy Efficient Ethernet : %s\n",
259
hw_feat->eee ? "yes" : "no");
260
DBGPR(" TX checksum offload : %s\n",
261
hw_feat->tx_coe ? "yes" : "no");
262
DBGPR(" RX checksum offload : %s\n",
263
hw_feat->rx_coe ? "yes" : "no");
264
DBGPR(" Additional MAC addresses : %u\n",
265
hw_feat->addn_mac);
266
DBGPR(" Timestamp source : %s\n",
267
(hw_feat->ts_src == 1) ? "internal" :
268
(hw_feat->ts_src == 2) ? "external" :
269
(hw_feat->ts_src == 3) ? "internal/external" : "n/a");
270
DBGPR(" SA/VLAN insertion : %s\n",
271
hw_feat->sa_vlan_ins ? "yes" : "no");
272
273
/* Hardware feature register 1 */
274
DBGPR(" RX fifo size : %u\n",
275
hw_feat->rx_fifo_size);
276
DBGPR(" TX fifo size : %u\n",
277
hw_feat->tx_fifo_size);
278
DBGPR(" IEEE 1588 high word : %s\n",
279
hw_feat->adv_ts_hi ? "yes" : "no");
280
DBGPR(" DMA width : %u\n",
281
hw_feat->dma_width);
282
DBGPR(" Data Center Bridging : %s\n",
283
hw_feat->dcb ? "yes" : "no");
284
DBGPR(" Split header : %s\n",
285
hw_feat->sph ? "yes" : "no");
286
DBGPR(" TCP Segmentation Offload : %s\n",
287
hw_feat->tso ? "yes" : "no");
288
DBGPR(" Debug memory interface : %s\n",
289
hw_feat->dma_debug ? "yes" : "no");
290
DBGPR(" Receive Side Scaling : %s\n",
291
hw_feat->rss ? "yes" : "no");
292
DBGPR(" Traffic Class count : %u\n",
293
hw_feat->tc_cnt);
294
DBGPR(" Hash table size : %u\n",
295
hw_feat->hash_table_size);
296
DBGPR(" L3/L4 Filters : %u\n",
297
hw_feat->l3l4_filter_num);
298
299
/* Hardware feature register 2 */
300
DBGPR(" RX queue count : %u\n",
301
hw_feat->rx_q_cnt);
302
DBGPR(" TX queue count : %u\n",
303
hw_feat->tx_q_cnt);
304
DBGPR(" RX DMA channel count : %u\n",
305
hw_feat->rx_ch_cnt);
306
DBGPR(" TX DMA channel count : %u\n",
307
hw_feat->rx_ch_cnt);
308
DBGPR(" PPS outputs : %u\n",
309
hw_feat->pps_out_num);
310
DBGPR(" Auxiliary snapshot inputs : %u\n",
311
hw_feat->aux_snap_num);
312
313
DBGPR("<--xgbe_get_all_hw_features\n");
314
}
315
316
void
317
xgbe_init_tx_coalesce(struct xgbe_prv_data *pdata)
318
{
319
struct xgbe_hw_if *hw_if = &pdata->hw_if;
320
321
DBGPR("-->xgbe_init_tx_coalesce\n");
322
323
pdata->tx_usecs = XGMAC_INIT_DMA_TX_USECS;
324
pdata->tx_frames = XGMAC_INIT_DMA_TX_FRAMES;
325
326
hw_if->config_tx_coalesce(pdata);
327
328
DBGPR("<--xgbe_init_tx_coalesce\n");
329
}
330
331
void
332
xgbe_init_rx_coalesce(struct xgbe_prv_data *pdata)
333
{
334
struct xgbe_hw_if *hw_if = &pdata->hw_if;
335
336
DBGPR("-->xgbe_init_rx_coalesce\n");
337
338
pdata->rx_riwt = hw_if->usec_to_riwt(pdata, XGMAC_INIT_DMA_RX_USECS);
339
pdata->rx_usecs = XGMAC_INIT_DMA_RX_USECS;
340
pdata->rx_frames = XGMAC_INIT_DMA_RX_FRAMES;
341
342
hw_if->config_rx_coalesce(pdata);
343
344
DBGPR("<--xgbe_init_rx_coalesce\n");
345
}
346
347