if_ixl.c revision 1.10 1 1.10 yamaguch /* $NetBSD: if_ixl.c,v 1.10 2019/12/20 02:04:26 yamaguchi Exp $ */
2 1.1 yamaguch
3 1.1 yamaguch /*
4 1.1 yamaguch * Copyright (c) 2013-2015, Intel Corporation
5 1.1 yamaguch * All rights reserved.
6 1.1 yamaguch
7 1.1 yamaguch * Redistribution and use in source and binary forms, with or without
8 1.1 yamaguch * modification, are permitted provided that the following conditions are met:
9 1.1 yamaguch *
10 1.1 yamaguch * 1. Redistributions of source code must retain the above copyright notice,
11 1.1 yamaguch * this list of conditions and the following disclaimer.
12 1.1 yamaguch *
13 1.1 yamaguch * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 yamaguch * notice, this list of conditions and the following disclaimer in the
15 1.1 yamaguch * documentation and/or other materials provided with the distribution.
16 1.1 yamaguch *
17 1.1 yamaguch * 3. Neither the name of the Intel Corporation nor the names of its
18 1.1 yamaguch * contributors may be used to endorse or promote products derived from
19 1.1 yamaguch * this software without specific prior written permission.
20 1.1 yamaguch *
21 1.1 yamaguch * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 1.1 yamaguch * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 yamaguch * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 yamaguch * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 1.1 yamaguch * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 1.1 yamaguch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 1.1 yamaguch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 1.1 yamaguch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 1.1 yamaguch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 1.1 yamaguch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 1.1 yamaguch * POSSIBILITY OF SUCH DAMAGE.
32 1.1 yamaguch */
33 1.1 yamaguch
34 1.1 yamaguch /*
35 1.1 yamaguch * Copyright (c) 2016,2017 David Gwynne <dlg (at) openbsd.org>
36 1.1 yamaguch *
37 1.1 yamaguch * Permission to use, copy, modify, and distribute this software for any
38 1.1 yamaguch * purpose with or without fee is hereby granted, provided that the above
39 1.1 yamaguch * copyright notice and this permission notice appear in all copies.
40 1.1 yamaguch *
41 1.1 yamaguch * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
42 1.1 yamaguch * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
43 1.1 yamaguch * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
44 1.1 yamaguch * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
45 1.1 yamaguch * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
46 1.1 yamaguch * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
47 1.1 yamaguch * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
48 1.1 yamaguch */
49 1.1 yamaguch
50 1.1 yamaguch /*
51 1.1 yamaguch * Copyright (c) 2019 Internet Initiative Japan, Inc.
52 1.1 yamaguch * All rights reserved.
53 1.1 yamaguch *
54 1.1 yamaguch * Redistribution and use in source and binary forms, with or without
55 1.1 yamaguch * modification, are permitted provided that the following conditions
56 1.1 yamaguch * are met:
57 1.1 yamaguch * 1. Redistributions of source code must retain the above copyright
58 1.1 yamaguch * notice, this list of conditions and the following disclaimer.
59 1.1 yamaguch * 2. Redistributions in binary form must reproduce the above copyright
60 1.1 yamaguch * notice, this list of conditions and the following disclaimer in the
61 1.1 yamaguch * documentation and/or other materials provided with the distribution.
62 1.1 yamaguch *
63 1.1 yamaguch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
64 1.1 yamaguch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
65 1.1 yamaguch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
66 1.1 yamaguch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
67 1.1 yamaguch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
68 1.1 yamaguch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
69 1.1 yamaguch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
70 1.1 yamaguch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
71 1.1 yamaguch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
72 1.1 yamaguch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
73 1.1 yamaguch * POSSIBILITY OF SUCH DAMAGE.
74 1.1 yamaguch */
75 1.1 yamaguch
76 1.1 yamaguch #include <sys/cdefs.h>
77 1.1 yamaguch
78 1.1 yamaguch #ifdef _KERNEL_OPT
79 1.1 yamaguch #include "opt_net_mpsafe.h"
80 1.1 yamaguch #endif
81 1.1 yamaguch
82 1.1 yamaguch #include <sys/param.h>
83 1.1 yamaguch #include <sys/types.h>
84 1.1 yamaguch
85 1.1 yamaguch #include <sys/cpu.h>
86 1.1 yamaguch #include <sys/device.h>
87 1.1 yamaguch #include <sys/evcnt.h>
88 1.1 yamaguch #include <sys/interrupt.h>
89 1.1 yamaguch #include <sys/kmem.h>
90 1.1 yamaguch #include <sys/malloc.h>
91 1.1 yamaguch #include <sys/module.h>
92 1.1 yamaguch #include <sys/mutex.h>
93 1.1 yamaguch #include <sys/pcq.h>
94 1.1 yamaguch #include <sys/syslog.h>
95 1.1 yamaguch #include <sys/workqueue.h>
96 1.1 yamaguch
97 1.1 yamaguch #include <sys/bus.h>
98 1.1 yamaguch
99 1.1 yamaguch #include <net/bpf.h>
100 1.1 yamaguch #include <net/if.h>
101 1.1 yamaguch #include <net/if_dl.h>
102 1.1 yamaguch #include <net/if_media.h>
103 1.1 yamaguch #include <net/if_ether.h>
104 1.1 yamaguch #include <net/rss_config.h>
105 1.1 yamaguch
106 1.1 yamaguch #include <dev/pci/pcivar.h>
107 1.1 yamaguch #include <dev/pci/pcidevs.h>
108 1.1 yamaguch
109 1.1 yamaguch #include <dev/pci/if_ixlreg.h>
110 1.1 yamaguch #include <dev/pci/if_ixlvar.h>
111 1.1 yamaguch
112 1.1 yamaguch struct ixl_softc; /* defined */
113 1.1 yamaguch
114 1.1 yamaguch #define I40E_PF_RESET_WAIT_COUNT 200
115 1.1 yamaguch #define I40E_AQ_LARGE_BUF 512
116 1.1 yamaguch
117 1.1 yamaguch /* bitfields for Tx queue mapping in QTX_CTL */
118 1.1 yamaguch #define I40E_QTX_CTL_VF_QUEUE 0x0
119 1.1 yamaguch #define I40E_QTX_CTL_VM_QUEUE 0x1
120 1.1 yamaguch #define I40E_QTX_CTL_PF_QUEUE 0x2
121 1.1 yamaguch
122 1.1 yamaguch #define I40E_QUEUE_TYPE_EOL 0x7ff
123 1.1 yamaguch #define I40E_INTR_NOTX_QUEUE 0
124 1.1 yamaguch
125 1.1 yamaguch #define I40E_QUEUE_TYPE_RX 0x0
126 1.1 yamaguch #define I40E_QUEUE_TYPE_TX 0x1
127 1.1 yamaguch #define I40E_QUEUE_TYPE_PE_CEQ 0x2
128 1.1 yamaguch #define I40E_QUEUE_TYPE_UNKNOWN 0x3
129 1.1 yamaguch
130 1.1 yamaguch #define I40E_ITR_INDEX_RX 0x0
131 1.1 yamaguch #define I40E_ITR_INDEX_TX 0x1
132 1.1 yamaguch #define I40E_ITR_INDEX_OTHER 0x2
133 1.1 yamaguch #define I40E_ITR_INDEX_NONE 0x3
134 1.1 yamaguch
135 1.1 yamaguch #define I40E_INTR_NOTX_QUEUE 0
136 1.1 yamaguch #define I40E_INTR_NOTX_INTR 0
137 1.1 yamaguch #define I40E_INTR_NOTX_RX_QUEUE 0
138 1.1 yamaguch #define I40E_INTR_NOTX_TX_QUEUE 1
139 1.1 yamaguch #define I40E_INTR_NOTX_RX_MASK I40E_PFINT_ICR0_QUEUE_0_MASK
140 1.1 yamaguch #define I40E_INTR_NOTX_TX_MASK I40E_PFINT_ICR0_QUEUE_1_MASK
141 1.1 yamaguch
142 1.1 yamaguch #define BIT_ULL(a) (1ULL << (a))
143 1.1 yamaguch #define IXL_RSS_HENA_DEFAULT_BASE \
144 1.1 yamaguch (BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \
145 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \
146 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \
147 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \
148 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4) | \
149 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \
150 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \
151 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \
152 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \
153 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6) | \
154 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_L2_PAYLOAD))
155 1.1 yamaguch #define IXL_RSS_HENA_DEFAULT_XL710 IXL_RSS_HENA_DEFAULT_BASE
156 1.1 yamaguch #define IXL_RSS_HENA_DEFAULT_X722 (IXL_RSS_HENA_DEFAULT_XL710 | \
157 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \
158 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \
159 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \
160 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \
161 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \
162 1.1 yamaguch BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK))
163 1.1 yamaguch #define I40E_HASH_LUT_SIZE_128 0
164 1.1 yamaguch #define IXL_RSS_KEY_SIZE_REG 13
165 1.1 yamaguch
166 1.1 yamaguch #define IXL_ICR0_CRIT_ERR_MASK \
167 1.1 yamaguch (I40E_PFINT_ICR0_PCI_EXCEPTION_MASK | \
168 1.1 yamaguch I40E_PFINT_ICR0_ECC_ERR_MASK | \
169 1.1 yamaguch I40E_PFINT_ICR0_PE_CRITERR_MASK)
170 1.1 yamaguch
171 1.1 yamaguch #define IXL_TX_PKT_DESCS 8
172 1.1 yamaguch #define IXL_TX_QUEUE_ALIGN 128
173 1.1 yamaguch #define IXL_RX_QUEUE_ALIGN 128
174 1.1 yamaguch
175 1.1 yamaguch #define IXL_HARDMTU 9712 /* 9726 - ETHER_HDR_LEN */
176 1.1 yamaguch
177 1.1 yamaguch #define IXL_PCIREG PCI_MAPREG_START
178 1.1 yamaguch
179 1.1 yamaguch #define IXL_ITR0 0x0
180 1.1 yamaguch #define IXL_ITR1 0x1
181 1.1 yamaguch #define IXL_ITR2 0x2
182 1.1 yamaguch #define IXL_NOITR 0x3
183 1.1 yamaguch
184 1.1 yamaguch #define IXL_AQ_NUM 256
185 1.1 yamaguch #define IXL_AQ_MASK (IXL_AQ_NUM - 1)
186 1.1 yamaguch #define IXL_AQ_ALIGN 64 /* lol */
187 1.1 yamaguch #define IXL_AQ_BUFLEN 4096
188 1.1 yamaguch
189 1.1 yamaguch #define IXL_HMC_ROUNDUP 512
190 1.1 yamaguch #define IXL_HMC_PGSIZE 4096
191 1.1 yamaguch #define IXL_HMC_DVASZ sizeof(uint64_t)
192 1.1 yamaguch #define IXL_HMC_PGS (IXL_HMC_PGSIZE / IXL_HMC_DVASZ)
193 1.1 yamaguch #define IXL_HMC_L2SZ (IXL_HMC_PGSIZE * IXL_HMC_PGS)
194 1.1 yamaguch #define IXL_HMC_PDVALID 1ULL
195 1.1 yamaguch
196 1.1 yamaguch #define IXL_ATQ_EXEC_TIMEOUT (10 * hz)
197 1.1 yamaguch
198 1.1 yamaguch struct ixl_aq_regs {
199 1.1 yamaguch bus_size_t atq_tail;
200 1.1 yamaguch bus_size_t atq_head;
201 1.1 yamaguch bus_size_t atq_len;
202 1.1 yamaguch bus_size_t atq_bal;
203 1.1 yamaguch bus_size_t atq_bah;
204 1.1 yamaguch
205 1.1 yamaguch bus_size_t arq_tail;
206 1.1 yamaguch bus_size_t arq_head;
207 1.1 yamaguch bus_size_t arq_len;
208 1.1 yamaguch bus_size_t arq_bal;
209 1.1 yamaguch bus_size_t arq_bah;
210 1.1 yamaguch
211 1.1 yamaguch uint32_t atq_len_enable;
212 1.1 yamaguch uint32_t atq_tail_mask;
213 1.1 yamaguch uint32_t atq_head_mask;
214 1.1 yamaguch
215 1.1 yamaguch uint32_t arq_len_enable;
216 1.1 yamaguch uint32_t arq_tail_mask;
217 1.1 yamaguch uint32_t arq_head_mask;
218 1.1 yamaguch };
219 1.1 yamaguch
220 1.1 yamaguch struct ixl_phy_type {
221 1.1 yamaguch uint64_t phy_type;
222 1.1 yamaguch uint64_t ifm_type;
223 1.1 yamaguch };
224 1.1 yamaguch
225 1.1 yamaguch struct ixl_speed_type {
226 1.1 yamaguch uint8_t dev_speed;
227 1.1 yamaguch uint64_t net_speed;
228 1.1 yamaguch };
229 1.1 yamaguch
230 1.1 yamaguch struct ixl_aq_buf {
231 1.1 yamaguch SIMPLEQ_ENTRY(ixl_aq_buf)
232 1.1 yamaguch aqb_entry;
233 1.1 yamaguch void *aqb_data;
234 1.1 yamaguch bus_dmamap_t aqb_map;
235 1.1 yamaguch bus_dma_segment_t aqb_seg;
236 1.1 yamaguch size_t aqb_size;
237 1.1 yamaguch int aqb_nsegs;
238 1.1 yamaguch };
239 1.1 yamaguch SIMPLEQ_HEAD(ixl_aq_bufs, ixl_aq_buf);
240 1.1 yamaguch
241 1.1 yamaguch struct ixl_dmamem {
242 1.1 yamaguch bus_dmamap_t ixm_map;
243 1.1 yamaguch bus_dma_segment_t ixm_seg;
244 1.1 yamaguch int ixm_nsegs;
245 1.1 yamaguch size_t ixm_size;
246 1.1 yamaguch void *ixm_kva;
247 1.1 yamaguch };
248 1.1 yamaguch
249 1.1 yamaguch #define IXL_DMA_MAP(_ixm) ((_ixm)->ixm_map)
250 1.1 yamaguch #define IXL_DMA_DVA(_ixm) ((_ixm)->ixm_map->dm_segs[0].ds_addr)
251 1.1 yamaguch #define IXL_DMA_KVA(_ixm) ((void *)(_ixm)->ixm_kva)
252 1.1 yamaguch #define IXL_DMA_LEN(_ixm) ((_ixm)->ixm_size)
253 1.1 yamaguch
254 1.1 yamaguch struct ixl_hmc_entry {
255 1.1 yamaguch uint64_t hmc_base;
256 1.1 yamaguch uint32_t hmc_count;
257 1.1 yamaguch uint64_t hmc_size;
258 1.1 yamaguch };
259 1.1 yamaguch
260 1.1 yamaguch enum ixl_hmc_types {
261 1.1 yamaguch IXL_HMC_LAN_TX = 0,
262 1.1 yamaguch IXL_HMC_LAN_RX,
263 1.1 yamaguch IXL_HMC_FCOE_CTX,
264 1.1 yamaguch IXL_HMC_FCOE_FILTER,
265 1.1 yamaguch IXL_HMC_COUNT
266 1.1 yamaguch };
267 1.1 yamaguch
268 1.1 yamaguch struct ixl_hmc_pack {
269 1.1 yamaguch uint16_t offset;
270 1.1 yamaguch uint16_t width;
271 1.1 yamaguch uint16_t lsb;
272 1.1 yamaguch };
273 1.1 yamaguch
274 1.1 yamaguch /*
275 1.1 yamaguch * these hmc objects have weird sizes and alignments, so these are abstract
276 1.1 yamaguch * representations of them that are nice for c to populate.
277 1.1 yamaguch *
278 1.1 yamaguch * the packing code relies on little-endian values being stored in the fields,
279 1.1 yamaguch * no high bits in the fields being set, and the fields must be packed in the
280 1.1 yamaguch * same order as they are in the ctx structure.
281 1.1 yamaguch */
282 1.1 yamaguch
283 1.1 yamaguch struct ixl_hmc_rxq {
284 1.1 yamaguch uint16_t head;
285 1.1 yamaguch uint8_t cpuid;
286 1.1 yamaguch uint64_t base;
287 1.1 yamaguch #define IXL_HMC_RXQ_BASE_UNIT 128
288 1.1 yamaguch uint16_t qlen;
289 1.1 yamaguch uint16_t dbuff;
290 1.1 yamaguch #define IXL_HMC_RXQ_DBUFF_UNIT 128
291 1.1 yamaguch uint8_t hbuff;
292 1.1 yamaguch #define IXL_HMC_RXQ_HBUFF_UNIT 64
293 1.1 yamaguch uint8_t dtype;
294 1.1 yamaguch #define IXL_HMC_RXQ_DTYPE_NOSPLIT 0x0
295 1.1 yamaguch #define IXL_HMC_RXQ_DTYPE_HSPLIT 0x1
296 1.1 yamaguch #define IXL_HMC_RXQ_DTYPE_SPLIT_ALWAYS 0x2
297 1.1 yamaguch uint8_t dsize;
298 1.1 yamaguch #define IXL_HMC_RXQ_DSIZE_16 0
299 1.1 yamaguch #define IXL_HMC_RXQ_DSIZE_32 1
300 1.1 yamaguch uint8_t crcstrip;
301 1.1 yamaguch uint8_t fc_ena;
302 1.1 yamaguch uint8_t l2sel;
303 1.1 yamaguch uint8_t hsplit_0;
304 1.1 yamaguch uint8_t hsplit_1;
305 1.1 yamaguch uint8_t showiv;
306 1.1 yamaguch uint16_t rxmax;
307 1.1 yamaguch uint8_t tphrdesc_ena;
308 1.1 yamaguch uint8_t tphwdesc_ena;
309 1.1 yamaguch uint8_t tphdata_ena;
310 1.1 yamaguch uint8_t tphhead_ena;
311 1.1 yamaguch uint8_t lrxqthresh;
312 1.1 yamaguch uint8_t prefena;
313 1.1 yamaguch };
314 1.1 yamaguch
315 1.1 yamaguch static const struct ixl_hmc_pack ixl_hmc_pack_rxq[] = {
316 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, head), 13, 0 },
317 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, cpuid), 8, 13 },
318 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, base), 57, 32 },
319 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, qlen), 13, 89 },
320 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, dbuff), 7, 102 },
321 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, hbuff), 5, 109 },
322 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, dtype), 2, 114 },
323 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, dsize), 1, 116 },
324 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, crcstrip), 1, 117 },
325 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, fc_ena), 1, 118 },
326 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, l2sel), 1, 119 },
327 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, hsplit_0), 4, 120 },
328 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, hsplit_1), 2, 124 },
329 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, showiv), 1, 127 },
330 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, rxmax), 14, 174 },
331 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, tphrdesc_ena), 1, 193 },
332 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, tphwdesc_ena), 1, 194 },
333 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, tphdata_ena), 1, 195 },
334 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, tphhead_ena), 1, 196 },
335 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, lrxqthresh), 3, 198 },
336 1.1 yamaguch { offsetof(struct ixl_hmc_rxq, prefena), 1, 201 },
337 1.1 yamaguch };
338 1.1 yamaguch
339 1.1 yamaguch #define IXL_HMC_RXQ_MINSIZE (201 + 1)
340 1.1 yamaguch
341 1.1 yamaguch struct ixl_hmc_txq {
342 1.1 yamaguch uint16_t head;
343 1.1 yamaguch uint8_t new_context;
344 1.1 yamaguch uint64_t base;
345 1.1 yamaguch #define IXL_HMC_TXQ_BASE_UNIT 128
346 1.1 yamaguch uint8_t fc_ena;
347 1.1 yamaguch uint8_t timesync_ena;
348 1.1 yamaguch uint8_t fd_ena;
349 1.1 yamaguch uint8_t alt_vlan_ena;
350 1.1 yamaguch uint16_t thead_wb;
351 1.1 yamaguch uint8_t cpuid;
352 1.1 yamaguch uint8_t head_wb_ena;
353 1.1 yamaguch #define IXL_HMC_TXQ_DESC_WB 0
354 1.1 yamaguch #define IXL_HMC_TXQ_HEAD_WB 1
355 1.1 yamaguch uint16_t qlen;
356 1.1 yamaguch uint8_t tphrdesc_ena;
357 1.1 yamaguch uint8_t tphrpacket_ena;
358 1.1 yamaguch uint8_t tphwdesc_ena;
359 1.1 yamaguch uint64_t head_wb_addr;
360 1.1 yamaguch uint32_t crc;
361 1.1 yamaguch uint16_t rdylist;
362 1.1 yamaguch uint8_t rdylist_act;
363 1.1 yamaguch };
364 1.1 yamaguch
365 1.1 yamaguch static const struct ixl_hmc_pack ixl_hmc_pack_txq[] = {
366 1.1 yamaguch { offsetof(struct ixl_hmc_txq, head), 13, 0 },
367 1.1 yamaguch { offsetof(struct ixl_hmc_txq, new_context), 1, 30 },
368 1.1 yamaguch { offsetof(struct ixl_hmc_txq, base), 57, 32 },
369 1.1 yamaguch { offsetof(struct ixl_hmc_txq, fc_ena), 1, 89 },
370 1.1 yamaguch { offsetof(struct ixl_hmc_txq, timesync_ena), 1, 90 },
371 1.1 yamaguch { offsetof(struct ixl_hmc_txq, fd_ena), 1, 91 },
372 1.1 yamaguch { offsetof(struct ixl_hmc_txq, alt_vlan_ena), 1, 92 },
373 1.1 yamaguch { offsetof(struct ixl_hmc_txq, cpuid), 8, 96 },
374 1.1 yamaguch /* line 1 */
375 1.1 yamaguch { offsetof(struct ixl_hmc_txq, thead_wb), 13, 0 + 128 },
376 1.1 yamaguch { offsetof(struct ixl_hmc_txq, head_wb_ena), 1, 32 + 128 },
377 1.1 yamaguch { offsetof(struct ixl_hmc_txq, qlen), 13, 33 + 128 },
378 1.1 yamaguch { offsetof(struct ixl_hmc_txq, tphrdesc_ena), 1, 46 + 128 },
379 1.1 yamaguch { offsetof(struct ixl_hmc_txq, tphrpacket_ena), 1, 47 + 128 },
380 1.1 yamaguch { offsetof(struct ixl_hmc_txq, tphwdesc_ena), 1, 48 + 128 },
381 1.1 yamaguch { offsetof(struct ixl_hmc_txq, head_wb_addr), 64, 64 + 128 },
382 1.1 yamaguch /* line 7 */
383 1.1 yamaguch { offsetof(struct ixl_hmc_txq, crc), 32, 0 + (7*128) },
384 1.1 yamaguch { offsetof(struct ixl_hmc_txq, rdylist), 10, 84 + (7*128) },
385 1.1 yamaguch { offsetof(struct ixl_hmc_txq, rdylist_act), 1, 94 + (7*128) },
386 1.1 yamaguch };
387 1.1 yamaguch
388 1.1 yamaguch #define IXL_HMC_TXQ_MINSIZE (94 + (7*128) + 1)
389 1.1 yamaguch
390 1.1 yamaguch struct ixl_work {
391 1.1 yamaguch struct work ixw_cookie;
392 1.1 yamaguch void (*ixw_func)(void *);
393 1.1 yamaguch void *ixw_arg;
394 1.1 yamaguch unsigned int ixw_added;
395 1.1 yamaguch };
396 1.1 yamaguch #define IXL_WORKQUEUE_PRI PRI_SOFTNET
397 1.1 yamaguch
398 1.1 yamaguch struct ixl_tx_map {
399 1.1 yamaguch struct mbuf *txm_m;
400 1.1 yamaguch bus_dmamap_t txm_map;
401 1.1 yamaguch unsigned int txm_eop;
402 1.1 yamaguch };
403 1.1 yamaguch
404 1.1 yamaguch struct ixl_tx_ring {
405 1.1 yamaguch kmutex_t txr_lock;
406 1.1 yamaguch struct ixl_softc *txr_sc;
407 1.1 yamaguch
408 1.1 yamaguch unsigned int txr_prod;
409 1.1 yamaguch unsigned int txr_cons;
410 1.1 yamaguch
411 1.1 yamaguch struct ixl_tx_map *txr_maps;
412 1.1 yamaguch struct ixl_dmamem txr_mem;
413 1.1 yamaguch
414 1.1 yamaguch bus_size_t txr_tail;
415 1.1 yamaguch unsigned int txr_qid;
416 1.1 yamaguch pcq_t *txr_intrq;
417 1.1 yamaguch void *txr_si;
418 1.1 yamaguch
419 1.1 yamaguch uint64_t txr_oerrors; /* if_oerrors */
420 1.1 yamaguch uint64_t txr_opackets; /* if_opackets */
421 1.1 yamaguch uint64_t txr_obytes; /* if_obytes */
422 1.1 yamaguch uint64_t txr_omcasts; /* if_omcasts */
423 1.1 yamaguch
424 1.1 yamaguch struct evcnt txr_defragged;
425 1.1 yamaguch struct evcnt txr_defrag_failed;
426 1.1 yamaguch struct evcnt txr_pcqdrop;
427 1.1 yamaguch struct evcnt txr_transmitdef;
428 1.1 yamaguch struct evcnt txr_intr;
429 1.1 yamaguch struct evcnt txr_defer;
430 1.1 yamaguch };
431 1.1 yamaguch
432 1.1 yamaguch struct ixl_rx_map {
433 1.1 yamaguch struct mbuf *rxm_m;
434 1.1 yamaguch bus_dmamap_t rxm_map;
435 1.1 yamaguch };
436 1.1 yamaguch
437 1.1 yamaguch struct ixl_rx_ring {
438 1.1 yamaguch kmutex_t rxr_lock;
439 1.1 yamaguch
440 1.1 yamaguch unsigned int rxr_prod;
441 1.1 yamaguch unsigned int rxr_cons;
442 1.1 yamaguch
443 1.1 yamaguch struct ixl_rx_map *rxr_maps;
444 1.1 yamaguch struct ixl_dmamem rxr_mem;
445 1.1 yamaguch
446 1.1 yamaguch struct mbuf *rxr_m_head;
447 1.1 yamaguch struct mbuf **rxr_m_tail;
448 1.1 yamaguch
449 1.1 yamaguch bus_size_t rxr_tail;
450 1.1 yamaguch unsigned int rxr_qid;
451 1.1 yamaguch
452 1.1 yamaguch uint64_t rxr_ipackets; /* if_ipackets */
453 1.1 yamaguch uint64_t rxr_ibytes; /* if_ibytes */
454 1.1 yamaguch uint64_t rxr_iqdrops; /* iqdrops */
455 1.1 yamaguch uint64_t rxr_ierrors; /* if_ierrors */
456 1.1 yamaguch
457 1.1 yamaguch struct evcnt rxr_mgethdr_failed;
458 1.1 yamaguch struct evcnt rxr_mgetcl_failed;
459 1.1 yamaguch struct evcnt rxr_mbuf_load_failed;
460 1.1 yamaguch struct evcnt rxr_intr;
461 1.1 yamaguch struct evcnt rxr_defer;
462 1.1 yamaguch };
463 1.1 yamaguch
464 1.1 yamaguch struct ixl_queue_pair {
465 1.1 yamaguch struct ixl_softc *qp_sc;
466 1.1 yamaguch struct ixl_tx_ring *qp_txr;
467 1.1 yamaguch struct ixl_rx_ring *qp_rxr;
468 1.1 yamaguch
469 1.1 yamaguch char qp_name[16];
470 1.1 yamaguch
471 1.1 yamaguch void *qp_si;
472 1.1 yamaguch struct ixl_work qp_task;
473 1.1 yamaguch bool qp_workqueue;
474 1.1 yamaguch };
475 1.1 yamaguch
476 1.1 yamaguch struct ixl_atq {
477 1.1 yamaguch struct ixl_aq_desc iatq_desc;
478 1.4 yamaguch void (*iatq_fn)(struct ixl_softc *,
479 1.4 yamaguch const struct ixl_aq_desc *);
480 1.1 yamaguch };
481 1.1 yamaguch SIMPLEQ_HEAD(ixl_atq_list, ixl_atq);
482 1.1 yamaguch
483 1.1 yamaguch struct ixl_product {
484 1.1 yamaguch unsigned int vendor_id;
485 1.1 yamaguch unsigned int product_id;
486 1.1 yamaguch };
487 1.1 yamaguch
488 1.1 yamaguch /*
489 1.1 yamaguch * Locking notes:
490 1.1 yamaguch * + a field in ixl_tx_ring is protected by txr_lock (a spin mutex), and
491 1.1 yamaguch * a field in ixl_rx_ring is protected by rxr_lock (a spin mutex).
492 1.1 yamaguch * - more than one lock of them cannot be held at once.
493 1.1 yamaguch * + a field named sc_atq_* in ixl_softc is protected by sc_atq_lock
494 1.1 yamaguch * (a spin mutex).
495 1.1 yamaguch * - the lock cannot held with txr_lock or rxr_lock.
496 1.1 yamaguch * + a field named sc_arq_* is not protected by any lock.
497 1.1 yamaguch * - operations for sc_arq_* is done in one context related to
498 1.1 yamaguch * sc_arq_task.
499 1.1 yamaguch * + other fields in ixl_softc is protected by sc_cfg_lock
500 1.1 yamaguch * (an adaptive mutex)
501 1.1 yamaguch * - It must be held before another lock is held, and It can be
502 1.1 yamaguch * released after the other lock is released.
503 1.1 yamaguch * */
504 1.1 yamaguch
505 1.1 yamaguch struct ixl_softc {
506 1.1 yamaguch device_t sc_dev;
507 1.1 yamaguch struct ethercom sc_ec;
508 1.1 yamaguch bool sc_attached;
509 1.1 yamaguch bool sc_dead;
510 1.1 yamaguch bool sc_rxctl_atq;
511 1.1 yamaguch struct sysctllog *sc_sysctllog;
512 1.1 yamaguch struct workqueue *sc_workq;
513 1.1 yamaguch struct workqueue *sc_workq_txrx;
514 1.1 yamaguch uint8_t sc_enaddr[ETHER_ADDR_LEN];
515 1.1 yamaguch struct ifmedia sc_media;
516 1.1 yamaguch uint64_t sc_media_status;
517 1.1 yamaguch uint64_t sc_media_active;
518 1.1 yamaguch kmutex_t sc_cfg_lock;
519 1.1 yamaguch enum i40e_mac_type sc_mac_type;
520 1.1 yamaguch uint32_t sc_rss_table_size;
521 1.1 yamaguch uint32_t sc_rss_table_entry_width;
522 1.1 yamaguch bool sc_txrx_workqueue;
523 1.1 yamaguch u_int sc_tx_process_limit;
524 1.1 yamaguch u_int sc_rx_process_limit;
525 1.1 yamaguch u_int sc_tx_intr_process_limit;
526 1.1 yamaguch u_int sc_rx_intr_process_limit;
527 1.1 yamaguch
528 1.1 yamaguch struct pci_attach_args sc_pa;
529 1.1 yamaguch pci_intr_handle_t *sc_ihp;
530 1.1 yamaguch void **sc_ihs;
531 1.1 yamaguch unsigned int sc_nintrs;
532 1.1 yamaguch
533 1.1 yamaguch bus_dma_tag_t sc_dmat;
534 1.1 yamaguch bus_space_tag_t sc_memt;
535 1.1 yamaguch bus_space_handle_t sc_memh;
536 1.1 yamaguch bus_size_t sc_mems;
537 1.1 yamaguch
538 1.1 yamaguch uint8_t sc_pf_id;
539 1.1 yamaguch uint16_t sc_uplink_seid; /* le */
540 1.1 yamaguch uint16_t sc_downlink_seid; /* le */
541 1.1 yamaguch uint16_t sc_vsi_number; /* le */
542 1.1 yamaguch uint16_t sc_seid;
543 1.1 yamaguch unsigned int sc_base_queue;
544 1.1 yamaguch
545 1.1 yamaguch pci_intr_type_t sc_intrtype;
546 1.1 yamaguch unsigned int sc_msix_vector_queue;
547 1.1 yamaguch
548 1.1 yamaguch struct ixl_dmamem sc_scratch;
549 1.1 yamaguch
550 1.1 yamaguch const struct ixl_aq_regs *
551 1.1 yamaguch sc_aq_regs;
552 1.1 yamaguch
553 1.1 yamaguch kmutex_t sc_atq_lock;
554 1.1 yamaguch kcondvar_t sc_atq_cv;
555 1.1 yamaguch struct ixl_dmamem sc_atq;
556 1.1 yamaguch unsigned int sc_atq_prod;
557 1.1 yamaguch unsigned int sc_atq_cons;
558 1.1 yamaguch
559 1.1 yamaguch struct ixl_dmamem sc_arq;
560 1.1 yamaguch struct ixl_work sc_arq_task;
561 1.1 yamaguch struct ixl_aq_bufs sc_arq_idle;
562 1.1 yamaguch struct ixl_aq_buf *sc_arq_live[IXL_AQ_NUM];
563 1.1 yamaguch unsigned int sc_arq_prod;
564 1.1 yamaguch unsigned int sc_arq_cons;
565 1.1 yamaguch
566 1.1 yamaguch struct ixl_work sc_link_state_task;
567 1.1 yamaguch struct ixl_atq sc_link_state_atq;
568 1.1 yamaguch
569 1.1 yamaguch struct ixl_dmamem sc_hmc_sd;
570 1.1 yamaguch struct ixl_dmamem sc_hmc_pd;
571 1.1 yamaguch struct ixl_hmc_entry sc_hmc_entries[IXL_HMC_COUNT];
572 1.1 yamaguch
573 1.1 yamaguch unsigned int sc_tx_ring_ndescs;
574 1.1 yamaguch unsigned int sc_rx_ring_ndescs;
575 1.1 yamaguch unsigned int sc_nqueue_pairs;
576 1.1 yamaguch unsigned int sc_nqueue_pairs_max;
577 1.1 yamaguch unsigned int sc_nqueue_pairs_device;
578 1.1 yamaguch struct ixl_queue_pair *sc_qps;
579 1.1 yamaguch
580 1.1 yamaguch struct evcnt sc_event_atq;
581 1.1 yamaguch struct evcnt sc_event_link;
582 1.1 yamaguch struct evcnt sc_event_ecc_err;
583 1.1 yamaguch struct evcnt sc_event_pci_exception;
584 1.1 yamaguch struct evcnt sc_event_crit_err;
585 1.1 yamaguch };
586 1.1 yamaguch
587 1.1 yamaguch #define IXL_TXRX_PROCESS_UNLIMIT UINT_MAX
588 1.1 yamaguch #define IXL_TX_PROCESS_LIMIT 256
589 1.1 yamaguch #define IXL_RX_PROCESS_LIMIT 256
590 1.1 yamaguch #define IXL_TX_INTR_PROCESS_LIMIT 256
591 1.1 yamaguch #define IXL_RX_INTR_PROCESS_LIMIT 0U
592 1.1 yamaguch
593 1.1 yamaguch #define delaymsec(_x) DELAY(1000 * (_x))
594 1.1 yamaguch #ifdef IXL_DEBUG
595 1.1 yamaguch #define DDPRINTF(sc, fmt, args...) \
596 1.1 yamaguch do { \
597 1.1 yamaguch if (sc != NULL) \
598 1.1 yamaguch device_printf(sc->sc_dev, ""); \
599 1.1 yamaguch printf("%s:\t" fmt, __func__, ##args); \
600 1.1 yamaguch } while (0)
601 1.1 yamaguch #else
602 1.1 yamaguch #define DDPRINTF(sc, fmt, args...) __nothing
603 1.1 yamaguch #endif
604 1.1 yamaguch #define IXL_NOMSIX false
605 1.1 yamaguch
606 1.1 yamaguch static enum i40e_mac_type
607 1.1 yamaguch ixl_mactype(pci_product_id_t);
608 1.1 yamaguch static void ixl_clear_hw(struct ixl_softc *);
609 1.1 yamaguch static int ixl_pf_reset(struct ixl_softc *);
610 1.1 yamaguch
611 1.1 yamaguch static int ixl_dmamem_alloc(struct ixl_softc *, struct ixl_dmamem *,
612 1.1 yamaguch bus_size_t, bus_size_t);
613 1.1 yamaguch static void ixl_dmamem_free(struct ixl_softc *, struct ixl_dmamem *);
614 1.1 yamaguch
615 1.1 yamaguch static int ixl_arq_fill(struct ixl_softc *);
616 1.1 yamaguch static void ixl_arq_unfill(struct ixl_softc *);
617 1.1 yamaguch
618 1.1 yamaguch static int ixl_atq_poll(struct ixl_softc *, struct ixl_aq_desc *,
619 1.1 yamaguch unsigned int);
620 1.4 yamaguch static void ixl_atq_set(struct ixl_atq *,
621 1.4 yamaguch void (*)(struct ixl_softc *, const struct ixl_aq_desc *));
622 1.1 yamaguch static int ixl_atq_post(struct ixl_softc *, struct ixl_atq *);
623 1.1 yamaguch static int ixl_atq_post_locked(struct ixl_softc *, struct ixl_atq *);
624 1.1 yamaguch static void ixl_atq_done(struct ixl_softc *);
625 1.1 yamaguch static int ixl_atq_exec(struct ixl_softc *, struct ixl_atq *);
626 1.1 yamaguch static int ixl_get_version(struct ixl_softc *);
627 1.1 yamaguch static int ixl_get_hw_capabilities(struct ixl_softc *);
628 1.1 yamaguch static int ixl_pxe_clear(struct ixl_softc *);
629 1.1 yamaguch static int ixl_lldp_shut(struct ixl_softc *);
630 1.1 yamaguch static int ixl_get_mac(struct ixl_softc *);
631 1.1 yamaguch static int ixl_get_switch_config(struct ixl_softc *);
632 1.1 yamaguch static int ixl_phy_mask_ints(struct ixl_softc *);
633 1.1 yamaguch static int ixl_get_phy_types(struct ixl_softc *, uint64_t *);
634 1.1 yamaguch static int ixl_restart_an(struct ixl_softc *);
635 1.1 yamaguch static int ixl_hmc(struct ixl_softc *);
636 1.1 yamaguch static void ixl_hmc_free(struct ixl_softc *);
637 1.1 yamaguch static int ixl_get_vsi(struct ixl_softc *);
638 1.1 yamaguch static int ixl_set_vsi(struct ixl_softc *);
639 1.1 yamaguch static void ixl_set_filter_control(struct ixl_softc *);
640 1.4 yamaguch static void ixl_get_link_status(void *);
641 1.4 yamaguch static int ixl_get_link_status_poll(struct ixl_softc *);
642 1.1 yamaguch static int ixl_set_link_status(struct ixl_softc *,
643 1.1 yamaguch const struct ixl_aq_desc *);
644 1.1 yamaguch static void ixl_config_rss(struct ixl_softc *);
645 1.1 yamaguch static int ixl_add_macvlan(struct ixl_softc *, const uint8_t *,
646 1.1 yamaguch uint16_t, uint16_t);
647 1.1 yamaguch static int ixl_remove_macvlan(struct ixl_softc *, uint8_t *, uint16_t,
648 1.1 yamaguch uint16_t);
649 1.1 yamaguch static void ixl_arq(void *);
650 1.1 yamaguch static void ixl_hmc_pack(void *, const void *,
651 1.1 yamaguch const struct ixl_hmc_pack *, unsigned int);
652 1.1 yamaguch static uint32_t ixl_rd_rx_csr(struct ixl_softc *, uint32_t);
653 1.1 yamaguch static void ixl_wr_rx_csr(struct ixl_softc *, uint32_t, uint32_t);
654 1.1 yamaguch
655 1.1 yamaguch static int ixl_match(device_t, cfdata_t, void *);
656 1.1 yamaguch static void ixl_attach(device_t, device_t, void *);
657 1.1 yamaguch static int ixl_detach(device_t, int);
658 1.1 yamaguch
659 1.1 yamaguch static void ixl_media_add(struct ixl_softc *, uint64_t);
660 1.1 yamaguch static int ixl_media_change(struct ifnet *);
661 1.1 yamaguch static void ixl_media_status(struct ifnet *, struct ifmediareq *);
662 1.1 yamaguch static void ixl_watchdog(struct ifnet *);
663 1.1 yamaguch static int ixl_ioctl(struct ifnet *, u_long, void *);
664 1.1 yamaguch static void ixl_start(struct ifnet *);
665 1.1 yamaguch static int ixl_transmit(struct ifnet *, struct mbuf *);
666 1.1 yamaguch static void ixl_deferred_transmit(void *);
667 1.1 yamaguch static int ixl_intr(void *);
668 1.1 yamaguch static int ixl_queue_intr(void *);
669 1.1 yamaguch static int ixl_other_intr(void *);
670 1.1 yamaguch static void ixl_handle_queue(void *);
671 1.1 yamaguch static void ixl_sched_handle_queue(struct ixl_softc *,
672 1.1 yamaguch struct ixl_queue_pair *);
673 1.1 yamaguch static int ixl_init(struct ifnet *);
674 1.1 yamaguch static int ixl_init_locked(struct ixl_softc *);
675 1.1 yamaguch static void ixl_stop(struct ifnet *, int);
676 1.1 yamaguch static void ixl_stop_locked(struct ixl_softc *);
677 1.1 yamaguch static int ixl_iff(struct ixl_softc *);
678 1.1 yamaguch static int ixl_ifflags_cb(struct ethercom *);
679 1.1 yamaguch static int ixl_setup_interrupts(struct ixl_softc *);
680 1.1 yamaguch static int ixl_establish_intx(struct ixl_softc *);
681 1.1 yamaguch static int ixl_establish_msix(struct ixl_softc *);
682 1.1 yamaguch static void ixl_set_affinity_msix(struct ixl_softc *);
683 1.1 yamaguch static void ixl_enable_queue_intr(struct ixl_softc *,
684 1.1 yamaguch struct ixl_queue_pair *);
685 1.1 yamaguch static void ixl_disable_queue_intr(struct ixl_softc *,
686 1.1 yamaguch struct ixl_queue_pair *);
687 1.1 yamaguch static void ixl_enable_other_intr(struct ixl_softc *);
688 1.1 yamaguch static void ixl_disable_other_intr(struct ixl_softc *);
689 1.1 yamaguch static void ixl_config_queue_intr(struct ixl_softc *);
690 1.1 yamaguch static void ixl_config_other_intr(struct ixl_softc *);
691 1.1 yamaguch
692 1.1 yamaguch static struct ixl_tx_ring *
693 1.1 yamaguch ixl_txr_alloc(struct ixl_softc *, unsigned int);
694 1.1 yamaguch static void ixl_txr_qdis(struct ixl_softc *, struct ixl_tx_ring *, int);
695 1.1 yamaguch static void ixl_txr_config(struct ixl_softc *, struct ixl_tx_ring *);
696 1.1 yamaguch static int ixl_txr_enabled(struct ixl_softc *, struct ixl_tx_ring *);
697 1.1 yamaguch static int ixl_txr_disabled(struct ixl_softc *, struct ixl_tx_ring *);
698 1.1 yamaguch static void ixl_txr_unconfig(struct ixl_softc *, struct ixl_tx_ring *);
699 1.1 yamaguch static void ixl_txr_clean(struct ixl_softc *, struct ixl_tx_ring *);
700 1.1 yamaguch static void ixl_txr_free(struct ixl_softc *, struct ixl_tx_ring *);
701 1.1 yamaguch static int ixl_txeof(struct ixl_softc *, struct ixl_tx_ring *, u_int);
702 1.1 yamaguch
703 1.1 yamaguch static struct ixl_rx_ring *
704 1.1 yamaguch ixl_rxr_alloc(struct ixl_softc *, unsigned int);
705 1.1 yamaguch static void ixl_rxr_config(struct ixl_softc *, struct ixl_rx_ring *);
706 1.1 yamaguch static int ixl_rxr_enabled(struct ixl_softc *, struct ixl_rx_ring *);
707 1.1 yamaguch static int ixl_rxr_disabled(struct ixl_softc *, struct ixl_rx_ring *);
708 1.1 yamaguch static void ixl_rxr_unconfig(struct ixl_softc *, struct ixl_rx_ring *);
709 1.1 yamaguch static void ixl_rxr_clean(struct ixl_softc *, struct ixl_rx_ring *);
710 1.1 yamaguch static void ixl_rxr_free(struct ixl_softc *, struct ixl_rx_ring *);
711 1.1 yamaguch static int ixl_rxeof(struct ixl_softc *, struct ixl_rx_ring *, u_int);
712 1.1 yamaguch static int ixl_rxfill(struct ixl_softc *, struct ixl_rx_ring *);
713 1.1 yamaguch
714 1.1 yamaguch static struct workqueue *
715 1.1 yamaguch ixl_workq_create(const char *, pri_t, int, int);
716 1.1 yamaguch static void ixl_workq_destroy(struct workqueue *);
717 1.1 yamaguch static int ixl_workqs_teardown(device_t);
718 1.1 yamaguch static void ixl_work_set(struct ixl_work *, void (*)(void *), void *);
719 1.1 yamaguch static void ixl_work_add(struct workqueue *, struct ixl_work *);
720 1.1 yamaguch static void ixl_work_wait(struct workqueue *, struct ixl_work *);
721 1.1 yamaguch static void ixl_workq_work(struct work *, void *);
722 1.1 yamaguch static const struct ixl_product *
723 1.1 yamaguch ixl_lookup(const struct pci_attach_args *pa);
724 1.4 yamaguch static void ixl_link_state_update(struct ixl_softc *,
725 1.4 yamaguch const struct ixl_aq_desc *);
726 1.1 yamaguch static int ixl_set_macvlan(struct ixl_softc *);
727 1.1 yamaguch static int ixl_setup_interrupts(struct ixl_softc *);;
728 1.1 yamaguch static void ixl_teardown_interrupts(struct ixl_softc *);
729 1.1 yamaguch static int ixl_setup_stats(struct ixl_softc *);
730 1.1 yamaguch static void ixl_teardown_stats(struct ixl_softc *);
731 1.1 yamaguch static int ixl_setup_sysctls(struct ixl_softc *);
732 1.1 yamaguch static void ixl_teardown_sysctls(struct ixl_softc *);
733 1.1 yamaguch static int ixl_queue_pairs_alloc(struct ixl_softc *);
734 1.1 yamaguch static void ixl_queue_pairs_free(struct ixl_softc *);
735 1.1 yamaguch
736 1.1 yamaguch static const struct ixl_phy_type ixl_phy_type_map[] = {
737 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_SGMII, IFM_1000_SGMII },
738 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_1000BASE_KX, IFM_1000_KX },
739 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_KX4, IFM_10G_KX4 },
740 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_KR, IFM_10G_KR },
741 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_40GBASE_KR4, IFM_40G_KR4 },
742 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_XAUI |
743 1.1 yamaguch 1ULL << IXL_PHY_TYPE_XFI, IFM_10G_CX4 },
744 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_SFI, IFM_10G_SFI },
745 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_XLAUI |
746 1.1 yamaguch 1ULL << IXL_PHY_TYPE_XLPPI, IFM_40G_XLPPI },
747 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_40GBASE_CR4_CU |
748 1.1 yamaguch 1ULL << IXL_PHY_TYPE_40GBASE_CR4, IFM_40G_CR4 },
749 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_CR1_CU |
750 1.1 yamaguch 1ULL << IXL_PHY_TYPE_10GBASE_CR1, IFM_10G_CR1 },
751 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_AOC, IFM_10G_AOC },
752 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_40GBASE_AOC, IFM_40G_AOC },
753 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_100BASE_TX, IFM_100_TX },
754 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_1000BASE_T_OPTICAL |
755 1.1 yamaguch 1ULL << IXL_PHY_TYPE_1000BASE_T, IFM_1000_T },
756 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_T, IFM_10G_T },
757 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_SR, IFM_10G_SR },
758 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_LR, IFM_10G_LR },
759 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_10GBASE_SFPP_CU, IFM_10G_TWINAX },
760 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_40GBASE_SR4, IFM_40G_SR4 },
761 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_40GBASE_LR4, IFM_40G_LR4 },
762 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_1000BASE_SX, IFM_1000_SX },
763 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_1000BASE_LX, IFM_1000_LX },
764 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_20GBASE_KR2, IFM_20G_KR2 },
765 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_25GBASE_KR, IFM_25G_KR },
766 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_25GBASE_CR, IFM_25G_CR },
767 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_25GBASE_SR, IFM_25G_SR },
768 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_25GBASE_LR, IFM_25G_LR },
769 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_25GBASE_AOC, IFM_25G_AOC },
770 1.1 yamaguch { 1ULL << IXL_PHY_TYPE_25GBASE_ACC, IFM_25G_CR },
771 1.1 yamaguch };
772 1.1 yamaguch
773 1.1 yamaguch static const struct ixl_speed_type ixl_speed_type_map[] = {
774 1.1 yamaguch { IXL_AQ_LINK_SPEED_40GB, IF_Gbps(40) },
775 1.1 yamaguch { IXL_AQ_LINK_SPEED_25GB, IF_Gbps(25) },
776 1.1 yamaguch { IXL_AQ_LINK_SPEED_10GB, IF_Gbps(10) },
777 1.1 yamaguch { IXL_AQ_LINK_SPEED_1000MB, IF_Mbps(1000) },
778 1.1 yamaguch { IXL_AQ_LINK_SPEED_100MB, IF_Mbps(100)},
779 1.1 yamaguch };
780 1.1 yamaguch
781 1.1 yamaguch static const struct ixl_aq_regs ixl_pf_aq_regs = {
782 1.1 yamaguch .atq_tail = I40E_PF_ATQT,
783 1.1 yamaguch .atq_tail_mask = I40E_PF_ATQT_ATQT_MASK,
784 1.1 yamaguch .atq_head = I40E_PF_ATQH,
785 1.1 yamaguch .atq_head_mask = I40E_PF_ATQH_ATQH_MASK,
786 1.1 yamaguch .atq_len = I40E_PF_ATQLEN,
787 1.1 yamaguch .atq_bal = I40E_PF_ATQBAL,
788 1.1 yamaguch .atq_bah = I40E_PF_ATQBAH,
789 1.1 yamaguch .atq_len_enable = I40E_PF_ATQLEN_ATQENABLE_MASK,
790 1.1 yamaguch
791 1.1 yamaguch .arq_tail = I40E_PF_ARQT,
792 1.1 yamaguch .arq_tail_mask = I40E_PF_ARQT_ARQT_MASK,
793 1.1 yamaguch .arq_head = I40E_PF_ARQH,
794 1.1 yamaguch .arq_head_mask = I40E_PF_ARQH_ARQH_MASK,
795 1.1 yamaguch .arq_len = I40E_PF_ARQLEN,
796 1.1 yamaguch .arq_bal = I40E_PF_ARQBAL,
797 1.1 yamaguch .arq_bah = I40E_PF_ARQBAH,
798 1.1 yamaguch .arq_len_enable = I40E_PF_ARQLEN_ARQENABLE_MASK,
799 1.1 yamaguch };
800 1.1 yamaguch
801 1.1 yamaguch #define ixl_rd(_s, _r) \
802 1.1 yamaguch bus_space_read_4((_s)->sc_memt, (_s)->sc_memh, (_r))
803 1.1 yamaguch #define ixl_wr(_s, _r, _v) \
804 1.1 yamaguch bus_space_write_4((_s)->sc_memt, (_s)->sc_memh, (_r), (_v))
805 1.1 yamaguch #define ixl_barrier(_s, _r, _l, _o) \
806 1.1 yamaguch bus_space_barrier((_s)->sc_memt, (_s)->sc_memh, (_r), (_l), (_o))
807 1.1 yamaguch #define ixl_flush(_s) (void)ixl_rd((_s), I40E_GLGEN_STAT)
808 1.1 yamaguch #define ixl_nqueues(_sc) (1 << ((_sc)->sc_nqueue_pairs - 1))
809 1.2 yamaguch
810 1.2 yamaguch static inline uint32_t
811 1.2 yamaguch ixl_dmamem_hi(struct ixl_dmamem *ixm)
812 1.2 yamaguch {
813 1.3 yamaguch uint32_t retval;
814 1.3 yamaguch uint64_t val;
815 1.2 yamaguch
816 1.5 yamaguch if (sizeof(IXL_DMA_DVA(ixm)) > 4) {
817 1.3 yamaguch val = (intptr_t)IXL_DMA_DVA(ixm);
818 1.3 yamaguch retval = (uint32_t)(val >> 32);
819 1.3 yamaguch } else {
820 1.3 yamaguch retval = 0;
821 1.3 yamaguch }
822 1.2 yamaguch
823 1.3 yamaguch return retval;
824 1.2 yamaguch }
825 1.2 yamaguch
826 1.2 yamaguch static inline uint32_t
827 1.2 yamaguch ixl_dmamem_lo(struct ixl_dmamem *ixm)
828 1.2 yamaguch {
829 1.2 yamaguch
830 1.2 yamaguch return (uint32_t)IXL_DMA_DVA(ixm);
831 1.2 yamaguch }
832 1.1 yamaguch
833 1.1 yamaguch static inline void
834 1.1 yamaguch ixl_aq_dva(struct ixl_aq_desc *iaq, bus_addr_t addr)
835 1.1 yamaguch {
836 1.3 yamaguch uint64_t val;
837 1.2 yamaguch
838 1.5 yamaguch if (sizeof(addr) > 4) {
839 1.3 yamaguch val = (intptr_t)addr;
840 1.3 yamaguch iaq->iaq_param[2] = htole32(val >> 32);
841 1.3 yamaguch } else {
842 1.2 yamaguch iaq->iaq_param[2] = htole32(0);
843 1.3 yamaguch }
844 1.2 yamaguch
845 1.1 yamaguch iaq->iaq_param[3] = htole32(addr);
846 1.1 yamaguch }
847 1.1 yamaguch
848 1.1 yamaguch static inline unsigned int
849 1.1 yamaguch ixl_rxr_unrefreshed(unsigned int prod, unsigned int cons, unsigned int ndescs)
850 1.1 yamaguch {
851 1.1 yamaguch unsigned int num;
852 1.1 yamaguch
853 1.1 yamaguch if (prod < cons)
854 1.1 yamaguch num = cons - prod;
855 1.1 yamaguch else
856 1.1 yamaguch num = (ndescs - prod) + cons;
857 1.1 yamaguch
858 1.1 yamaguch if (__predict_true(num > 0)) {
859 1.1 yamaguch /* device cannot receive packets if all descripter is filled */
860 1.1 yamaguch num -= 1;
861 1.1 yamaguch }
862 1.1 yamaguch
863 1.1 yamaguch return num;
864 1.1 yamaguch }
865 1.1 yamaguch
866 1.1 yamaguch CFATTACH_DECL3_NEW(ixl, sizeof(struct ixl_softc),
867 1.1 yamaguch ixl_match, ixl_attach, ixl_detach, NULL, NULL, NULL,
868 1.1 yamaguch DVF_DETACH_SHUTDOWN);
869 1.1 yamaguch
870 1.1 yamaguch static const struct ixl_product ixl_products[] = {
871 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_SFP },
872 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_KX_B },
873 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_KX_C },
874 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_QSFP_A },
875 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_QSFP_B },
876 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_QSFP_C },
877 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X710_10G_T },
878 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_20G_BP_1 },
879 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XL710_20G_BP_2 },
880 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X710_T4_10G },
881 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XXV710_25G_BP },
882 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_XXV710_25G_SFP28 },
883 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X722_KX },
884 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X722_QSFP },
885 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X722_SFP },
886 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X722_1G_BASET },
887 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X722_10G_BASET },
888 1.1 yamaguch { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X722_I_SFP },
889 1.1 yamaguch /* required last entry */
890 1.1 yamaguch {0, 0}
891 1.1 yamaguch };
892 1.1 yamaguch
893 1.1 yamaguch static const struct ixl_product *
894 1.1 yamaguch ixl_lookup(const struct pci_attach_args *pa)
895 1.1 yamaguch {
896 1.1 yamaguch const struct ixl_product *ixlp;
897 1.1 yamaguch
898 1.1 yamaguch for (ixlp = ixl_products; ixlp->vendor_id != 0; ixlp++) {
899 1.1 yamaguch if (PCI_VENDOR(pa->pa_id) == ixlp->vendor_id &&
900 1.1 yamaguch PCI_PRODUCT(pa->pa_id) == ixlp->product_id)
901 1.1 yamaguch return ixlp;
902 1.1 yamaguch }
903 1.1 yamaguch
904 1.1 yamaguch return NULL;
905 1.1 yamaguch }
906 1.1 yamaguch
907 1.1 yamaguch static int
908 1.1 yamaguch ixl_match(device_t parent, cfdata_t match, void *aux)
909 1.1 yamaguch {
910 1.1 yamaguch const struct pci_attach_args *pa = aux;
911 1.1 yamaguch
912 1.1 yamaguch return (ixl_lookup(pa) != NULL) ? 1 : 0;
913 1.1 yamaguch }
914 1.1 yamaguch
915 1.1 yamaguch static void
916 1.1 yamaguch ixl_attach(device_t parent, device_t self, void *aux)
917 1.1 yamaguch {
918 1.1 yamaguch struct ixl_softc *sc;
919 1.1 yamaguch struct pci_attach_args *pa = aux;
920 1.1 yamaguch struct ifnet *ifp;
921 1.1 yamaguch pcireg_t memtype, reg;
922 1.1 yamaguch uint32_t firstq, port, ari, func;
923 1.1 yamaguch uint64_t phy_types = 0;
924 1.1 yamaguch char xnamebuf[32];
925 1.1 yamaguch int tries, rv;
926 1.1 yamaguch
927 1.1 yamaguch sc = device_private(self);
928 1.1 yamaguch sc->sc_dev = self;
929 1.1 yamaguch ifp = &sc->sc_ec.ec_if;
930 1.1 yamaguch
931 1.1 yamaguch sc->sc_pa = *pa;
932 1.1 yamaguch sc->sc_dmat = (pci_dma64_available(pa)) ?
933 1.1 yamaguch pa->pa_dmat64 : pa->pa_dmat;
934 1.1 yamaguch sc->sc_aq_regs = &ixl_pf_aq_regs;
935 1.1 yamaguch
936 1.1 yamaguch reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG);
937 1.1 yamaguch sc->sc_mac_type = ixl_mactype(PCI_PRODUCT(reg));
938 1.1 yamaguch
939 1.1 yamaguch memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, IXL_PCIREG);
940 1.1 yamaguch if (pci_mapreg_map(pa, IXL_PCIREG, memtype, 0,
941 1.1 yamaguch &sc->sc_memt, &sc->sc_memh, NULL, &sc->sc_mems)) {
942 1.1 yamaguch aprint_error(": unable to map registers\n");
943 1.1 yamaguch return;
944 1.1 yamaguch }
945 1.1 yamaguch
946 1.1 yamaguch mutex_init(&sc->sc_cfg_lock, MUTEX_DEFAULT, IPL_SOFTNET);
947 1.1 yamaguch
948 1.1 yamaguch firstq = ixl_rd(sc, I40E_PFLAN_QALLOC);
949 1.1 yamaguch firstq &= I40E_PFLAN_QALLOC_FIRSTQ_MASK;
950 1.1 yamaguch firstq >>= I40E_PFLAN_QALLOC_FIRSTQ_SHIFT;
951 1.1 yamaguch sc->sc_base_queue = firstq;
952 1.1 yamaguch
953 1.1 yamaguch ixl_clear_hw(sc);
954 1.1 yamaguch if (ixl_pf_reset(sc) == -1) {
955 1.1 yamaguch /* error printed by ixl pf_reset */
956 1.1 yamaguch goto unmap;
957 1.1 yamaguch }
958 1.1 yamaguch
959 1.1 yamaguch port = ixl_rd(sc, I40E_PFGEN_PORTNUM);
960 1.1 yamaguch port &= I40E_PFGEN_PORTNUM_PORT_NUM_MASK;
961 1.1 yamaguch port >>= I40E_PFGEN_PORTNUM_PORT_NUM_SHIFT;
962 1.1 yamaguch aprint_normal(": port %u", port);
963 1.1 yamaguch
964 1.1 yamaguch ari = ixl_rd(sc, I40E_GLPCI_CAPSUP);
965 1.1 yamaguch ari &= I40E_GLPCI_CAPSUP_ARI_EN_MASK;
966 1.1 yamaguch ari >>= I40E_GLPCI_CAPSUP_ARI_EN_SHIFT;
967 1.1 yamaguch
968 1.1 yamaguch func = ixl_rd(sc, I40E_PF_FUNC_RID);
969 1.1 yamaguch sc->sc_pf_id = func & (ari ? 0xff : 0x7);
970 1.1 yamaguch
971 1.1 yamaguch /* initialise the adminq */
972 1.1 yamaguch
973 1.1 yamaguch mutex_init(&sc->sc_atq_lock, MUTEX_DEFAULT, IPL_NET);
974 1.1 yamaguch
975 1.1 yamaguch if (ixl_dmamem_alloc(sc, &sc->sc_atq,
976 1.1 yamaguch sizeof(struct ixl_aq_desc) * IXL_AQ_NUM, IXL_AQ_ALIGN) != 0) {
977 1.1 yamaguch aprint_error("\n" "%s: unable to allocate atq\n",
978 1.1 yamaguch device_xname(self));
979 1.1 yamaguch goto unmap;
980 1.1 yamaguch }
981 1.1 yamaguch
982 1.1 yamaguch SIMPLEQ_INIT(&sc->sc_arq_idle);
983 1.1 yamaguch ixl_work_set(&sc->sc_arq_task, ixl_arq, sc);
984 1.1 yamaguch sc->sc_arq_cons = 0;
985 1.1 yamaguch sc->sc_arq_prod = 0;
986 1.1 yamaguch
987 1.1 yamaguch if (ixl_dmamem_alloc(sc, &sc->sc_arq,
988 1.1 yamaguch sizeof(struct ixl_aq_desc) * IXL_AQ_NUM, IXL_AQ_ALIGN) != 0) {
989 1.1 yamaguch aprint_error("\n" "%s: unable to allocate arq\n",
990 1.1 yamaguch device_xname(self));
991 1.1 yamaguch goto free_atq;
992 1.1 yamaguch }
993 1.1 yamaguch
994 1.1 yamaguch if (!ixl_arq_fill(sc)) {
995 1.1 yamaguch aprint_error("\n" "%s: unable to fill arq descriptors\n",
996 1.1 yamaguch device_xname(self));
997 1.1 yamaguch goto free_arq;
998 1.1 yamaguch }
999 1.1 yamaguch
1000 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
1001 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq),
1002 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1003 1.1 yamaguch
1004 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_arq),
1005 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_arq),
1006 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1007 1.1 yamaguch
1008 1.1 yamaguch for (tries = 0; tries < 10; tries++) {
1009 1.1 yamaguch sc->sc_atq_cons = 0;
1010 1.1 yamaguch sc->sc_atq_prod = 0;
1011 1.1 yamaguch
1012 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_head, 0);
1013 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_head, 0);
1014 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_tail, 0);
1015 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_tail, 0);
1016 1.1 yamaguch
1017 1.1 yamaguch ixl_barrier(sc, 0, sc->sc_mems, BUS_SPACE_BARRIER_WRITE);
1018 1.1 yamaguch
1019 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_bal,
1020 1.1 yamaguch ixl_dmamem_lo(&sc->sc_atq));
1021 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_bah,
1022 1.1 yamaguch ixl_dmamem_hi(&sc->sc_atq));
1023 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_len,
1024 1.1 yamaguch sc->sc_aq_regs->atq_len_enable | IXL_AQ_NUM);
1025 1.1 yamaguch
1026 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_bal,
1027 1.1 yamaguch ixl_dmamem_lo(&sc->sc_arq));
1028 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_bah,
1029 1.1 yamaguch ixl_dmamem_hi(&sc->sc_arq));
1030 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_len,
1031 1.1 yamaguch sc->sc_aq_regs->arq_len_enable | IXL_AQ_NUM);
1032 1.1 yamaguch
1033 1.1 yamaguch rv = ixl_get_version(sc);
1034 1.1 yamaguch if (rv == 0)
1035 1.1 yamaguch break;
1036 1.1 yamaguch if (rv != ETIMEDOUT) {
1037 1.1 yamaguch aprint_error(", unable to get firmware version\n");
1038 1.1 yamaguch goto shutdown;
1039 1.1 yamaguch }
1040 1.1 yamaguch
1041 1.1 yamaguch delaymsec(100);
1042 1.1 yamaguch }
1043 1.1 yamaguch
1044 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_tail, sc->sc_arq_prod);
1045 1.1 yamaguch
1046 1.1 yamaguch if (sc->sc_mac_type == I40E_MAC_X722)
1047 1.1 yamaguch sc->sc_nqueue_pairs_device = 128;
1048 1.1 yamaguch else
1049 1.1 yamaguch sc->sc_nqueue_pairs_device = 64;
1050 1.1 yamaguch
1051 1.1 yamaguch rv = ixl_get_hw_capabilities(sc);
1052 1.1 yamaguch if (rv != 0) {
1053 1.1 yamaguch aprint_error(", GET HW CAPABILITIES %s\n",
1054 1.1 yamaguch rv == ETIMEDOUT ? "timeout" : "error");
1055 1.1 yamaguch goto shutdown;
1056 1.1 yamaguch }
1057 1.1 yamaguch
1058 1.1 yamaguch sc->sc_nqueue_pairs = sc->sc_nqueue_pairs_max =
1059 1.1 yamaguch MIN((int)sc->sc_nqueue_pairs_device, ncpu);
1060 1.1 yamaguch sc->sc_tx_ring_ndescs = 1024;
1061 1.1 yamaguch sc->sc_rx_ring_ndescs = 1024;
1062 1.1 yamaguch
1063 1.1 yamaguch KASSERT(IXL_TXRX_PROCESS_UNLIMIT > sc->sc_rx_ring_ndescs);
1064 1.1 yamaguch KASSERT(IXL_TXRX_PROCESS_UNLIMIT > sc->sc_tx_ring_ndescs);
1065 1.1 yamaguch
1066 1.1 yamaguch if (ixl_get_mac(sc) != 0) {
1067 1.1 yamaguch /* error printed by ixl_get_mac */
1068 1.1 yamaguch goto shutdown;
1069 1.1 yamaguch }
1070 1.1 yamaguch
1071 1.1 yamaguch aprint_normal("\n");
1072 1.1 yamaguch aprint_naive("\n");
1073 1.1 yamaguch
1074 1.1 yamaguch aprint_normal_dev(self, "Ethernet address %s\n",
1075 1.1 yamaguch ether_sprintf(sc->sc_enaddr));
1076 1.1 yamaguch
1077 1.1 yamaguch rv = ixl_pxe_clear(sc);
1078 1.1 yamaguch if (rv != 0) {
1079 1.1 yamaguch aprint_debug_dev(self, "CLEAR PXE MODE %s\n",
1080 1.1 yamaguch rv == ETIMEDOUT ? "timeout" : "error");
1081 1.1 yamaguch }
1082 1.1 yamaguch
1083 1.1 yamaguch ixl_set_filter_control(sc);
1084 1.1 yamaguch
1085 1.1 yamaguch if (ixl_hmc(sc) != 0) {
1086 1.1 yamaguch /* error printed by ixl_hmc */
1087 1.1 yamaguch goto shutdown;
1088 1.1 yamaguch }
1089 1.1 yamaguch
1090 1.1 yamaguch if (ixl_lldp_shut(sc) != 0) {
1091 1.1 yamaguch /* error printed by ixl_lldp_shut */
1092 1.1 yamaguch goto free_hmc;
1093 1.1 yamaguch }
1094 1.1 yamaguch
1095 1.1 yamaguch if (ixl_phy_mask_ints(sc) != 0) {
1096 1.1 yamaguch /* error printed by ixl_phy_mask_ints */
1097 1.1 yamaguch goto free_hmc;
1098 1.1 yamaguch }
1099 1.1 yamaguch
1100 1.1 yamaguch if (ixl_restart_an(sc) != 0) {
1101 1.1 yamaguch /* error printed by ixl_restart_an */
1102 1.1 yamaguch goto free_hmc;
1103 1.1 yamaguch }
1104 1.1 yamaguch
1105 1.1 yamaguch if (ixl_get_switch_config(sc) != 0) {
1106 1.1 yamaguch /* error printed by ixl_get_switch_config */
1107 1.1 yamaguch goto free_hmc;
1108 1.1 yamaguch }
1109 1.1 yamaguch
1110 1.1 yamaguch if (ixl_get_phy_types(sc, &phy_types) != 0) {
1111 1.1 yamaguch /* error printed by ixl_get_phy_abilities */
1112 1.1 yamaguch goto free_hmc;
1113 1.1 yamaguch }
1114 1.1 yamaguch
1115 1.4 yamaguch rv = ixl_get_link_status_poll(sc);
1116 1.1 yamaguch if (rv != 0) {
1117 1.1 yamaguch aprint_error_dev(self, "GET LINK STATUS %s\n",
1118 1.1 yamaguch rv == ETIMEDOUT ? "timeout" : "error");
1119 1.1 yamaguch goto free_hmc;
1120 1.1 yamaguch }
1121 1.1 yamaguch
1122 1.1 yamaguch if (ixl_dmamem_alloc(sc, &sc->sc_scratch,
1123 1.1 yamaguch sizeof(struct ixl_aq_vsi_data), 8) != 0) {
1124 1.1 yamaguch aprint_error_dev(self, "unable to allocate scratch buffer\n");
1125 1.1 yamaguch goto free_hmc;
1126 1.1 yamaguch }
1127 1.1 yamaguch
1128 1.1 yamaguch if (ixl_get_vsi(sc) != 0) {
1129 1.1 yamaguch /* error printed by ixl_get_vsi */
1130 1.1 yamaguch goto free_scratch;
1131 1.1 yamaguch }
1132 1.1 yamaguch
1133 1.1 yamaguch if (ixl_set_vsi(sc) != 0) {
1134 1.1 yamaguch /* error printed by ixl_set_vsi */
1135 1.1 yamaguch goto free_scratch;
1136 1.1 yamaguch }
1137 1.1 yamaguch
1138 1.1 yamaguch if (ixl_queue_pairs_alloc(sc) != 0) {
1139 1.1 yamaguch /* error printed by ixl_queue_pairs_alloc */
1140 1.1 yamaguch goto free_scratch;
1141 1.1 yamaguch }
1142 1.1 yamaguch
1143 1.1 yamaguch if (ixl_setup_interrupts(sc) != 0) {
1144 1.1 yamaguch /* error printed by ixl_setup_interrupts */
1145 1.1 yamaguch goto free_queue_pairs;
1146 1.1 yamaguch }
1147 1.1 yamaguch
1148 1.1 yamaguch if (ixl_setup_stats(sc) != 0) {
1149 1.1 yamaguch aprint_error_dev(self, "failed to setup event counters\n");
1150 1.1 yamaguch goto teardown_intrs;
1151 1.1 yamaguch }
1152 1.1 yamaguch
1153 1.1 yamaguch if (ixl_setup_sysctls(sc) != 0) {
1154 1.1 yamaguch /* error printed by ixl_setup_sysctls */
1155 1.1 yamaguch goto teardown_stats;
1156 1.1 yamaguch }
1157 1.1 yamaguch
1158 1.1 yamaguch snprintf(xnamebuf, sizeof(xnamebuf), "%s_wq_cfg", device_xname(self));
1159 1.1 yamaguch sc->sc_workq = ixl_workq_create(xnamebuf, IXL_WORKQUEUE_PRI,
1160 1.1 yamaguch IPL_NET, WQ_PERCPU | WQ_MPSAFE);
1161 1.1 yamaguch if (sc->sc_workq == NULL)
1162 1.1 yamaguch goto teardown_sysctls;
1163 1.1 yamaguch
1164 1.1 yamaguch snprintf(xnamebuf, sizeof(xnamebuf), "%s_wq_txrx", device_xname(self));
1165 1.1 yamaguch sc->sc_workq_txrx = ixl_workq_create(xnamebuf, IXL_WORKQUEUE_PRI,
1166 1.1 yamaguch IPL_NET, WQ_PERCPU | WQ_MPSAFE);
1167 1.1 yamaguch if (sc->sc_workq_txrx == NULL)
1168 1.1 yamaguch goto teardown_wqs;
1169 1.1 yamaguch
1170 1.1 yamaguch snprintf(xnamebuf, sizeof(xnamebuf), "%s_atq_cv", device_xname(self));
1171 1.1 yamaguch cv_init(&sc->sc_atq_cv, xnamebuf);
1172 1.1 yamaguch
1173 1.1 yamaguch strlcpy(ifp->if_xname, device_xname(self), IFNAMSIZ);
1174 1.1 yamaguch
1175 1.1 yamaguch ifp->if_softc = sc;
1176 1.1 yamaguch ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1177 1.1 yamaguch ifp->if_extflags = IFEF_MPSAFE;
1178 1.1 yamaguch ifp->if_ioctl = ixl_ioctl;
1179 1.1 yamaguch ifp->if_start = ixl_start;
1180 1.1 yamaguch ifp->if_transmit = ixl_transmit;
1181 1.1 yamaguch ifp->if_watchdog = ixl_watchdog;
1182 1.1 yamaguch ifp->if_init = ixl_init;
1183 1.1 yamaguch ifp->if_stop = ixl_stop;
1184 1.1 yamaguch IFQ_SET_MAXLEN(&ifp->if_snd, sc->sc_tx_ring_ndescs);
1185 1.1 yamaguch IFQ_SET_READY(&ifp->if_snd);
1186 1.1 yamaguch #if 0
1187 1.1 yamaguch ifp->if_capabilities |= IFCAP_CSUM_IPv4_Rx |
1188 1.1 yamaguch IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv4_Rx |
1189 1.1 yamaguch IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv4_Rx;
1190 1.1 yamaguch #endif
1191 1.1 yamaguch sc->sc_ec.ec_capabilities |= ETHERCAP_VLAN_MTU;
1192 1.1 yamaguch #if 0
1193 1.1 yamaguch sc->sc_ec.ec_capabilities |= ETHERCAP_VLAN_HWTAGGING;
1194 1.1 yamaguch #endif
1195 1.1 yamaguch
1196 1.1 yamaguch sc->sc_ec.ec_ifmedia = &sc->sc_media;
1197 1.1 yamaguch ifmedia_init(&sc->sc_media, IFM_IMASK, ixl_media_change,
1198 1.1 yamaguch ixl_media_status);
1199 1.1 yamaguch
1200 1.1 yamaguch ixl_media_add(sc, phy_types);
1201 1.1 yamaguch ifmedia_add(&sc->sc_media, IFM_ETHER | IFM_AUTO, 0, NULL);
1202 1.1 yamaguch ifmedia_set(&sc->sc_media, IFM_ETHER | IFM_AUTO);
1203 1.1 yamaguch
1204 1.1 yamaguch if_attach(ifp);
1205 1.1 yamaguch if_deferred_start_init(ifp, NULL);
1206 1.1 yamaguch ether_ifattach(ifp, sc->sc_enaddr);
1207 1.1 yamaguch ether_set_ifflags_cb(&sc->sc_ec, ixl_ifflags_cb);
1208 1.1 yamaguch
1209 1.10 yamaguch (void)ixl_get_link_status_poll(sc);
1210 1.4 yamaguch ixl_work_set(&sc->sc_link_state_task, ixl_get_link_status, sc);
1211 1.1 yamaguch
1212 1.1 yamaguch ixl_config_other_intr(sc);
1213 1.10 yamaguch ixl_enable_other_intr(sc);
1214 1.1 yamaguch
1215 1.1 yamaguch ixl_set_macvlan(sc);
1216 1.1 yamaguch
1217 1.1 yamaguch sc->sc_txrx_workqueue = true;
1218 1.1 yamaguch sc->sc_tx_process_limit = IXL_TX_PROCESS_LIMIT;
1219 1.1 yamaguch sc->sc_rx_process_limit = IXL_RX_PROCESS_LIMIT;
1220 1.1 yamaguch sc->sc_tx_intr_process_limit = IXL_TX_INTR_PROCESS_LIMIT;
1221 1.1 yamaguch sc->sc_rx_intr_process_limit = IXL_RX_INTR_PROCESS_LIMIT;
1222 1.1 yamaguch
1223 1.1 yamaguch if (pmf_device_register(self, NULL, NULL) != true)
1224 1.1 yamaguch aprint_debug_dev(self, "couldn't establish power handler\n");
1225 1.1 yamaguch sc->sc_attached = true;
1226 1.1 yamaguch return;
1227 1.1 yamaguch
1228 1.1 yamaguch teardown_wqs:
1229 1.1 yamaguch config_finalize_register(self, ixl_workqs_teardown);
1230 1.1 yamaguch teardown_sysctls:
1231 1.1 yamaguch ixl_teardown_sysctls(sc);
1232 1.1 yamaguch teardown_stats:
1233 1.1 yamaguch ixl_teardown_stats(sc);
1234 1.1 yamaguch teardown_intrs:
1235 1.1 yamaguch ixl_teardown_interrupts(sc);
1236 1.1 yamaguch free_queue_pairs:
1237 1.1 yamaguch ixl_queue_pairs_free(sc);
1238 1.1 yamaguch free_scratch:
1239 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_scratch);
1240 1.1 yamaguch free_hmc:
1241 1.1 yamaguch ixl_hmc_free(sc);
1242 1.1 yamaguch shutdown:
1243 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_head, 0);
1244 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_head, 0);
1245 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_tail, 0);
1246 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_tail, 0);
1247 1.1 yamaguch
1248 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_bal, 0);
1249 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_bah, 0);
1250 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_len, 0);
1251 1.1 yamaguch
1252 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_bal, 0);
1253 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_bah, 0);
1254 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_len, 0);
1255 1.1 yamaguch
1256 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_arq),
1257 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_arq),
1258 1.1 yamaguch BUS_DMASYNC_POSTREAD);
1259 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
1260 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq),
1261 1.1 yamaguch BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1262 1.1 yamaguch
1263 1.1 yamaguch ixl_arq_unfill(sc);
1264 1.1 yamaguch free_arq:
1265 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_arq);
1266 1.1 yamaguch free_atq:
1267 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_atq);
1268 1.1 yamaguch unmap:
1269 1.1 yamaguch mutex_destroy(&sc->sc_atq_lock);
1270 1.1 yamaguch bus_space_unmap(sc->sc_memt, sc->sc_memh, sc->sc_mems);
1271 1.1 yamaguch mutex_destroy(&sc->sc_cfg_lock);
1272 1.1 yamaguch sc->sc_mems = 0;
1273 1.1 yamaguch
1274 1.1 yamaguch sc->sc_attached = false;
1275 1.1 yamaguch }
1276 1.1 yamaguch
1277 1.1 yamaguch static int
1278 1.1 yamaguch ixl_detach(device_t self, int flags)
1279 1.1 yamaguch {
1280 1.1 yamaguch struct ixl_softc *sc = device_private(self);
1281 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
1282 1.1 yamaguch
1283 1.1 yamaguch if (!sc->sc_attached)
1284 1.1 yamaguch return 0;
1285 1.1 yamaguch
1286 1.1 yamaguch ixl_stop(ifp, 1);
1287 1.1 yamaguch
1288 1.10 yamaguch ixl_disable_other_intr(sc);
1289 1.10 yamaguch
1290 1.10 yamaguch /* wait for ATQ handler */
1291 1.10 yamaguch mutex_enter(&sc->sc_atq_lock);
1292 1.10 yamaguch mutex_exit(&sc->sc_atq_lock);
1293 1.10 yamaguch
1294 1.10 yamaguch ixl_work_wait(sc->sc_workq, &sc->sc_arq_task);
1295 1.10 yamaguch ixl_work_wait(sc->sc_workq, &sc->sc_link_state_task);
1296 1.10 yamaguch
1297 1.1 yamaguch if (sc->sc_workq != NULL) {
1298 1.1 yamaguch ixl_workq_destroy(sc->sc_workq);
1299 1.1 yamaguch sc->sc_workq = NULL;
1300 1.1 yamaguch }
1301 1.1 yamaguch
1302 1.1 yamaguch if (sc->sc_workq_txrx != NULL) {
1303 1.1 yamaguch ixl_workq_destroy(sc->sc_workq_txrx);
1304 1.1 yamaguch sc->sc_workq_txrx = NULL;
1305 1.1 yamaguch }
1306 1.1 yamaguch
1307 1.1 yamaguch ifmedia_delete_instance(&sc->sc_media, IFM_INST_ANY);
1308 1.1 yamaguch ether_ifdetach(ifp);
1309 1.1 yamaguch if_detach(ifp);
1310 1.1 yamaguch
1311 1.1 yamaguch ixl_teardown_interrupts(sc);
1312 1.1 yamaguch ixl_teardown_stats(sc);
1313 1.1 yamaguch
1314 1.1 yamaguch ixl_queue_pairs_free(sc);
1315 1.1 yamaguch
1316 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_scratch);
1317 1.1 yamaguch ixl_hmc_free(sc);
1318 1.1 yamaguch
1319 1.1 yamaguch /* shutdown */
1320 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_head, 0);
1321 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_head, 0);
1322 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_tail, 0);
1323 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_tail, 0);
1324 1.1 yamaguch
1325 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_bal, 0);
1326 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_bah, 0);
1327 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_len, 0);
1328 1.1 yamaguch
1329 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_bal, 0);
1330 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_bah, 0);
1331 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_len, 0);
1332 1.1 yamaguch
1333 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_arq),
1334 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_arq),
1335 1.1 yamaguch BUS_DMASYNC_POSTREAD);
1336 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
1337 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq),
1338 1.1 yamaguch BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1339 1.1 yamaguch
1340 1.1 yamaguch ixl_arq_unfill(sc);
1341 1.1 yamaguch
1342 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_arq);
1343 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_atq);
1344 1.1 yamaguch
1345 1.1 yamaguch cv_destroy(&sc->sc_atq_cv);
1346 1.1 yamaguch mutex_destroy(&sc->sc_atq_lock);
1347 1.1 yamaguch
1348 1.1 yamaguch if (sc->sc_mems != 0) {
1349 1.1 yamaguch bus_space_unmap(sc->sc_memt, sc->sc_memh, sc->sc_mems);
1350 1.1 yamaguch sc->sc_mems = 0;
1351 1.1 yamaguch }
1352 1.1 yamaguch
1353 1.1 yamaguch mutex_destroy(&sc->sc_cfg_lock);
1354 1.1 yamaguch
1355 1.1 yamaguch return 0;
1356 1.1 yamaguch }
1357 1.1 yamaguch
1358 1.1 yamaguch static int
1359 1.1 yamaguch ixl_workqs_teardown(device_t self)
1360 1.1 yamaguch {
1361 1.1 yamaguch struct ixl_softc *sc = device_private(self);
1362 1.1 yamaguch
1363 1.1 yamaguch if (sc->sc_workq != NULL) {
1364 1.1 yamaguch ixl_workq_destroy(sc->sc_workq);
1365 1.1 yamaguch sc->sc_workq = NULL;
1366 1.1 yamaguch }
1367 1.1 yamaguch
1368 1.1 yamaguch if (sc->sc_workq_txrx != NULL) {
1369 1.1 yamaguch ixl_workq_destroy(sc->sc_workq_txrx);
1370 1.1 yamaguch sc->sc_workq_txrx = NULL;
1371 1.1 yamaguch }
1372 1.1 yamaguch
1373 1.1 yamaguch return 0;
1374 1.1 yamaguch }
1375 1.1 yamaguch
1376 1.1 yamaguch static void
1377 1.1 yamaguch ixl_media_add(struct ixl_softc *sc, uint64_t phy_types)
1378 1.1 yamaguch {
1379 1.1 yamaguch struct ifmedia *ifm = &sc->sc_media;
1380 1.1 yamaguch const struct ixl_phy_type *itype;
1381 1.1 yamaguch unsigned int i;
1382 1.1 yamaguch
1383 1.1 yamaguch for (i = 0; i < __arraycount(ixl_phy_type_map); i++) {
1384 1.1 yamaguch itype = &ixl_phy_type_map[i];
1385 1.1 yamaguch
1386 1.1 yamaguch if (ISSET(phy_types, itype->phy_type)) {
1387 1.1 yamaguch ifmedia_add(ifm,
1388 1.1 yamaguch IFM_ETHER | IFM_FDX | itype->ifm_type, 0, NULL);
1389 1.1 yamaguch
1390 1.1 yamaguch if (itype->ifm_type == IFM_100_TX) {
1391 1.1 yamaguch ifmedia_add(ifm, IFM_ETHER | itype->ifm_type,
1392 1.1 yamaguch 0, NULL);
1393 1.1 yamaguch }
1394 1.1 yamaguch }
1395 1.1 yamaguch }
1396 1.1 yamaguch }
1397 1.1 yamaguch
1398 1.1 yamaguch static void
1399 1.1 yamaguch ixl_media_status(struct ifnet *ifp, struct ifmediareq *ifmr)
1400 1.1 yamaguch {
1401 1.1 yamaguch struct ixl_softc *sc = ifp->if_softc;
1402 1.1 yamaguch
1403 1.1 yamaguch ifmr->ifm_status = sc->sc_media_status;
1404 1.1 yamaguch ifmr->ifm_active = sc->sc_media_active;
1405 1.1 yamaguch
1406 1.1 yamaguch mutex_enter(&sc->sc_cfg_lock);
1407 1.1 yamaguch if (ifp->if_link_state == LINK_STATE_UP)
1408 1.1 yamaguch SET(ifmr->ifm_status, IFM_ACTIVE);
1409 1.1 yamaguch mutex_exit(&sc->sc_cfg_lock);
1410 1.1 yamaguch }
1411 1.1 yamaguch
1412 1.1 yamaguch static int
1413 1.1 yamaguch ixl_media_change(struct ifnet *ifp)
1414 1.1 yamaguch {
1415 1.1 yamaguch
1416 1.1 yamaguch return 0;
1417 1.1 yamaguch }
1418 1.1 yamaguch
1419 1.1 yamaguch static void
1420 1.1 yamaguch ixl_watchdog(struct ifnet *ifp)
1421 1.1 yamaguch {
1422 1.1 yamaguch
1423 1.1 yamaguch }
1424 1.1 yamaguch
1425 1.1 yamaguch static void
1426 1.1 yamaguch ixl_del_all_multiaddr(struct ixl_softc *sc)
1427 1.1 yamaguch {
1428 1.1 yamaguch struct ethercom *ec = &sc->sc_ec;
1429 1.1 yamaguch struct ether_multi *enm;
1430 1.1 yamaguch struct ether_multistep step;
1431 1.1 yamaguch
1432 1.1 yamaguch ETHER_LOCK(ec);
1433 1.1 yamaguch for (ETHER_FIRST_MULTI(step, ec, enm); enm != NULL;
1434 1.1 yamaguch ETHER_NEXT_MULTI(step, enm)) {
1435 1.1 yamaguch ixl_remove_macvlan(sc, enm->enm_addrlo, 0,
1436 1.1 yamaguch IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN);
1437 1.1 yamaguch }
1438 1.1 yamaguch ETHER_UNLOCK(ec);
1439 1.1 yamaguch }
1440 1.1 yamaguch
1441 1.1 yamaguch static int
1442 1.1 yamaguch ixl_add_multi(struct ixl_softc *sc, uint8_t *addrlo, uint8_t *addrhi)
1443 1.1 yamaguch {
1444 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
1445 1.1 yamaguch int rv;
1446 1.1 yamaguch
1447 1.1 yamaguch if (ISSET(ifp->if_flags, IFF_ALLMULTI))
1448 1.1 yamaguch return 0;
1449 1.1 yamaguch
1450 1.1 yamaguch if (memcmp(addrlo, addrhi, ETHER_ADDR_LEN) != 0) {
1451 1.1 yamaguch ixl_del_all_multiaddr(sc);
1452 1.1 yamaguch SET(ifp->if_flags, IFF_ALLMULTI);
1453 1.8 yamaguch return ENETRESET;
1454 1.1 yamaguch }
1455 1.1 yamaguch
1456 1.1 yamaguch rv = ixl_add_macvlan(sc, addrlo, 0,
1457 1.1 yamaguch IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN);
1458 1.1 yamaguch
1459 1.7 yamaguch if (rv == ENOSPC) {
1460 1.1 yamaguch ixl_del_all_multiaddr(sc);
1461 1.1 yamaguch SET(ifp->if_flags, IFF_ALLMULTI);
1462 1.8 yamaguch return ENETRESET;
1463 1.1 yamaguch }
1464 1.1 yamaguch
1465 1.7 yamaguch return rv;
1466 1.1 yamaguch }
1467 1.1 yamaguch
1468 1.8 yamaguch static int
1469 1.1 yamaguch ixl_del_multi(struct ixl_softc *sc, uint8_t *addrlo, uint8_t *addrhi)
1470 1.1 yamaguch {
1471 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
1472 1.1 yamaguch struct ethercom *ec = &sc->sc_ec;
1473 1.1 yamaguch struct ether_multi *enm, *enm_last;
1474 1.1 yamaguch struct ether_multistep step;
1475 1.8 yamaguch int error, rv = 0;
1476 1.1 yamaguch
1477 1.1 yamaguch if (!ISSET(ifp->if_flags, IFF_ALLMULTI)) {
1478 1.1 yamaguch ixl_remove_macvlan(sc, addrlo, 0,
1479 1.1 yamaguch IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN);
1480 1.8 yamaguch return 0;
1481 1.1 yamaguch }
1482 1.1 yamaguch
1483 1.1 yamaguch ETHER_LOCK(ec);
1484 1.1 yamaguch for (ETHER_FIRST_MULTI(step, ec, enm); enm != NULL;
1485 1.1 yamaguch ETHER_NEXT_MULTI(step, enm)) {
1486 1.1 yamaguch if (memcmp(enm->enm_addrlo, enm->enm_addrhi,
1487 1.1 yamaguch ETHER_ADDR_LEN) != 0) {
1488 1.8 yamaguch goto out;
1489 1.1 yamaguch }
1490 1.1 yamaguch }
1491 1.1 yamaguch
1492 1.1 yamaguch for (ETHER_FIRST_MULTI(step, ec, enm); enm != NULL;
1493 1.1 yamaguch ETHER_NEXT_MULTI(step, enm)) {
1494 1.8 yamaguch error = ixl_add_macvlan(sc, enm->enm_addrlo, 0,
1495 1.1 yamaguch IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN);
1496 1.8 yamaguch if (error != 0)
1497 1.1 yamaguch break;
1498 1.1 yamaguch }
1499 1.1 yamaguch
1500 1.1 yamaguch if (enm != NULL) {
1501 1.1 yamaguch enm_last = enm;
1502 1.1 yamaguch for (ETHER_FIRST_MULTI(step, ec, enm); enm != NULL;
1503 1.1 yamaguch ETHER_NEXT_MULTI(step, enm)) {
1504 1.1 yamaguch if (enm == enm_last)
1505 1.1 yamaguch break;
1506 1.1 yamaguch
1507 1.1 yamaguch ixl_remove_macvlan(sc, enm->enm_addrlo, 0,
1508 1.1 yamaguch IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN);
1509 1.1 yamaguch }
1510 1.1 yamaguch } else {
1511 1.1 yamaguch CLR(ifp->if_flags, IFF_ALLMULTI);
1512 1.8 yamaguch rv = ENETRESET;
1513 1.1 yamaguch }
1514 1.1 yamaguch
1515 1.8 yamaguch out:
1516 1.1 yamaguch ETHER_UNLOCK(ec);
1517 1.8 yamaguch return rv;
1518 1.1 yamaguch }
1519 1.1 yamaguch
1520 1.1 yamaguch static int
1521 1.1 yamaguch ixl_ioctl(struct ifnet *ifp, u_long cmd, void *data)
1522 1.1 yamaguch {
1523 1.1 yamaguch struct ifreq *ifr = (struct ifreq *)data;
1524 1.1 yamaguch struct ixl_softc *sc = (struct ixl_softc *)ifp->if_softc;
1525 1.1 yamaguch struct ixl_tx_ring *txr;
1526 1.1 yamaguch struct ixl_rx_ring *rxr;
1527 1.1 yamaguch const struct sockaddr *sa;
1528 1.1 yamaguch uint8_t addrhi[ETHER_ADDR_LEN], addrlo[ETHER_ADDR_LEN];
1529 1.1 yamaguch int s, error = 0;
1530 1.1 yamaguch unsigned int i;
1531 1.1 yamaguch
1532 1.1 yamaguch switch (cmd) {
1533 1.1 yamaguch case SIOCADDMULTI:
1534 1.1 yamaguch sa = ifreq_getaddr(SIOCADDMULTI, ifr);
1535 1.1 yamaguch if (ether_addmulti(sa, &sc->sc_ec) == ENETRESET) {
1536 1.1 yamaguch error = ether_multiaddr(sa, addrlo, addrhi);
1537 1.1 yamaguch if (error != 0)
1538 1.1 yamaguch return error;
1539 1.1 yamaguch
1540 1.8 yamaguch error = ixl_add_multi(sc, addrlo, addrhi);
1541 1.8 yamaguch if (error != 0 && error != ENETRESET) {
1542 1.1 yamaguch ether_delmulti(sa, &sc->sc_ec);
1543 1.1 yamaguch error = EIO;
1544 1.1 yamaguch }
1545 1.1 yamaguch }
1546 1.1 yamaguch break;
1547 1.1 yamaguch
1548 1.1 yamaguch case SIOCDELMULTI:
1549 1.1 yamaguch sa = ifreq_getaddr(SIOCDELMULTI, ifr);
1550 1.1 yamaguch if (ether_delmulti(sa, &sc->sc_ec) == ENETRESET) {
1551 1.1 yamaguch error = ether_multiaddr(sa, addrlo, addrhi);
1552 1.1 yamaguch if (error != 0)
1553 1.1 yamaguch return error;
1554 1.1 yamaguch
1555 1.8 yamaguch error = ixl_del_multi(sc, addrlo, addrhi);
1556 1.1 yamaguch }
1557 1.1 yamaguch break;
1558 1.1 yamaguch
1559 1.1 yamaguch case SIOCGIFDATA:
1560 1.1 yamaguch case SIOCZIFDATA:
1561 1.1 yamaguch ifp->if_ipackets = 0;
1562 1.1 yamaguch ifp->if_ibytes = 0;
1563 1.1 yamaguch ifp->if_iqdrops = 0;
1564 1.1 yamaguch ifp->if_ierrors = 0;
1565 1.1 yamaguch ifp->if_opackets = 0;
1566 1.1 yamaguch ifp->if_obytes = 0;
1567 1.1 yamaguch ifp->if_omcasts = 0;
1568 1.1 yamaguch
1569 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
1570 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
1571 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
1572 1.1 yamaguch
1573 1.1 yamaguch mutex_enter(&rxr->rxr_lock);
1574 1.1 yamaguch ifp->if_ipackets += rxr->rxr_ipackets;
1575 1.1 yamaguch ifp->if_ibytes += rxr->rxr_ibytes;
1576 1.1 yamaguch ifp->if_iqdrops += rxr->rxr_iqdrops;
1577 1.1 yamaguch ifp->if_ierrors += rxr->rxr_ierrors;
1578 1.1 yamaguch if (cmd == SIOCZIFDATA) {
1579 1.1 yamaguch rxr->rxr_ipackets = 0;
1580 1.1 yamaguch rxr->rxr_ibytes = 0;
1581 1.1 yamaguch rxr->rxr_iqdrops = 0;
1582 1.1 yamaguch rxr->rxr_ierrors = 0;
1583 1.1 yamaguch }
1584 1.1 yamaguch mutex_exit(&rxr->rxr_lock);
1585 1.1 yamaguch
1586 1.1 yamaguch mutex_enter(&txr->txr_lock);
1587 1.1 yamaguch ifp->if_opackets += txr->txr_opackets;
1588 1.1 yamaguch ifp->if_obytes += txr->txr_opackets;
1589 1.1 yamaguch ifp->if_omcasts += txr->txr_omcasts;
1590 1.1 yamaguch if (cmd == SIOCZIFDATA) {
1591 1.1 yamaguch txr->txr_opackets = 0;
1592 1.1 yamaguch txr->txr_opackets = 0;
1593 1.1 yamaguch txr->txr_omcasts = 0;
1594 1.1 yamaguch }
1595 1.1 yamaguch mutex_exit(&txr->txr_lock);
1596 1.1 yamaguch }
1597 1.1 yamaguch /* FALLTHROUGH */
1598 1.1 yamaguch default:
1599 1.1 yamaguch s = splnet();
1600 1.1 yamaguch error = ether_ioctl(ifp, cmd, data);
1601 1.1 yamaguch splx(s);
1602 1.1 yamaguch }
1603 1.1 yamaguch
1604 1.1 yamaguch if (error == ENETRESET)
1605 1.1 yamaguch error = ixl_iff(sc);
1606 1.1 yamaguch
1607 1.1 yamaguch return error;
1608 1.1 yamaguch }
1609 1.1 yamaguch
1610 1.1 yamaguch static enum i40e_mac_type
1611 1.1 yamaguch ixl_mactype(pci_product_id_t id)
1612 1.1 yamaguch {
1613 1.1 yamaguch
1614 1.1 yamaguch switch (id) {
1615 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_SFP:
1616 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_KX_B:
1617 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_KX_C:
1618 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_QSFP_A:
1619 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_QSFP_B:
1620 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_QSFP_C:
1621 1.1 yamaguch case PCI_PRODUCT_INTEL_X710_10G_T:
1622 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_20G_BP_1:
1623 1.1 yamaguch case PCI_PRODUCT_INTEL_XL710_20G_BP_2:
1624 1.1 yamaguch case PCI_PRODUCT_INTEL_X710_T4_10G:
1625 1.1 yamaguch case PCI_PRODUCT_INTEL_XXV710_25G_BP:
1626 1.1 yamaguch case PCI_PRODUCT_INTEL_XXV710_25G_SFP28:
1627 1.1 yamaguch return I40E_MAC_XL710;
1628 1.1 yamaguch
1629 1.1 yamaguch case PCI_PRODUCT_INTEL_X722_KX:
1630 1.1 yamaguch case PCI_PRODUCT_INTEL_X722_QSFP:
1631 1.1 yamaguch case PCI_PRODUCT_INTEL_X722_SFP:
1632 1.1 yamaguch case PCI_PRODUCT_INTEL_X722_1G_BASET:
1633 1.1 yamaguch case PCI_PRODUCT_INTEL_X722_10G_BASET:
1634 1.1 yamaguch case PCI_PRODUCT_INTEL_X722_I_SFP:
1635 1.1 yamaguch return I40E_MAC_X722;
1636 1.1 yamaguch }
1637 1.1 yamaguch
1638 1.1 yamaguch return I40E_MAC_GENERIC;
1639 1.1 yamaguch }
1640 1.1 yamaguch
1641 1.1 yamaguch static inline void *
1642 1.1 yamaguch ixl_hmc_kva(struct ixl_softc *sc, enum ixl_hmc_types type, unsigned int i)
1643 1.1 yamaguch {
1644 1.1 yamaguch uint8_t *kva = IXL_DMA_KVA(&sc->sc_hmc_pd);
1645 1.1 yamaguch struct ixl_hmc_entry *e = &sc->sc_hmc_entries[type];
1646 1.1 yamaguch
1647 1.1 yamaguch if (i >= e->hmc_count)
1648 1.1 yamaguch return NULL;
1649 1.1 yamaguch
1650 1.1 yamaguch kva += e->hmc_base;
1651 1.1 yamaguch kva += i * e->hmc_size;
1652 1.1 yamaguch
1653 1.1 yamaguch return kva;
1654 1.1 yamaguch }
1655 1.1 yamaguch
1656 1.1 yamaguch static inline size_t
1657 1.1 yamaguch ixl_hmc_len(struct ixl_softc *sc, enum ixl_hmc_types type)
1658 1.1 yamaguch {
1659 1.1 yamaguch struct ixl_hmc_entry *e = &sc->sc_hmc_entries[type];
1660 1.1 yamaguch
1661 1.1 yamaguch return e->hmc_size;
1662 1.1 yamaguch }
1663 1.1 yamaguch
1664 1.1 yamaguch static void
1665 1.1 yamaguch ixl_enable_queue_intr(struct ixl_softc *sc, struct ixl_queue_pair *qp)
1666 1.1 yamaguch {
1667 1.1 yamaguch struct ixl_rx_ring *rxr = qp->qp_rxr;
1668 1.1 yamaguch
1669 1.1 yamaguch ixl_wr(sc, I40E_PFINT_DYN_CTLN(rxr->rxr_qid),
1670 1.1 yamaguch I40E_PFINT_DYN_CTLN_INTENA_MASK |
1671 1.1 yamaguch I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
1672 1.1 yamaguch (IXL_NOITR << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT));
1673 1.1 yamaguch ixl_flush(sc);
1674 1.1 yamaguch }
1675 1.1 yamaguch
1676 1.1 yamaguch static void
1677 1.1 yamaguch ixl_disable_queue_intr(struct ixl_softc *sc, struct ixl_queue_pair *qp)
1678 1.1 yamaguch {
1679 1.1 yamaguch struct ixl_rx_ring *rxr = qp->qp_rxr;
1680 1.1 yamaguch
1681 1.1 yamaguch ixl_wr(sc, I40E_PFINT_DYN_CTLN(rxr->rxr_qid),
1682 1.1 yamaguch (IXL_NOITR << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT));
1683 1.1 yamaguch ixl_flush(sc);
1684 1.1 yamaguch }
1685 1.1 yamaguch
1686 1.1 yamaguch static void
1687 1.1 yamaguch ixl_enable_other_intr(struct ixl_softc *sc)
1688 1.1 yamaguch {
1689 1.1 yamaguch
1690 1.1 yamaguch ixl_wr(sc, I40E_PFINT_DYN_CTL0,
1691 1.1 yamaguch I40E_PFINT_DYN_CTL0_INTENA_MASK |
1692 1.1 yamaguch I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
1693 1.1 yamaguch (IXL_NOITR << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT));
1694 1.1 yamaguch ixl_flush(sc);
1695 1.1 yamaguch }
1696 1.1 yamaguch
1697 1.1 yamaguch static void
1698 1.1 yamaguch ixl_disable_other_intr(struct ixl_softc *sc)
1699 1.1 yamaguch {
1700 1.1 yamaguch
1701 1.1 yamaguch ixl_wr(sc, I40E_PFINT_DYN_CTL0,
1702 1.1 yamaguch (IXL_NOITR << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT));
1703 1.1 yamaguch ixl_flush(sc);
1704 1.1 yamaguch }
1705 1.1 yamaguch
1706 1.1 yamaguch static int
1707 1.1 yamaguch ixl_reinit(struct ixl_softc *sc)
1708 1.1 yamaguch {
1709 1.1 yamaguch struct ixl_rx_ring *rxr;
1710 1.1 yamaguch struct ixl_tx_ring *txr;
1711 1.1 yamaguch unsigned int i;
1712 1.1 yamaguch uint32_t reg;
1713 1.1 yamaguch
1714 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_cfg_lock));
1715 1.1 yamaguch
1716 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
1717 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
1718 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
1719 1.1 yamaguch
1720 1.1 yamaguch txr->txr_cons = txr->txr_prod = 0;
1721 1.1 yamaguch rxr->rxr_cons = rxr->rxr_prod = 0;
1722 1.1 yamaguch
1723 1.1 yamaguch ixl_txr_config(sc, txr);
1724 1.1 yamaguch ixl_rxr_config(sc, rxr);
1725 1.1 yamaguch }
1726 1.1 yamaguch
1727 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_hmc_pd),
1728 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_hmc_pd), BUS_DMASYNC_PREWRITE);
1729 1.1 yamaguch
1730 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
1731 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
1732 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
1733 1.1 yamaguch
1734 1.1 yamaguch ixl_wr(sc, I40E_QTX_CTL(i), I40E_QTX_CTL_PF_QUEUE |
1735 1.1 yamaguch (sc->sc_pf_id << I40E_QTX_CTL_PF_INDX_SHIFT));
1736 1.1 yamaguch ixl_flush(sc);
1737 1.1 yamaguch
1738 1.1 yamaguch ixl_wr(sc, txr->txr_tail, txr->txr_prod);
1739 1.1 yamaguch ixl_wr(sc, rxr->rxr_tail, rxr->rxr_prod);
1740 1.1 yamaguch
1741 1.1 yamaguch
1742 1.1 yamaguch /* ixl_rxfill() needs lock held */
1743 1.1 yamaguch mutex_enter(&rxr->rxr_lock);
1744 1.1 yamaguch ixl_rxfill(sc, rxr);
1745 1.1 yamaguch mutex_exit(&rxr->rxr_lock);
1746 1.1 yamaguch
1747 1.1 yamaguch reg = ixl_rd(sc, I40E_QRX_ENA(i));
1748 1.1 yamaguch SET(reg, I40E_QRX_ENA_QENA_REQ_MASK);
1749 1.1 yamaguch ixl_wr(sc, I40E_QRX_ENA(i), reg);
1750 1.1 yamaguch if (ixl_rxr_enabled(sc, rxr) != 0)
1751 1.1 yamaguch goto stop;
1752 1.1 yamaguch
1753 1.1 yamaguch ixl_txr_qdis(sc, txr, 1);
1754 1.1 yamaguch
1755 1.1 yamaguch reg = ixl_rd(sc, I40E_QTX_ENA(i));
1756 1.1 yamaguch SET(reg, I40E_QTX_ENA_QENA_REQ_MASK);
1757 1.1 yamaguch ixl_wr(sc, I40E_QTX_ENA(i), reg);
1758 1.1 yamaguch
1759 1.1 yamaguch if (ixl_txr_enabled(sc, txr) != 0)
1760 1.1 yamaguch goto stop;
1761 1.1 yamaguch }
1762 1.1 yamaguch
1763 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_hmc_pd),
1764 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_hmc_pd), BUS_DMASYNC_POSTWRITE);
1765 1.1 yamaguch
1766 1.1 yamaguch return 0;
1767 1.1 yamaguch
1768 1.1 yamaguch stop:
1769 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_hmc_pd),
1770 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_hmc_pd), BUS_DMASYNC_POSTWRITE);
1771 1.1 yamaguch
1772 1.1 yamaguch return ETIMEDOUT;
1773 1.1 yamaguch }
1774 1.1 yamaguch
1775 1.1 yamaguch static int
1776 1.1 yamaguch ixl_init_locked(struct ixl_softc *sc)
1777 1.1 yamaguch {
1778 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
1779 1.1 yamaguch unsigned int i;
1780 1.1 yamaguch int error;
1781 1.1 yamaguch
1782 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_cfg_lock));
1783 1.1 yamaguch
1784 1.1 yamaguch if (sc->sc_dead) {
1785 1.1 yamaguch return ENXIO;
1786 1.1 yamaguch }
1787 1.1 yamaguch
1788 1.1 yamaguch if (sc->sc_intrtype != PCI_INTR_TYPE_MSIX)
1789 1.1 yamaguch sc->sc_nqueue_pairs = 1;
1790 1.1 yamaguch else
1791 1.1 yamaguch sc->sc_nqueue_pairs = sc->sc_nqueue_pairs_max;
1792 1.1 yamaguch
1793 1.1 yamaguch error = ixl_reinit(sc);
1794 1.1 yamaguch if (error) {
1795 1.1 yamaguch ixl_stop_locked(sc);
1796 1.1 yamaguch return error;
1797 1.1 yamaguch }
1798 1.1 yamaguch
1799 1.1 yamaguch SET(ifp->if_flags, IFF_RUNNING);
1800 1.1 yamaguch CLR(ifp->if_flags, IFF_OACTIVE);
1801 1.4 yamaguch
1802 1.10 yamaguch (void)ixl_get_link_status(sc);
1803 1.1 yamaguch
1804 1.1 yamaguch ixl_config_rss(sc);
1805 1.1 yamaguch ixl_config_queue_intr(sc);
1806 1.1 yamaguch
1807 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
1808 1.1 yamaguch ixl_enable_queue_intr(sc, &sc->sc_qps[i]);
1809 1.1 yamaguch }
1810 1.1 yamaguch
1811 1.1 yamaguch error = ixl_iff(sc);
1812 1.1 yamaguch if (error) {
1813 1.1 yamaguch ixl_stop_locked(sc);
1814 1.1 yamaguch return error;
1815 1.1 yamaguch }
1816 1.1 yamaguch
1817 1.1 yamaguch return 0;
1818 1.1 yamaguch }
1819 1.1 yamaguch
1820 1.1 yamaguch static int
1821 1.1 yamaguch ixl_init(struct ifnet *ifp)
1822 1.1 yamaguch {
1823 1.1 yamaguch struct ixl_softc *sc = ifp->if_softc;
1824 1.1 yamaguch int error;
1825 1.1 yamaguch
1826 1.1 yamaguch mutex_enter(&sc->sc_cfg_lock);
1827 1.1 yamaguch error = ixl_init_locked(sc);
1828 1.1 yamaguch mutex_exit(&sc->sc_cfg_lock);
1829 1.1 yamaguch
1830 1.1 yamaguch return error;
1831 1.1 yamaguch }
1832 1.1 yamaguch
1833 1.1 yamaguch static int
1834 1.1 yamaguch ixl_iff(struct ixl_softc *sc)
1835 1.1 yamaguch {
1836 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
1837 1.1 yamaguch struct ixl_atq iatq;
1838 1.1 yamaguch struct ixl_aq_desc *iaq;
1839 1.1 yamaguch struct ixl_aq_vsi_promisc_param *param;
1840 1.1 yamaguch int error;
1841 1.1 yamaguch
1842 1.1 yamaguch if (!ISSET(ifp->if_flags, IFF_RUNNING))
1843 1.1 yamaguch return 0;
1844 1.1 yamaguch
1845 1.1 yamaguch memset(&iatq, 0, sizeof(iatq));
1846 1.1 yamaguch
1847 1.1 yamaguch iaq = &iatq.iatq_desc;
1848 1.1 yamaguch iaq->iaq_opcode = htole16(IXL_AQ_OP_SET_VSI_PROMISC);
1849 1.1 yamaguch
1850 1.1 yamaguch param = (struct ixl_aq_vsi_promisc_param *)&iaq->iaq_param;
1851 1.1 yamaguch param->flags = htole16(IXL_AQ_VSI_PROMISC_FLAG_BCAST |
1852 1.1 yamaguch IXL_AQ_VSI_PROMISC_FLAG_VLAN);
1853 1.1 yamaguch if (ISSET(ifp->if_flags, IFF_PROMISC)) {
1854 1.1 yamaguch param->flags |= htole16(IXL_AQ_VSI_PROMISC_FLAG_UCAST |
1855 1.1 yamaguch IXL_AQ_VSI_PROMISC_FLAG_MCAST);
1856 1.1 yamaguch } else if (ISSET(ifp->if_flags, IFF_ALLMULTI)) {
1857 1.1 yamaguch param->flags |= htole16(IXL_AQ_VSI_PROMISC_FLAG_MCAST);
1858 1.1 yamaguch }
1859 1.1 yamaguch param->valid_flags = htole16(IXL_AQ_VSI_PROMISC_FLAG_UCAST |
1860 1.1 yamaguch IXL_AQ_VSI_PROMISC_FLAG_MCAST | IXL_AQ_VSI_PROMISC_FLAG_BCAST |
1861 1.1 yamaguch IXL_AQ_VSI_PROMISC_FLAG_VLAN);
1862 1.1 yamaguch param->seid = sc->sc_seid;
1863 1.1 yamaguch
1864 1.1 yamaguch error = ixl_atq_exec(sc, &iatq);
1865 1.1 yamaguch if (error)
1866 1.1 yamaguch return error;
1867 1.1 yamaguch
1868 1.1 yamaguch if (iaq->iaq_retval != htole16(IXL_AQ_RC_OK))
1869 1.1 yamaguch return EIO;
1870 1.1 yamaguch
1871 1.1 yamaguch if (memcmp(sc->sc_enaddr, CLLADDR(ifp->if_sadl), ETHER_ADDR_LEN) != 0) {
1872 1.1 yamaguch ixl_remove_macvlan(sc, sc->sc_enaddr, 0,
1873 1.1 yamaguch IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN);
1874 1.1 yamaguch
1875 1.1 yamaguch memcpy(sc->sc_enaddr, CLLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
1876 1.1 yamaguch ixl_add_macvlan(sc, sc->sc_enaddr, 0,
1877 1.1 yamaguch IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN);
1878 1.1 yamaguch }
1879 1.1 yamaguch return 0;
1880 1.1 yamaguch }
1881 1.1 yamaguch
1882 1.1 yamaguch static void
1883 1.1 yamaguch ixl_stop_rendezvous(struct ixl_softc *sc)
1884 1.1 yamaguch {
1885 1.1 yamaguch struct ixl_tx_ring *txr;
1886 1.1 yamaguch struct ixl_rx_ring *rxr;
1887 1.1 yamaguch unsigned int i;
1888 1.1 yamaguch
1889 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
1890 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
1891 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
1892 1.1 yamaguch
1893 1.1 yamaguch mutex_enter(&txr->txr_lock);
1894 1.1 yamaguch mutex_exit(&txr->txr_lock);
1895 1.1 yamaguch
1896 1.1 yamaguch mutex_enter(&rxr->rxr_lock);
1897 1.1 yamaguch mutex_exit(&rxr->rxr_lock);
1898 1.1 yamaguch
1899 1.1 yamaguch ixl_work_wait(sc->sc_workq_txrx,
1900 1.1 yamaguch &sc->sc_qps[i].qp_task);
1901 1.1 yamaguch }
1902 1.1 yamaguch }
1903 1.1 yamaguch
1904 1.1 yamaguch static void
1905 1.1 yamaguch ixl_stop_locked(struct ixl_softc *sc)
1906 1.1 yamaguch {
1907 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
1908 1.1 yamaguch struct ixl_rx_ring *rxr;
1909 1.1 yamaguch struct ixl_tx_ring *txr;
1910 1.1 yamaguch unsigned int i;
1911 1.1 yamaguch uint32_t reg;
1912 1.1 yamaguch
1913 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_cfg_lock));
1914 1.1 yamaguch
1915 1.1 yamaguch CLR(ifp->if_flags, IFF_RUNNING | IFF_OACTIVE);
1916 1.1 yamaguch
1917 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
1918 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
1919 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
1920 1.1 yamaguch
1921 1.1 yamaguch ixl_disable_queue_intr(sc, &sc->sc_qps[i]);
1922 1.1 yamaguch
1923 1.1 yamaguch mutex_enter(&txr->txr_lock);
1924 1.1 yamaguch ixl_txr_qdis(sc, txr, 0);
1925 1.1 yamaguch /* XXX wait at least 400 usec for all tx queues in one go */
1926 1.1 yamaguch ixl_flush(sc);
1927 1.1 yamaguch DELAY(500);
1928 1.1 yamaguch
1929 1.1 yamaguch reg = ixl_rd(sc, I40E_QTX_ENA(i));
1930 1.1 yamaguch CLR(reg, I40E_QTX_ENA_QENA_REQ_MASK);
1931 1.1 yamaguch ixl_wr(sc, I40E_QTX_ENA(i), reg);
1932 1.1 yamaguch /* XXX wait 50ms from completaion of the TX queue disable*/
1933 1.1 yamaguch ixl_flush(sc);
1934 1.1 yamaguch DELAY(50);
1935 1.1 yamaguch
1936 1.1 yamaguch if (ixl_txr_disabled(sc, txr) != 0) {
1937 1.1 yamaguch mutex_exit(&txr->txr_lock);
1938 1.1 yamaguch goto die;
1939 1.1 yamaguch }
1940 1.1 yamaguch mutex_exit(&txr->txr_lock);
1941 1.1 yamaguch
1942 1.1 yamaguch mutex_enter(&rxr->rxr_lock);
1943 1.1 yamaguch reg = ixl_rd(sc, I40E_QRX_ENA(i));
1944 1.1 yamaguch CLR(reg, I40E_QRX_ENA_QENA_REQ_MASK);
1945 1.1 yamaguch ixl_wr(sc, I40E_QRX_ENA(i), reg);
1946 1.1 yamaguch /* XXX wait 50ms from completion of the RX queue disable */
1947 1.1 yamaguch ixl_flush(sc);
1948 1.1 yamaguch DELAY(50);
1949 1.1 yamaguch
1950 1.1 yamaguch if (ixl_rxr_disabled(sc, rxr) != 0) {
1951 1.1 yamaguch mutex_exit(&rxr->rxr_lock);
1952 1.1 yamaguch goto die;
1953 1.1 yamaguch }
1954 1.1 yamaguch mutex_exit(&rxr->rxr_lock);
1955 1.1 yamaguch }
1956 1.1 yamaguch
1957 1.1 yamaguch ixl_stop_rendezvous(sc);
1958 1.1 yamaguch
1959 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
1960 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
1961 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
1962 1.1 yamaguch
1963 1.1 yamaguch ixl_txr_unconfig(sc, txr);
1964 1.1 yamaguch ixl_rxr_unconfig(sc, rxr);
1965 1.1 yamaguch
1966 1.1 yamaguch ixl_txr_clean(sc, txr);
1967 1.1 yamaguch ixl_rxr_clean(sc, rxr);
1968 1.1 yamaguch }
1969 1.1 yamaguch
1970 1.1 yamaguch return;
1971 1.1 yamaguch die:
1972 1.1 yamaguch sc->sc_dead = true;
1973 1.1 yamaguch log(LOG_CRIT, "%s: failed to shut down rings",
1974 1.1 yamaguch device_xname(sc->sc_dev));
1975 1.1 yamaguch return;
1976 1.1 yamaguch }
1977 1.1 yamaguch
1978 1.1 yamaguch static void
1979 1.1 yamaguch ixl_stop(struct ifnet *ifp, int disable)
1980 1.1 yamaguch {
1981 1.1 yamaguch struct ixl_softc *sc = ifp->if_softc;
1982 1.1 yamaguch
1983 1.1 yamaguch mutex_enter(&sc->sc_cfg_lock);
1984 1.1 yamaguch ixl_stop_locked(sc);
1985 1.1 yamaguch mutex_exit(&sc->sc_cfg_lock);
1986 1.1 yamaguch }
1987 1.1 yamaguch
1988 1.1 yamaguch static int
1989 1.1 yamaguch ixl_queue_pairs_alloc(struct ixl_softc *sc)
1990 1.1 yamaguch {
1991 1.1 yamaguch struct ixl_queue_pair *qp;
1992 1.1 yamaguch unsigned int i;
1993 1.1 yamaguch size_t sz;
1994 1.1 yamaguch
1995 1.1 yamaguch sz = sizeof(sc->sc_qps[0]) * sc->sc_nqueue_pairs_max;
1996 1.1 yamaguch sc->sc_qps = kmem_zalloc(sz, KM_SLEEP);
1997 1.1 yamaguch
1998 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
1999 1.1 yamaguch qp = &sc->sc_qps[i];
2000 1.1 yamaguch
2001 1.1 yamaguch qp->qp_si = softint_establish(SOFTINT_NET | SOFTINT_MPSAFE,
2002 1.1 yamaguch ixl_handle_queue, qp);
2003 1.6 yamaguch if (qp->qp_si == NULL)
2004 1.6 yamaguch goto free;
2005 1.1 yamaguch
2006 1.1 yamaguch qp->qp_txr = ixl_txr_alloc(sc, i);
2007 1.1 yamaguch if (qp->qp_txr == NULL)
2008 1.1 yamaguch goto free;
2009 1.1 yamaguch
2010 1.1 yamaguch qp->qp_rxr = ixl_rxr_alloc(sc, i);
2011 1.1 yamaguch if (qp->qp_rxr == NULL)
2012 1.1 yamaguch goto free;
2013 1.1 yamaguch
2014 1.1 yamaguch qp->qp_sc = sc;
2015 1.1 yamaguch ixl_work_set(&qp->qp_task, ixl_handle_queue, qp);
2016 1.1 yamaguch snprintf(qp->qp_name, sizeof(qp->qp_name),
2017 1.1 yamaguch "%s-TXRX%d", device_xname(sc->sc_dev), i);
2018 1.1 yamaguch }
2019 1.1 yamaguch
2020 1.1 yamaguch return 0;
2021 1.1 yamaguch free:
2022 1.1 yamaguch if (sc->sc_qps != NULL) {
2023 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
2024 1.1 yamaguch qp = &sc->sc_qps[i];
2025 1.1 yamaguch
2026 1.1 yamaguch if (qp->qp_txr != NULL)
2027 1.1 yamaguch ixl_txr_free(sc, qp->qp_txr);
2028 1.1 yamaguch if (qp->qp_rxr != NULL)
2029 1.1 yamaguch ixl_rxr_free(sc, qp->qp_rxr);
2030 1.6 yamaguch if (qp->qp_si != NULL)
2031 1.6 yamaguch softint_disestablish(qp->qp_si);
2032 1.1 yamaguch }
2033 1.1 yamaguch
2034 1.1 yamaguch sz = sizeof(sc->sc_qps[0]) * sc->sc_nqueue_pairs_max;
2035 1.1 yamaguch kmem_free(sc->sc_qps, sz);
2036 1.1 yamaguch sc->sc_qps = NULL;
2037 1.1 yamaguch }
2038 1.1 yamaguch
2039 1.1 yamaguch return -1;
2040 1.1 yamaguch }
2041 1.1 yamaguch
2042 1.1 yamaguch static void
2043 1.1 yamaguch ixl_queue_pairs_free(struct ixl_softc *sc)
2044 1.1 yamaguch {
2045 1.1 yamaguch struct ixl_queue_pair *qp;
2046 1.1 yamaguch unsigned int i;
2047 1.1 yamaguch size_t sz;
2048 1.1 yamaguch
2049 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
2050 1.1 yamaguch qp = &sc->sc_qps[i];
2051 1.1 yamaguch ixl_txr_free(sc, qp->qp_txr);
2052 1.1 yamaguch ixl_rxr_free(sc, qp->qp_rxr);
2053 1.6 yamaguch softint_disestablish(qp->qp_si);
2054 1.1 yamaguch }
2055 1.1 yamaguch
2056 1.1 yamaguch sz = sizeof(sc->sc_qps[0]) * sc->sc_nqueue_pairs_max;
2057 1.1 yamaguch kmem_free(sc->sc_qps, sz);
2058 1.1 yamaguch sc->sc_qps = NULL;
2059 1.1 yamaguch }
2060 1.1 yamaguch
2061 1.1 yamaguch static struct ixl_tx_ring *
2062 1.1 yamaguch ixl_txr_alloc(struct ixl_softc *sc, unsigned int qid)
2063 1.1 yamaguch {
2064 1.1 yamaguch struct ixl_tx_ring *txr = NULL;
2065 1.1 yamaguch struct ixl_tx_map *maps = NULL, *txm;
2066 1.1 yamaguch unsigned int i;
2067 1.1 yamaguch
2068 1.1 yamaguch txr = kmem_zalloc(sizeof(*txr), KM_SLEEP);
2069 1.1 yamaguch maps = kmem_zalloc(sizeof(maps[0]) * sc->sc_tx_ring_ndescs,
2070 1.1 yamaguch KM_SLEEP);
2071 1.1 yamaguch
2072 1.1 yamaguch if (ixl_dmamem_alloc(sc, &txr->txr_mem,
2073 1.1 yamaguch sizeof(struct ixl_tx_desc) * sc->sc_tx_ring_ndescs,
2074 1.1 yamaguch IXL_TX_QUEUE_ALIGN) != 0)
2075 1.1 yamaguch goto free;
2076 1.1 yamaguch
2077 1.1 yamaguch for (i = 0; i < sc->sc_tx_ring_ndescs; i++) {
2078 1.1 yamaguch txm = &maps[i];
2079 1.1 yamaguch
2080 1.1 yamaguch if (bus_dmamap_create(sc->sc_dmat,
2081 1.1 yamaguch IXL_HARDMTU, IXL_TX_PKT_DESCS, IXL_HARDMTU, 0,
2082 1.1 yamaguch BUS_DMA_WAITOK | BUS_DMA_ALLOCNOW, &txm->txm_map) != 0)
2083 1.1 yamaguch goto uncreate;
2084 1.1 yamaguch
2085 1.1 yamaguch txm->txm_eop = -1;
2086 1.1 yamaguch txm->txm_m = NULL;
2087 1.1 yamaguch }
2088 1.1 yamaguch
2089 1.1 yamaguch txr->txr_cons = txr->txr_prod = 0;
2090 1.1 yamaguch txr->txr_maps = maps;
2091 1.1 yamaguch
2092 1.1 yamaguch txr->txr_intrq = pcq_create(sc->sc_tx_ring_ndescs, KM_NOSLEEP);
2093 1.1 yamaguch if (txr->txr_intrq == NULL)
2094 1.1 yamaguch goto uncreate;
2095 1.1 yamaguch
2096 1.1 yamaguch txr->txr_si = softint_establish(SOFTINT_NET | SOFTINT_MPSAFE,
2097 1.1 yamaguch ixl_deferred_transmit, txr);
2098 1.1 yamaguch if (txr->txr_si == NULL)
2099 1.1 yamaguch goto destroy_pcq;
2100 1.1 yamaguch
2101 1.1 yamaguch txr->txr_tail = I40E_QTX_TAIL(qid);
2102 1.1 yamaguch txr->txr_qid = qid;
2103 1.1 yamaguch txr->txr_sc = sc;
2104 1.1 yamaguch mutex_init(&txr->txr_lock, MUTEX_DEFAULT, IPL_NET);
2105 1.1 yamaguch
2106 1.1 yamaguch return txr;
2107 1.1 yamaguch
2108 1.1 yamaguch destroy_pcq:
2109 1.1 yamaguch pcq_destroy(txr->txr_intrq);
2110 1.1 yamaguch uncreate:
2111 1.1 yamaguch for (i = 0; i < sc->sc_tx_ring_ndescs; i++) {
2112 1.1 yamaguch txm = &maps[i];
2113 1.1 yamaguch
2114 1.1 yamaguch if (txm->txm_map == NULL)
2115 1.1 yamaguch continue;
2116 1.1 yamaguch
2117 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, txm->txm_map);
2118 1.1 yamaguch }
2119 1.1 yamaguch
2120 1.1 yamaguch ixl_dmamem_free(sc, &txr->txr_mem);
2121 1.1 yamaguch free:
2122 1.1 yamaguch kmem_free(maps, sizeof(maps[0]) * sc->sc_tx_ring_ndescs);
2123 1.1 yamaguch kmem_free(txr, sizeof(*txr));
2124 1.1 yamaguch
2125 1.1 yamaguch return NULL;
2126 1.1 yamaguch }
2127 1.1 yamaguch
2128 1.1 yamaguch static void
2129 1.1 yamaguch ixl_txr_qdis(struct ixl_softc *sc, struct ixl_tx_ring *txr, int enable)
2130 1.1 yamaguch {
2131 1.1 yamaguch unsigned int qid;
2132 1.1 yamaguch bus_size_t reg;
2133 1.1 yamaguch uint32_t r;
2134 1.1 yamaguch
2135 1.1 yamaguch qid = txr->txr_qid + sc->sc_base_queue;
2136 1.1 yamaguch reg = I40E_GLLAN_TXPRE_QDIS(qid / 128);
2137 1.1 yamaguch qid %= 128;
2138 1.1 yamaguch
2139 1.1 yamaguch r = ixl_rd(sc, reg);
2140 1.1 yamaguch CLR(r, I40E_GLLAN_TXPRE_QDIS_QINDX_MASK);
2141 1.1 yamaguch SET(r, qid << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
2142 1.1 yamaguch SET(r, enable ? I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK :
2143 1.1 yamaguch I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK);
2144 1.1 yamaguch ixl_wr(sc, reg, r);
2145 1.1 yamaguch }
2146 1.1 yamaguch
2147 1.1 yamaguch static void
2148 1.1 yamaguch ixl_txr_config(struct ixl_softc *sc, struct ixl_tx_ring *txr)
2149 1.1 yamaguch {
2150 1.1 yamaguch struct ixl_hmc_txq txq;
2151 1.1 yamaguch struct ixl_aq_vsi_data *data = IXL_DMA_KVA(&sc->sc_scratch);
2152 1.1 yamaguch void *hmc;
2153 1.1 yamaguch
2154 1.1 yamaguch memset(&txq, 0, sizeof(txq));
2155 1.1 yamaguch txq.head = htole16(txr->txr_cons);
2156 1.1 yamaguch txq.new_context = 1;
2157 1.1 yamaguch txq.base = htole64(IXL_DMA_DVA(&txr->txr_mem) / IXL_HMC_TXQ_BASE_UNIT);
2158 1.1 yamaguch txq.head_wb_ena = IXL_HMC_TXQ_DESC_WB;
2159 1.1 yamaguch txq.qlen = htole16(sc->sc_tx_ring_ndescs);
2160 1.1 yamaguch txq.tphrdesc_ena = 0;
2161 1.1 yamaguch txq.tphrpacket_ena = 0;
2162 1.1 yamaguch txq.tphwdesc_ena = 0;
2163 1.1 yamaguch txq.rdylist = data->qs_handle[0];
2164 1.1 yamaguch
2165 1.1 yamaguch hmc = ixl_hmc_kva(sc, IXL_HMC_LAN_TX, txr->txr_qid);
2166 1.1 yamaguch memset(hmc, 0, ixl_hmc_len(sc, IXL_HMC_LAN_TX));
2167 1.1 yamaguch ixl_hmc_pack(hmc, &txq, ixl_hmc_pack_txq,
2168 1.1 yamaguch __arraycount(ixl_hmc_pack_txq));
2169 1.1 yamaguch }
2170 1.1 yamaguch
2171 1.1 yamaguch static void
2172 1.1 yamaguch ixl_txr_unconfig(struct ixl_softc *sc, struct ixl_tx_ring *txr)
2173 1.1 yamaguch {
2174 1.1 yamaguch void *hmc;
2175 1.1 yamaguch
2176 1.1 yamaguch hmc = ixl_hmc_kva(sc, IXL_HMC_LAN_TX, txr->txr_qid);
2177 1.1 yamaguch memset(hmc, 0, ixl_hmc_len(sc, IXL_HMC_LAN_TX));
2178 1.1 yamaguch }
2179 1.1 yamaguch
2180 1.1 yamaguch static void
2181 1.1 yamaguch ixl_txr_clean(struct ixl_softc *sc, struct ixl_tx_ring *txr)
2182 1.1 yamaguch {
2183 1.1 yamaguch struct ixl_tx_map *maps, *txm;
2184 1.1 yamaguch bus_dmamap_t map;
2185 1.1 yamaguch unsigned int i;
2186 1.1 yamaguch
2187 1.1 yamaguch maps = txr->txr_maps;
2188 1.1 yamaguch for (i = 0; i < sc->sc_tx_ring_ndescs; i++) {
2189 1.1 yamaguch txm = &maps[i];
2190 1.1 yamaguch
2191 1.1 yamaguch if (txm->txm_m == NULL)
2192 1.1 yamaguch continue;
2193 1.1 yamaguch
2194 1.1 yamaguch map = txm->txm_map;
2195 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
2196 1.1 yamaguch BUS_DMASYNC_POSTWRITE);
2197 1.1 yamaguch bus_dmamap_unload(sc->sc_dmat, map);
2198 1.1 yamaguch
2199 1.1 yamaguch m_freem(txm->txm_m);
2200 1.1 yamaguch txm->txm_m = NULL;
2201 1.1 yamaguch }
2202 1.1 yamaguch }
2203 1.1 yamaguch
2204 1.1 yamaguch static int
2205 1.1 yamaguch ixl_txr_enabled(struct ixl_softc *sc, struct ixl_tx_ring *txr)
2206 1.1 yamaguch {
2207 1.1 yamaguch bus_size_t ena = I40E_QTX_ENA(txr->txr_qid);
2208 1.1 yamaguch uint32_t reg;
2209 1.1 yamaguch int i;
2210 1.1 yamaguch
2211 1.1 yamaguch for (i = 0; i < 10; i++) {
2212 1.1 yamaguch reg = ixl_rd(sc, ena);
2213 1.1 yamaguch if (ISSET(reg, I40E_QTX_ENA_QENA_STAT_MASK))
2214 1.1 yamaguch return 0;
2215 1.1 yamaguch
2216 1.1 yamaguch delaymsec(10);
2217 1.1 yamaguch }
2218 1.1 yamaguch
2219 1.1 yamaguch return ETIMEDOUT;
2220 1.1 yamaguch }
2221 1.1 yamaguch
2222 1.1 yamaguch static int
2223 1.1 yamaguch ixl_txr_disabled(struct ixl_softc *sc, struct ixl_tx_ring *txr)
2224 1.1 yamaguch {
2225 1.1 yamaguch bus_size_t ena = I40E_QTX_ENA(txr->txr_qid);
2226 1.1 yamaguch uint32_t reg;
2227 1.1 yamaguch int i;
2228 1.1 yamaguch
2229 1.1 yamaguch KASSERT(mutex_owned(&txr->txr_lock));
2230 1.1 yamaguch
2231 1.1 yamaguch for (i = 0; i < 20; i++) {
2232 1.1 yamaguch reg = ixl_rd(sc, ena);
2233 1.1 yamaguch if (ISSET(reg, I40E_QTX_ENA_QENA_STAT_MASK) == 0)
2234 1.1 yamaguch return 0;
2235 1.1 yamaguch
2236 1.1 yamaguch delaymsec(10);
2237 1.1 yamaguch }
2238 1.1 yamaguch
2239 1.1 yamaguch return ETIMEDOUT;
2240 1.1 yamaguch }
2241 1.1 yamaguch
2242 1.1 yamaguch static void
2243 1.1 yamaguch ixl_txr_free(struct ixl_softc *sc, struct ixl_tx_ring *txr)
2244 1.1 yamaguch {
2245 1.1 yamaguch struct ixl_tx_map *maps, *txm;
2246 1.1 yamaguch struct mbuf *m;
2247 1.1 yamaguch unsigned int i;
2248 1.1 yamaguch
2249 1.1 yamaguch softint_disestablish(txr->txr_si);
2250 1.1 yamaguch while ((m = pcq_get(txr->txr_intrq)) != NULL)
2251 1.1 yamaguch m_freem(m);
2252 1.1 yamaguch pcq_destroy(txr->txr_intrq);
2253 1.1 yamaguch
2254 1.1 yamaguch maps = txr->txr_maps;
2255 1.1 yamaguch for (i = 0; i < sc->sc_tx_ring_ndescs; i++) {
2256 1.1 yamaguch txm = &maps[i];
2257 1.1 yamaguch
2258 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, txm->txm_map);
2259 1.1 yamaguch }
2260 1.1 yamaguch
2261 1.1 yamaguch ixl_dmamem_free(sc, &txr->txr_mem);
2262 1.1 yamaguch mutex_destroy(&txr->txr_lock);
2263 1.1 yamaguch kmem_free(maps, sizeof(maps[0]) * sc->sc_tx_ring_ndescs);
2264 1.1 yamaguch kmem_free(txr, sizeof(*txr));
2265 1.1 yamaguch }
2266 1.1 yamaguch
2267 1.1 yamaguch static inline int
2268 1.1 yamaguch ixl_load_mbuf(bus_dma_tag_t dmat, bus_dmamap_t map, struct mbuf **m0,
2269 1.1 yamaguch struct ixl_tx_ring *txr)
2270 1.1 yamaguch {
2271 1.1 yamaguch struct mbuf *m;
2272 1.1 yamaguch int error;
2273 1.1 yamaguch
2274 1.1 yamaguch KASSERT(mutex_owned(&txr->txr_lock));
2275 1.1 yamaguch
2276 1.1 yamaguch m = *m0;
2277 1.1 yamaguch
2278 1.1 yamaguch error = bus_dmamap_load_mbuf(dmat, map, m,
2279 1.1 yamaguch BUS_DMA_STREAMING | BUS_DMA_WRITE | BUS_DMA_NOWAIT);
2280 1.1 yamaguch if (error != EFBIG)
2281 1.1 yamaguch return error;
2282 1.1 yamaguch
2283 1.1 yamaguch m = m_defrag(m, M_DONTWAIT);
2284 1.1 yamaguch if (m != NULL) {
2285 1.1 yamaguch *m0 = m;
2286 1.1 yamaguch txr->txr_defragged.ev_count++;
2287 1.1 yamaguch
2288 1.1 yamaguch error = bus_dmamap_load_mbuf(dmat, map, m,
2289 1.1 yamaguch BUS_DMA_STREAMING | BUS_DMA_WRITE | BUS_DMA_NOWAIT);
2290 1.1 yamaguch } else {
2291 1.1 yamaguch txr->txr_defrag_failed.ev_count++;
2292 1.1 yamaguch error = ENOBUFS;
2293 1.1 yamaguch }
2294 1.1 yamaguch
2295 1.1 yamaguch return error;
2296 1.1 yamaguch }
2297 1.1 yamaguch
2298 1.1 yamaguch static void
2299 1.1 yamaguch ixl_tx_common_locked(struct ifnet *ifp, struct ixl_tx_ring *txr,
2300 1.1 yamaguch bool is_transmit)
2301 1.1 yamaguch {
2302 1.1 yamaguch struct ixl_softc *sc = ifp->if_softc;
2303 1.1 yamaguch struct ixl_tx_desc *ring, *txd;
2304 1.1 yamaguch struct ixl_tx_map *txm;
2305 1.1 yamaguch bus_dmamap_t map;
2306 1.1 yamaguch struct mbuf *m;
2307 1.1 yamaguch uint64_t cmd;
2308 1.1 yamaguch unsigned int prod, free, last, i;
2309 1.1 yamaguch unsigned int mask;
2310 1.1 yamaguch int post = 0;
2311 1.1 yamaguch
2312 1.1 yamaguch KASSERT(mutex_owned(&txr->txr_lock));
2313 1.1 yamaguch
2314 1.1 yamaguch if (ifp->if_link_state != LINK_STATE_UP
2315 1.1 yamaguch || !ISSET(ifp->if_flags, IFF_RUNNING)
2316 1.1 yamaguch || (!is_transmit && ISSET(ifp->if_flags, IFF_OACTIVE))) {
2317 1.1 yamaguch if (!is_transmit)
2318 1.1 yamaguch IFQ_PURGE(&ifp->if_snd);
2319 1.1 yamaguch return;
2320 1.1 yamaguch }
2321 1.1 yamaguch
2322 1.1 yamaguch prod = txr->txr_prod;
2323 1.1 yamaguch free = txr->txr_cons;
2324 1.1 yamaguch if (free <= prod)
2325 1.1 yamaguch free += sc->sc_tx_ring_ndescs;
2326 1.1 yamaguch free -= prod;
2327 1.1 yamaguch
2328 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&txr->txr_mem),
2329 1.1 yamaguch 0, IXL_DMA_LEN(&txr->txr_mem), BUS_DMASYNC_POSTWRITE);
2330 1.1 yamaguch
2331 1.1 yamaguch ring = IXL_DMA_KVA(&txr->txr_mem);
2332 1.1 yamaguch mask = sc->sc_tx_ring_ndescs - 1;
2333 1.1 yamaguch last = prod;
2334 1.1 yamaguch cmd = 0;
2335 1.1 yamaguch txd = NULL;
2336 1.1 yamaguch
2337 1.1 yamaguch for (;;) {
2338 1.1 yamaguch if (free <= IXL_TX_PKT_DESCS) {
2339 1.1 yamaguch if (!is_transmit)
2340 1.1 yamaguch SET(ifp->if_flags, IFF_OACTIVE);
2341 1.1 yamaguch break;
2342 1.1 yamaguch }
2343 1.1 yamaguch
2344 1.1 yamaguch if (is_transmit)
2345 1.1 yamaguch m = pcq_get(txr->txr_intrq);
2346 1.1 yamaguch else
2347 1.1 yamaguch IFQ_DEQUEUE(&ifp->if_snd, m);
2348 1.1 yamaguch
2349 1.1 yamaguch if (m == NULL)
2350 1.1 yamaguch break;
2351 1.1 yamaguch
2352 1.1 yamaguch txm = &txr->txr_maps[prod];
2353 1.1 yamaguch map = txm->txm_map;
2354 1.1 yamaguch
2355 1.1 yamaguch if (ixl_load_mbuf(sc->sc_dmat, map, &m, txr) != 0) {
2356 1.1 yamaguch txr->txr_oerrors++;
2357 1.1 yamaguch m_freem(m);
2358 1.1 yamaguch continue;
2359 1.1 yamaguch }
2360 1.1 yamaguch
2361 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, map, 0,
2362 1.1 yamaguch map->dm_mapsize, BUS_DMASYNC_PREWRITE);
2363 1.1 yamaguch
2364 1.1 yamaguch for (i = 0; i < (unsigned int)map->dm_nsegs; i++) {
2365 1.1 yamaguch txd = &ring[prod];
2366 1.1 yamaguch
2367 1.1 yamaguch cmd = (uint64_t)map->dm_segs[i].ds_len <<
2368 1.1 yamaguch IXL_TX_DESC_BSIZE_SHIFT;
2369 1.1 yamaguch cmd |= IXL_TX_DESC_DTYPE_DATA | IXL_TX_DESC_CMD_ICRC;
2370 1.1 yamaguch
2371 1.1 yamaguch txd->addr = htole64(map->dm_segs[i].ds_addr);
2372 1.1 yamaguch txd->cmd = htole64(cmd);
2373 1.1 yamaguch
2374 1.1 yamaguch last = prod;
2375 1.1 yamaguch
2376 1.1 yamaguch prod++;
2377 1.1 yamaguch prod &= mask;
2378 1.1 yamaguch }
2379 1.1 yamaguch cmd |= IXL_TX_DESC_CMD_EOP | IXL_TX_DESC_CMD_RS;
2380 1.1 yamaguch txd->cmd = htole64(cmd);
2381 1.1 yamaguch
2382 1.1 yamaguch txm->txm_m = m;
2383 1.1 yamaguch txm->txm_eop = last;
2384 1.1 yamaguch
2385 1.1 yamaguch bpf_mtap(ifp, m, BPF_D_OUT);
2386 1.1 yamaguch
2387 1.1 yamaguch free -= i;
2388 1.1 yamaguch post = 1;
2389 1.1 yamaguch }
2390 1.1 yamaguch
2391 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&txr->txr_mem),
2392 1.1 yamaguch 0, IXL_DMA_LEN(&txr->txr_mem), BUS_DMASYNC_PREWRITE);
2393 1.1 yamaguch
2394 1.1 yamaguch if (post) {
2395 1.1 yamaguch txr->txr_prod = prod;
2396 1.1 yamaguch ixl_wr(sc, txr->txr_tail, prod);
2397 1.1 yamaguch }
2398 1.1 yamaguch }
2399 1.1 yamaguch
2400 1.1 yamaguch static int
2401 1.1 yamaguch ixl_txeof(struct ixl_softc *sc, struct ixl_tx_ring *txr, u_int txlimit)
2402 1.1 yamaguch {
2403 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
2404 1.1 yamaguch struct ixl_tx_desc *ring, *txd;
2405 1.1 yamaguch struct ixl_tx_map *txm;
2406 1.1 yamaguch struct mbuf *m;
2407 1.1 yamaguch bus_dmamap_t map;
2408 1.1 yamaguch unsigned int cons, prod, last;
2409 1.1 yamaguch unsigned int mask;
2410 1.1 yamaguch uint64_t dtype;
2411 1.1 yamaguch int done = 0, more = 0;
2412 1.1 yamaguch
2413 1.1 yamaguch KASSERT(mutex_owned(&txr->txr_lock));
2414 1.1 yamaguch
2415 1.1 yamaguch prod = txr->txr_prod;
2416 1.1 yamaguch cons = txr->txr_cons;
2417 1.1 yamaguch
2418 1.1 yamaguch if (cons == prod)
2419 1.1 yamaguch return 0;
2420 1.1 yamaguch
2421 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&txr->txr_mem),
2422 1.1 yamaguch 0, IXL_DMA_LEN(&txr->txr_mem), BUS_DMASYNC_POSTREAD);
2423 1.1 yamaguch
2424 1.1 yamaguch ring = IXL_DMA_KVA(&txr->txr_mem);
2425 1.1 yamaguch mask = sc->sc_tx_ring_ndescs - 1;
2426 1.1 yamaguch
2427 1.1 yamaguch do {
2428 1.1 yamaguch if (txlimit-- <= 0) {
2429 1.1 yamaguch more = 1;
2430 1.1 yamaguch break;
2431 1.1 yamaguch }
2432 1.1 yamaguch
2433 1.1 yamaguch txm = &txr->txr_maps[cons];
2434 1.1 yamaguch last = txm->txm_eop;
2435 1.1 yamaguch txd = &ring[last];
2436 1.1 yamaguch
2437 1.1 yamaguch dtype = txd->cmd & htole64(IXL_TX_DESC_DTYPE_MASK);
2438 1.1 yamaguch if (dtype != htole64(IXL_TX_DESC_DTYPE_DONE))
2439 1.1 yamaguch break;
2440 1.1 yamaguch
2441 1.1 yamaguch map = txm->txm_map;
2442 1.1 yamaguch
2443 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
2444 1.1 yamaguch BUS_DMASYNC_POSTWRITE);
2445 1.1 yamaguch bus_dmamap_unload(sc->sc_dmat, map);
2446 1.1 yamaguch
2447 1.1 yamaguch m = txm->txm_m;
2448 1.1 yamaguch if (m != NULL) {
2449 1.1 yamaguch txr->txr_opackets++;
2450 1.1 yamaguch txr->txr_obytes += m->m_pkthdr.len;
2451 1.1 yamaguch if (ISSET(m->m_flags, M_MCAST))
2452 1.1 yamaguch txr->txr_omcasts++;
2453 1.1 yamaguch m_freem(m);
2454 1.1 yamaguch }
2455 1.1 yamaguch
2456 1.1 yamaguch txm->txm_m = NULL;
2457 1.1 yamaguch txm->txm_eop = -1;
2458 1.1 yamaguch
2459 1.1 yamaguch cons = last + 1;
2460 1.1 yamaguch cons &= mask;
2461 1.1 yamaguch done = 1;
2462 1.1 yamaguch } while (cons != prod);
2463 1.1 yamaguch
2464 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&txr->txr_mem),
2465 1.1 yamaguch 0, IXL_DMA_LEN(&txr->txr_mem), BUS_DMASYNC_PREREAD);
2466 1.1 yamaguch
2467 1.1 yamaguch txr->txr_cons = cons;
2468 1.1 yamaguch
2469 1.1 yamaguch if (done) {
2470 1.1 yamaguch softint_schedule(txr->txr_si);
2471 1.1 yamaguch if (txr->txr_qid == 0) {
2472 1.1 yamaguch CLR(ifp->if_flags, IFF_OACTIVE);
2473 1.1 yamaguch if_schedule_deferred_start(ifp);
2474 1.1 yamaguch }
2475 1.1 yamaguch }
2476 1.1 yamaguch
2477 1.1 yamaguch return more;
2478 1.1 yamaguch }
2479 1.1 yamaguch
2480 1.1 yamaguch static void
2481 1.1 yamaguch ixl_start(struct ifnet *ifp)
2482 1.1 yamaguch {
2483 1.1 yamaguch struct ixl_softc *sc;
2484 1.1 yamaguch struct ixl_tx_ring *txr;
2485 1.1 yamaguch
2486 1.1 yamaguch sc = ifp->if_softc;
2487 1.1 yamaguch txr = sc->sc_qps[0].qp_txr;
2488 1.1 yamaguch
2489 1.1 yamaguch mutex_enter(&txr->txr_lock);
2490 1.1 yamaguch ixl_tx_common_locked(ifp, txr, false);
2491 1.1 yamaguch mutex_exit(&txr->txr_lock);
2492 1.1 yamaguch }
2493 1.1 yamaguch
2494 1.1 yamaguch static inline unsigned int
2495 1.1 yamaguch ixl_select_txqueue(struct ixl_softc *sc, struct mbuf *m)
2496 1.1 yamaguch {
2497 1.1 yamaguch u_int cpuid;
2498 1.1 yamaguch
2499 1.1 yamaguch cpuid = cpu_index(curcpu());
2500 1.1 yamaguch
2501 1.1 yamaguch return (unsigned int)(cpuid % sc->sc_nqueue_pairs);
2502 1.1 yamaguch }
2503 1.1 yamaguch
2504 1.1 yamaguch static int
2505 1.1 yamaguch ixl_transmit(struct ifnet *ifp, struct mbuf *m)
2506 1.1 yamaguch {
2507 1.1 yamaguch struct ixl_softc *sc;
2508 1.1 yamaguch struct ixl_tx_ring *txr;
2509 1.1 yamaguch unsigned int qid;
2510 1.1 yamaguch
2511 1.1 yamaguch sc = ifp->if_softc;
2512 1.1 yamaguch qid = ixl_select_txqueue(sc, m);
2513 1.1 yamaguch
2514 1.1 yamaguch txr = sc->sc_qps[qid].qp_txr;
2515 1.1 yamaguch
2516 1.1 yamaguch if (__predict_false(!pcq_put(txr->txr_intrq, m))) {
2517 1.1 yamaguch mutex_enter(&txr->txr_lock);
2518 1.1 yamaguch txr->txr_pcqdrop.ev_count++;
2519 1.1 yamaguch mutex_exit(&txr->txr_lock);
2520 1.1 yamaguch
2521 1.1 yamaguch m_freem(m);
2522 1.1 yamaguch return ENOBUFS;
2523 1.1 yamaguch }
2524 1.1 yamaguch
2525 1.1 yamaguch if (mutex_tryenter(&txr->txr_lock)) {
2526 1.1 yamaguch ixl_tx_common_locked(ifp, txr, true);
2527 1.1 yamaguch mutex_exit(&txr->txr_lock);
2528 1.1 yamaguch } else {
2529 1.1 yamaguch softint_schedule(txr->txr_si);
2530 1.1 yamaguch }
2531 1.1 yamaguch
2532 1.1 yamaguch return 0;
2533 1.1 yamaguch }
2534 1.1 yamaguch
2535 1.1 yamaguch static void
2536 1.1 yamaguch ixl_deferred_transmit(void *xtxr)
2537 1.1 yamaguch {
2538 1.1 yamaguch struct ixl_tx_ring *txr = xtxr;
2539 1.1 yamaguch struct ixl_softc *sc = txr->txr_sc;
2540 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
2541 1.1 yamaguch
2542 1.1 yamaguch mutex_enter(&txr->txr_lock);
2543 1.1 yamaguch txr->txr_transmitdef.ev_count++;
2544 1.1 yamaguch if (pcq_peek(txr->txr_intrq) != NULL)
2545 1.1 yamaguch ixl_tx_common_locked(ifp, txr, true);
2546 1.1 yamaguch mutex_exit(&txr->txr_lock);
2547 1.1 yamaguch }
2548 1.1 yamaguch
2549 1.1 yamaguch static struct ixl_rx_ring *
2550 1.1 yamaguch ixl_rxr_alloc(struct ixl_softc *sc, unsigned int qid)
2551 1.1 yamaguch {
2552 1.1 yamaguch struct ixl_rx_ring *rxr = NULL;
2553 1.1 yamaguch struct ixl_rx_map *maps = NULL, *rxm;
2554 1.1 yamaguch unsigned int i;
2555 1.1 yamaguch
2556 1.1 yamaguch rxr = kmem_zalloc(sizeof(*rxr), KM_SLEEP);
2557 1.1 yamaguch maps = kmem_zalloc(sizeof(maps[0]) * sc->sc_rx_ring_ndescs,
2558 1.1 yamaguch KM_SLEEP);
2559 1.1 yamaguch
2560 1.1 yamaguch if (ixl_dmamem_alloc(sc, &rxr->rxr_mem,
2561 1.1 yamaguch sizeof(struct ixl_rx_rd_desc_16) * sc->sc_rx_ring_ndescs,
2562 1.1 yamaguch IXL_RX_QUEUE_ALIGN) != 0)
2563 1.1 yamaguch goto free;
2564 1.1 yamaguch
2565 1.1 yamaguch for (i = 0; i < sc->sc_rx_ring_ndescs; i++) {
2566 1.1 yamaguch rxm = &maps[i];
2567 1.1 yamaguch
2568 1.1 yamaguch if (bus_dmamap_create(sc->sc_dmat,
2569 1.1 yamaguch IXL_HARDMTU, 1, IXL_HARDMTU, 0,
2570 1.1 yamaguch BUS_DMA_WAITOK | BUS_DMA_ALLOCNOW, &rxm->rxm_map) != 0)
2571 1.1 yamaguch goto uncreate;
2572 1.1 yamaguch
2573 1.1 yamaguch rxm->rxm_m = NULL;
2574 1.1 yamaguch }
2575 1.1 yamaguch
2576 1.1 yamaguch rxr->rxr_cons = rxr->rxr_prod = 0;
2577 1.1 yamaguch rxr->rxr_m_head = NULL;
2578 1.1 yamaguch rxr->rxr_m_tail = &rxr->rxr_m_head;
2579 1.1 yamaguch rxr->rxr_maps = maps;
2580 1.1 yamaguch
2581 1.1 yamaguch rxr->rxr_tail = I40E_QRX_TAIL(qid);
2582 1.1 yamaguch rxr->rxr_qid = qid;
2583 1.1 yamaguch mutex_init(&rxr->rxr_lock, MUTEX_DEFAULT, IPL_NET);
2584 1.1 yamaguch
2585 1.1 yamaguch return rxr;
2586 1.1 yamaguch
2587 1.1 yamaguch uncreate:
2588 1.1 yamaguch for (i = 0; i < sc->sc_rx_ring_ndescs; i++) {
2589 1.1 yamaguch rxm = &maps[i];
2590 1.1 yamaguch
2591 1.1 yamaguch if (rxm->rxm_map == NULL)
2592 1.1 yamaguch continue;
2593 1.1 yamaguch
2594 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, rxm->rxm_map);
2595 1.1 yamaguch }
2596 1.1 yamaguch
2597 1.1 yamaguch ixl_dmamem_free(sc, &rxr->rxr_mem);
2598 1.1 yamaguch free:
2599 1.1 yamaguch kmem_free(maps, sizeof(maps[0]) * sc->sc_rx_ring_ndescs);
2600 1.1 yamaguch kmem_free(rxr, sizeof(*rxr));
2601 1.1 yamaguch
2602 1.1 yamaguch return NULL;
2603 1.1 yamaguch }
2604 1.1 yamaguch
2605 1.1 yamaguch static void
2606 1.1 yamaguch ixl_rxr_clean(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2607 1.1 yamaguch {
2608 1.1 yamaguch struct ixl_rx_map *maps, *rxm;
2609 1.1 yamaguch bus_dmamap_t map;
2610 1.1 yamaguch unsigned int i;
2611 1.1 yamaguch
2612 1.1 yamaguch maps = rxr->rxr_maps;
2613 1.1 yamaguch for (i = 0; i < sc->sc_rx_ring_ndescs; i++) {
2614 1.1 yamaguch rxm = &maps[i];
2615 1.1 yamaguch
2616 1.1 yamaguch if (rxm->rxm_m == NULL)
2617 1.1 yamaguch continue;
2618 1.1 yamaguch
2619 1.1 yamaguch map = rxm->rxm_map;
2620 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
2621 1.1 yamaguch BUS_DMASYNC_POSTWRITE);
2622 1.1 yamaguch bus_dmamap_unload(sc->sc_dmat, map);
2623 1.1 yamaguch
2624 1.1 yamaguch m_freem(rxm->rxm_m);
2625 1.1 yamaguch rxm->rxm_m = NULL;
2626 1.1 yamaguch }
2627 1.1 yamaguch
2628 1.1 yamaguch m_freem(rxr->rxr_m_head);
2629 1.1 yamaguch rxr->rxr_m_head = NULL;
2630 1.1 yamaguch rxr->rxr_m_tail = &rxr->rxr_m_head;
2631 1.1 yamaguch
2632 1.1 yamaguch rxr->rxr_prod = rxr->rxr_cons = 0;
2633 1.1 yamaguch }
2634 1.1 yamaguch
2635 1.1 yamaguch static int
2636 1.1 yamaguch ixl_rxr_enabled(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2637 1.1 yamaguch {
2638 1.1 yamaguch bus_size_t ena = I40E_QRX_ENA(rxr->rxr_qid);
2639 1.1 yamaguch uint32_t reg;
2640 1.1 yamaguch int i;
2641 1.1 yamaguch
2642 1.1 yamaguch for (i = 0; i < 10; i++) {
2643 1.1 yamaguch reg = ixl_rd(sc, ena);
2644 1.1 yamaguch if (ISSET(reg, I40E_QRX_ENA_QENA_STAT_MASK))
2645 1.1 yamaguch return 0;
2646 1.1 yamaguch
2647 1.1 yamaguch delaymsec(10);
2648 1.1 yamaguch }
2649 1.1 yamaguch
2650 1.1 yamaguch return ETIMEDOUT;
2651 1.1 yamaguch }
2652 1.1 yamaguch
2653 1.1 yamaguch static int
2654 1.1 yamaguch ixl_rxr_disabled(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2655 1.1 yamaguch {
2656 1.1 yamaguch bus_size_t ena = I40E_QRX_ENA(rxr->rxr_qid);
2657 1.1 yamaguch uint32_t reg;
2658 1.1 yamaguch int i;
2659 1.1 yamaguch
2660 1.1 yamaguch KASSERT(mutex_owned(&rxr->rxr_lock));
2661 1.1 yamaguch
2662 1.1 yamaguch for (i = 0; i < 20; i++) {
2663 1.1 yamaguch reg = ixl_rd(sc, ena);
2664 1.1 yamaguch if (ISSET(reg, I40E_QRX_ENA_QENA_STAT_MASK) == 0)
2665 1.1 yamaguch return 0;
2666 1.1 yamaguch
2667 1.1 yamaguch delaymsec(10);
2668 1.1 yamaguch }
2669 1.1 yamaguch
2670 1.1 yamaguch return ETIMEDOUT;
2671 1.1 yamaguch }
2672 1.1 yamaguch
2673 1.1 yamaguch static void
2674 1.1 yamaguch ixl_rxr_config(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2675 1.1 yamaguch {
2676 1.1 yamaguch struct ixl_hmc_rxq rxq;
2677 1.1 yamaguch void *hmc;
2678 1.1 yamaguch
2679 1.1 yamaguch memset(&rxq, 0, sizeof(rxq));
2680 1.1 yamaguch
2681 1.1 yamaguch rxq.head = htole16(rxr->rxr_cons);
2682 1.1 yamaguch rxq.base = htole64(IXL_DMA_DVA(&rxr->rxr_mem) / IXL_HMC_RXQ_BASE_UNIT);
2683 1.1 yamaguch rxq.qlen = htole16(sc->sc_rx_ring_ndescs);
2684 1.1 yamaguch rxq.dbuff = htole16(MCLBYTES / IXL_HMC_RXQ_DBUFF_UNIT);
2685 1.1 yamaguch rxq.hbuff = 0;
2686 1.1 yamaguch rxq.dtype = IXL_HMC_RXQ_DTYPE_NOSPLIT;
2687 1.1 yamaguch rxq.dsize = IXL_HMC_RXQ_DSIZE_16;
2688 1.1 yamaguch rxq.crcstrip = 1;
2689 1.1 yamaguch rxq.l2sel = 0;
2690 1.1 yamaguch rxq.showiv = 0;
2691 1.1 yamaguch rxq.rxmax = htole16(IXL_HARDMTU);
2692 1.1 yamaguch rxq.tphrdesc_ena = 0;
2693 1.1 yamaguch rxq.tphwdesc_ena = 0;
2694 1.1 yamaguch rxq.tphdata_ena = 0;
2695 1.1 yamaguch rxq.tphhead_ena = 0;
2696 1.1 yamaguch rxq.lrxqthresh = 0;
2697 1.1 yamaguch rxq.prefena = 1;
2698 1.1 yamaguch
2699 1.1 yamaguch hmc = ixl_hmc_kva(sc, IXL_HMC_LAN_RX, rxr->rxr_qid);
2700 1.1 yamaguch memset(hmc, 0, ixl_hmc_len(sc, IXL_HMC_LAN_RX));
2701 1.1 yamaguch ixl_hmc_pack(hmc, &rxq, ixl_hmc_pack_rxq,
2702 1.1 yamaguch __arraycount(ixl_hmc_pack_rxq));
2703 1.1 yamaguch }
2704 1.1 yamaguch
2705 1.1 yamaguch static void
2706 1.1 yamaguch ixl_rxr_unconfig(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2707 1.1 yamaguch {
2708 1.1 yamaguch void *hmc;
2709 1.1 yamaguch
2710 1.1 yamaguch hmc = ixl_hmc_kva(sc, IXL_HMC_LAN_RX, rxr->rxr_qid);
2711 1.1 yamaguch memset(hmc, 0, ixl_hmc_len(sc, IXL_HMC_LAN_RX));
2712 1.1 yamaguch }
2713 1.1 yamaguch
2714 1.1 yamaguch static void
2715 1.1 yamaguch ixl_rxr_free(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2716 1.1 yamaguch {
2717 1.1 yamaguch struct ixl_rx_map *maps, *rxm;
2718 1.1 yamaguch unsigned int i;
2719 1.1 yamaguch
2720 1.1 yamaguch maps = rxr->rxr_maps;
2721 1.1 yamaguch for (i = 0; i < sc->sc_rx_ring_ndescs; i++) {
2722 1.1 yamaguch rxm = &maps[i];
2723 1.1 yamaguch
2724 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, rxm->rxm_map);
2725 1.1 yamaguch }
2726 1.1 yamaguch
2727 1.1 yamaguch ixl_dmamem_free(sc, &rxr->rxr_mem);
2728 1.1 yamaguch mutex_destroy(&rxr->rxr_lock);
2729 1.1 yamaguch kmem_free(maps, sizeof(maps[0]) * sc->sc_rx_ring_ndescs);
2730 1.1 yamaguch kmem_free(rxr, sizeof(*rxr));
2731 1.1 yamaguch }
2732 1.1 yamaguch
2733 1.1 yamaguch static int
2734 1.1 yamaguch ixl_rxeof(struct ixl_softc *sc, struct ixl_rx_ring *rxr, u_int rxlimit)
2735 1.1 yamaguch {
2736 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
2737 1.1 yamaguch struct ixl_rx_wb_desc_16 *ring, *rxd;
2738 1.1 yamaguch struct ixl_rx_map *rxm;
2739 1.1 yamaguch bus_dmamap_t map;
2740 1.1 yamaguch unsigned int cons, prod;
2741 1.1 yamaguch struct mbuf *m;
2742 1.1 yamaguch uint64_t word;
2743 1.1 yamaguch unsigned int len;
2744 1.1 yamaguch unsigned int mask;
2745 1.1 yamaguch int done = 0, more = 0;
2746 1.1 yamaguch
2747 1.1 yamaguch KASSERT(mutex_owned(&rxr->rxr_lock));
2748 1.1 yamaguch
2749 1.1 yamaguch if (!ISSET(ifp->if_flags, IFF_RUNNING))
2750 1.1 yamaguch return 0;
2751 1.1 yamaguch
2752 1.1 yamaguch prod = rxr->rxr_prod;
2753 1.1 yamaguch cons = rxr->rxr_cons;
2754 1.1 yamaguch
2755 1.1 yamaguch if (cons == prod)
2756 1.1 yamaguch return 0;
2757 1.1 yamaguch
2758 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&rxr->rxr_mem),
2759 1.1 yamaguch 0, IXL_DMA_LEN(&rxr->rxr_mem),
2760 1.1 yamaguch BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
2761 1.1 yamaguch
2762 1.1 yamaguch ring = IXL_DMA_KVA(&rxr->rxr_mem);
2763 1.1 yamaguch mask = sc->sc_rx_ring_ndescs - 1;
2764 1.1 yamaguch
2765 1.1 yamaguch do {
2766 1.1 yamaguch if (rxlimit-- <= 0) {
2767 1.1 yamaguch more = 1;
2768 1.1 yamaguch break;
2769 1.1 yamaguch }
2770 1.1 yamaguch
2771 1.1 yamaguch rxd = &ring[cons];
2772 1.1 yamaguch
2773 1.1 yamaguch word = le64toh(rxd->qword1);
2774 1.1 yamaguch
2775 1.1 yamaguch if (!ISSET(word, IXL_RX_DESC_DD))
2776 1.1 yamaguch break;
2777 1.1 yamaguch
2778 1.1 yamaguch rxm = &rxr->rxr_maps[cons];
2779 1.1 yamaguch
2780 1.1 yamaguch map = rxm->rxm_map;
2781 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
2782 1.1 yamaguch BUS_DMASYNC_POSTREAD);
2783 1.1 yamaguch bus_dmamap_unload(sc->sc_dmat, map);
2784 1.1 yamaguch
2785 1.1 yamaguch m = rxm->rxm_m;
2786 1.1 yamaguch rxm->rxm_m = NULL;
2787 1.1 yamaguch
2788 1.1 yamaguch KASSERT(m != NULL);
2789 1.1 yamaguch
2790 1.1 yamaguch len = (word & IXL_RX_DESC_PLEN_MASK) >> IXL_RX_DESC_PLEN_SHIFT;
2791 1.1 yamaguch m->m_len = len;
2792 1.1 yamaguch m->m_pkthdr.len = 0;
2793 1.1 yamaguch
2794 1.1 yamaguch m->m_next = NULL;
2795 1.1 yamaguch *rxr->rxr_m_tail = m;
2796 1.1 yamaguch rxr->rxr_m_tail = &m->m_next;
2797 1.1 yamaguch
2798 1.1 yamaguch m = rxr->rxr_m_head;
2799 1.1 yamaguch m->m_pkthdr.len += len;
2800 1.1 yamaguch
2801 1.1 yamaguch if (ISSET(word, IXL_RX_DESC_EOP)) {
2802 1.1 yamaguch if (!ISSET(word,
2803 1.1 yamaguch IXL_RX_DESC_RXE | IXL_RX_DESC_OVERSIZE)) {
2804 1.1 yamaguch m_set_rcvif(m, ifp);
2805 1.1 yamaguch rxr->rxr_ipackets++;
2806 1.1 yamaguch rxr->rxr_ibytes += m->m_pkthdr.len;
2807 1.1 yamaguch if_percpuq_enqueue(ifp->if_percpuq, m);
2808 1.1 yamaguch } else {
2809 1.1 yamaguch rxr->rxr_ierrors++;
2810 1.1 yamaguch m_freem(m);
2811 1.1 yamaguch }
2812 1.1 yamaguch
2813 1.1 yamaguch rxr->rxr_m_head = NULL;
2814 1.1 yamaguch rxr->rxr_m_tail = &rxr->rxr_m_head;
2815 1.1 yamaguch }
2816 1.1 yamaguch
2817 1.1 yamaguch cons++;
2818 1.1 yamaguch cons &= mask;
2819 1.1 yamaguch
2820 1.1 yamaguch done = 1;
2821 1.1 yamaguch } while (cons != prod);
2822 1.1 yamaguch
2823 1.1 yamaguch if (done) {
2824 1.1 yamaguch rxr->rxr_cons = cons;
2825 1.1 yamaguch if (ixl_rxfill(sc, rxr) == -1)
2826 1.1 yamaguch rxr->rxr_iqdrops++;
2827 1.1 yamaguch }
2828 1.1 yamaguch
2829 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&rxr->rxr_mem),
2830 1.1 yamaguch 0, IXL_DMA_LEN(&rxr->rxr_mem),
2831 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
2832 1.1 yamaguch
2833 1.1 yamaguch return more;
2834 1.1 yamaguch }
2835 1.1 yamaguch
2836 1.1 yamaguch static int
2837 1.1 yamaguch ixl_rxfill(struct ixl_softc *sc, struct ixl_rx_ring *rxr)
2838 1.1 yamaguch {
2839 1.1 yamaguch struct ixl_rx_rd_desc_16 *ring, *rxd;
2840 1.1 yamaguch struct ixl_rx_map *rxm;
2841 1.1 yamaguch bus_dmamap_t map;
2842 1.1 yamaguch struct mbuf *m;
2843 1.1 yamaguch unsigned int prod;
2844 1.1 yamaguch unsigned int slots;
2845 1.1 yamaguch unsigned int mask;
2846 1.1 yamaguch int post = 0, error = 0;
2847 1.1 yamaguch
2848 1.1 yamaguch KASSERT(mutex_owned(&rxr->rxr_lock));
2849 1.1 yamaguch
2850 1.1 yamaguch prod = rxr->rxr_prod;
2851 1.1 yamaguch slots = ixl_rxr_unrefreshed(rxr->rxr_prod, rxr->rxr_cons,
2852 1.1 yamaguch sc->sc_rx_ring_ndescs);
2853 1.1 yamaguch
2854 1.1 yamaguch ring = IXL_DMA_KVA(&rxr->rxr_mem);
2855 1.1 yamaguch mask = sc->sc_rx_ring_ndescs - 1;
2856 1.1 yamaguch
2857 1.1 yamaguch if (__predict_false(slots <= 0))
2858 1.1 yamaguch return -1;
2859 1.1 yamaguch
2860 1.1 yamaguch do {
2861 1.1 yamaguch rxm = &rxr->rxr_maps[prod];
2862 1.1 yamaguch
2863 1.1 yamaguch MGETHDR(m, M_DONTWAIT, MT_DATA);
2864 1.1 yamaguch if (m == NULL) {
2865 1.1 yamaguch rxr->rxr_mgethdr_failed.ev_count++;
2866 1.1 yamaguch error = -1;
2867 1.1 yamaguch break;
2868 1.1 yamaguch }
2869 1.1 yamaguch
2870 1.1 yamaguch MCLGET(m, M_DONTWAIT);
2871 1.1 yamaguch if (!ISSET(m->m_flags, M_EXT)) {
2872 1.1 yamaguch rxr->rxr_mgetcl_failed.ev_count++;
2873 1.1 yamaguch error = -1;
2874 1.1 yamaguch m_freem(m);
2875 1.1 yamaguch break;
2876 1.1 yamaguch }
2877 1.1 yamaguch
2878 1.1 yamaguch m->m_len = m->m_pkthdr.len = MCLBYTES + ETHER_ALIGN;
2879 1.1 yamaguch m_adj(m, ETHER_ALIGN);
2880 1.1 yamaguch
2881 1.1 yamaguch map = rxm->rxm_map;
2882 1.1 yamaguch
2883 1.1 yamaguch if (bus_dmamap_load_mbuf(sc->sc_dmat, map, m,
2884 1.1 yamaguch BUS_DMA_READ | BUS_DMA_NOWAIT) != 0) {
2885 1.1 yamaguch rxr->rxr_mbuf_load_failed.ev_count++;
2886 1.1 yamaguch error = -1;
2887 1.1 yamaguch m_freem(m);
2888 1.1 yamaguch break;
2889 1.1 yamaguch }
2890 1.1 yamaguch
2891 1.1 yamaguch rxm->rxm_m = m;
2892 1.1 yamaguch
2893 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, map, 0, map->dm_mapsize,
2894 1.1 yamaguch BUS_DMASYNC_PREREAD);
2895 1.1 yamaguch
2896 1.1 yamaguch rxd = &ring[prod];
2897 1.1 yamaguch
2898 1.1 yamaguch rxd->paddr = htole64(map->dm_segs[0].ds_addr);
2899 1.1 yamaguch rxd->haddr = htole64(0);
2900 1.1 yamaguch
2901 1.1 yamaguch prod++;
2902 1.1 yamaguch prod &= mask;
2903 1.1 yamaguch
2904 1.1 yamaguch post = 1;
2905 1.1 yamaguch
2906 1.1 yamaguch } while (--slots);
2907 1.1 yamaguch
2908 1.1 yamaguch if (post) {
2909 1.1 yamaguch rxr->rxr_prod = prod;
2910 1.1 yamaguch ixl_wr(sc, rxr->rxr_tail, prod);
2911 1.1 yamaguch }
2912 1.1 yamaguch
2913 1.1 yamaguch return error;
2914 1.1 yamaguch }
2915 1.1 yamaguch
2916 1.1 yamaguch static inline int
2917 1.1 yamaguch ixl_handle_queue_common(struct ixl_softc *sc, struct ixl_queue_pair *qp,
2918 1.1 yamaguch u_int txlimit, struct evcnt *txevcnt,
2919 1.1 yamaguch u_int rxlimit, struct evcnt *rxevcnt)
2920 1.1 yamaguch {
2921 1.1 yamaguch struct ixl_tx_ring *txr = qp->qp_txr;
2922 1.1 yamaguch struct ixl_rx_ring *rxr = qp->qp_rxr;
2923 1.1 yamaguch int txmore, rxmore;
2924 1.1 yamaguch int rv;
2925 1.1 yamaguch
2926 1.1 yamaguch KASSERT(!mutex_owned(&txr->txr_lock));
2927 1.1 yamaguch KASSERT(!mutex_owned(&rxr->rxr_lock));
2928 1.1 yamaguch
2929 1.1 yamaguch mutex_enter(&txr->txr_lock);
2930 1.1 yamaguch txevcnt->ev_count++;
2931 1.1 yamaguch txmore = ixl_txeof(sc, txr, txlimit);
2932 1.1 yamaguch mutex_exit(&txr->txr_lock);
2933 1.1 yamaguch
2934 1.1 yamaguch mutex_enter(&rxr->rxr_lock);
2935 1.1 yamaguch rxevcnt->ev_count++;
2936 1.1 yamaguch rxmore = ixl_rxeof(sc, rxr, rxlimit);
2937 1.1 yamaguch mutex_exit(&rxr->rxr_lock);
2938 1.1 yamaguch
2939 1.1 yamaguch rv = txmore | (rxmore << 1);
2940 1.1 yamaguch
2941 1.1 yamaguch return rv;
2942 1.1 yamaguch }
2943 1.1 yamaguch
2944 1.1 yamaguch static void
2945 1.1 yamaguch ixl_sched_handle_queue(struct ixl_softc *sc, struct ixl_queue_pair *qp)
2946 1.1 yamaguch {
2947 1.1 yamaguch
2948 1.1 yamaguch if (qp->qp_workqueue)
2949 1.1 yamaguch ixl_work_add(sc->sc_workq_txrx, &qp->qp_task);
2950 1.1 yamaguch else
2951 1.1 yamaguch softint_schedule(qp->qp_si);
2952 1.1 yamaguch }
2953 1.1 yamaguch
2954 1.1 yamaguch static int
2955 1.1 yamaguch ixl_intr(void *xsc)
2956 1.1 yamaguch {
2957 1.1 yamaguch struct ixl_softc *sc = xsc;
2958 1.1 yamaguch struct ixl_tx_ring *txr;
2959 1.1 yamaguch struct ixl_rx_ring *rxr;
2960 1.1 yamaguch uint32_t icr, rxintr, txintr;
2961 1.1 yamaguch int rv = 0;
2962 1.1 yamaguch unsigned int i;
2963 1.1 yamaguch
2964 1.1 yamaguch KASSERT(sc != NULL);
2965 1.1 yamaguch
2966 1.1 yamaguch ixl_enable_other_intr(sc);
2967 1.1 yamaguch icr = ixl_rd(sc, I40E_PFINT_ICR0);
2968 1.1 yamaguch
2969 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_ADMINQ_MASK)) {
2970 1.1 yamaguch atomic_inc_64(&sc->sc_event_atq.ev_count);
2971 1.1 yamaguch ixl_atq_done(sc);
2972 1.1 yamaguch ixl_work_add(sc->sc_workq, &sc->sc_arq_task);
2973 1.1 yamaguch rv = 1;
2974 1.1 yamaguch }
2975 1.1 yamaguch
2976 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_LINK_STAT_CHANGE_MASK)) {
2977 1.1 yamaguch atomic_inc_64(&sc->sc_event_link.ev_count);
2978 1.1 yamaguch ixl_work_add(sc->sc_workq, &sc->sc_link_state_task);
2979 1.1 yamaguch rv = 1;
2980 1.1 yamaguch }
2981 1.1 yamaguch
2982 1.1 yamaguch rxintr = icr & I40E_INTR_NOTX_RX_MASK;
2983 1.1 yamaguch txintr = icr & I40E_INTR_NOTX_TX_MASK;
2984 1.1 yamaguch
2985 1.1 yamaguch if (txintr || rxintr) {
2986 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
2987 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
2988 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
2989 1.1 yamaguch
2990 1.1 yamaguch ixl_handle_queue_common(sc, &sc->sc_qps[i],
2991 1.1 yamaguch IXL_TXRX_PROCESS_UNLIMIT, &txr->txr_intr,
2992 1.1 yamaguch IXL_TXRX_PROCESS_UNLIMIT, &rxr->rxr_intr);
2993 1.1 yamaguch }
2994 1.1 yamaguch rv = 1;
2995 1.1 yamaguch }
2996 1.1 yamaguch
2997 1.1 yamaguch return rv;
2998 1.1 yamaguch }
2999 1.1 yamaguch
3000 1.1 yamaguch static int
3001 1.1 yamaguch ixl_queue_intr(void *xqp)
3002 1.1 yamaguch {
3003 1.1 yamaguch struct ixl_queue_pair *qp = xqp;
3004 1.1 yamaguch struct ixl_tx_ring *txr = qp->qp_txr;
3005 1.1 yamaguch struct ixl_rx_ring *rxr = qp->qp_rxr;
3006 1.1 yamaguch struct ixl_softc *sc = qp->qp_sc;
3007 1.1 yamaguch u_int txlimit, rxlimit;
3008 1.1 yamaguch int more;
3009 1.1 yamaguch
3010 1.1 yamaguch txlimit = sc->sc_tx_intr_process_limit;
3011 1.1 yamaguch rxlimit = sc->sc_rx_intr_process_limit;
3012 1.1 yamaguch qp->qp_workqueue = sc->sc_txrx_workqueue;
3013 1.1 yamaguch
3014 1.1 yamaguch more = ixl_handle_queue_common(sc, qp,
3015 1.1 yamaguch txlimit, &txr->txr_intr, rxlimit, &rxr->rxr_intr);
3016 1.1 yamaguch
3017 1.1 yamaguch if (more != 0) {
3018 1.1 yamaguch ixl_sched_handle_queue(sc, qp);
3019 1.1 yamaguch } else {
3020 1.1 yamaguch /* for ALTQ */
3021 1.1 yamaguch if (txr->txr_qid == 0)
3022 1.1 yamaguch if_schedule_deferred_start(&sc->sc_ec.ec_if);
3023 1.1 yamaguch softint_schedule(txr->txr_si);
3024 1.1 yamaguch
3025 1.1 yamaguch ixl_enable_queue_intr(sc, qp);
3026 1.1 yamaguch }
3027 1.1 yamaguch
3028 1.1 yamaguch return 1;
3029 1.1 yamaguch }
3030 1.1 yamaguch
3031 1.1 yamaguch static void
3032 1.1 yamaguch ixl_handle_queue(void *xqp)
3033 1.1 yamaguch {
3034 1.1 yamaguch struct ixl_queue_pair *qp = xqp;
3035 1.1 yamaguch struct ixl_softc *sc = qp->qp_sc;
3036 1.1 yamaguch struct ixl_tx_ring *txr = qp->qp_txr;
3037 1.1 yamaguch struct ixl_rx_ring *rxr = qp->qp_rxr;
3038 1.1 yamaguch u_int txlimit, rxlimit;
3039 1.1 yamaguch int more;
3040 1.1 yamaguch
3041 1.1 yamaguch txlimit = sc->sc_tx_process_limit;
3042 1.1 yamaguch rxlimit = sc->sc_rx_process_limit;
3043 1.1 yamaguch
3044 1.1 yamaguch more = ixl_handle_queue_common(sc, qp,
3045 1.1 yamaguch txlimit, &txr->txr_defer, rxlimit, &rxr->rxr_defer);
3046 1.1 yamaguch
3047 1.1 yamaguch if (more != 0)
3048 1.1 yamaguch ixl_sched_handle_queue(sc, qp);
3049 1.1 yamaguch else
3050 1.1 yamaguch ixl_enable_queue_intr(sc, qp);
3051 1.1 yamaguch }
3052 1.1 yamaguch
3053 1.1 yamaguch static inline void
3054 1.1 yamaguch ixl_print_hmc_error(struct ixl_softc *sc, uint32_t reg)
3055 1.1 yamaguch {
3056 1.1 yamaguch uint32_t hmc_idx, hmc_isvf;
3057 1.1 yamaguch uint32_t hmc_errtype, hmc_objtype, hmc_data;
3058 1.1 yamaguch
3059 1.1 yamaguch hmc_idx = reg & I40E_PFHMC_ERRORINFO_PMF_INDEX_MASK;
3060 1.1 yamaguch hmc_idx = hmc_idx >> I40E_PFHMC_ERRORINFO_PMF_INDEX_SHIFT;
3061 1.1 yamaguch hmc_isvf = reg & I40E_PFHMC_ERRORINFO_PMF_ISVF_MASK;
3062 1.1 yamaguch hmc_isvf = hmc_isvf >> I40E_PFHMC_ERRORINFO_PMF_ISVF_SHIFT;
3063 1.1 yamaguch hmc_errtype = reg & I40E_PFHMC_ERRORINFO_HMC_ERROR_TYPE_MASK;
3064 1.1 yamaguch hmc_errtype = hmc_errtype >> I40E_PFHMC_ERRORINFO_HMC_ERROR_TYPE_SHIFT;
3065 1.1 yamaguch hmc_objtype = reg & I40E_PFHMC_ERRORINFO_HMC_OBJECT_TYPE_MASK;
3066 1.1 yamaguch hmc_objtype = hmc_objtype >> I40E_PFHMC_ERRORINFO_HMC_OBJECT_TYPE_SHIFT;
3067 1.1 yamaguch hmc_data = ixl_rd(sc, I40E_PFHMC_ERRORDATA);
3068 1.1 yamaguch
3069 1.1 yamaguch device_printf(sc->sc_dev,
3070 1.1 yamaguch "HMC Error (idx=0x%x, isvf=0x%x, err=0x%x, obj=0x%x, data=0x%x)\n",
3071 1.1 yamaguch hmc_idx, hmc_isvf, hmc_errtype, hmc_objtype, hmc_data);
3072 1.1 yamaguch }
3073 1.1 yamaguch
3074 1.1 yamaguch static int
3075 1.1 yamaguch ixl_other_intr(void *xsc)
3076 1.1 yamaguch {
3077 1.1 yamaguch struct ixl_softc *sc = xsc;
3078 1.1 yamaguch uint32_t icr, mask, reg;
3079 1.1 yamaguch int rv;
3080 1.1 yamaguch
3081 1.1 yamaguch icr = ixl_rd(sc, I40E_PFINT_ICR0);
3082 1.1 yamaguch mask = ixl_rd(sc, I40E_PFINT_ICR0_ENA);
3083 1.1 yamaguch
3084 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_ADMINQ_MASK)) {
3085 1.1 yamaguch atomic_inc_64(&sc->sc_event_atq.ev_count);
3086 1.1 yamaguch ixl_atq_done(sc);
3087 1.1 yamaguch ixl_work_add(sc->sc_workq, &sc->sc_arq_task);
3088 1.1 yamaguch rv = 1;
3089 1.1 yamaguch }
3090 1.1 yamaguch
3091 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_LINK_STAT_CHANGE_MASK)) {
3092 1.1 yamaguch if (ISSET(sc->sc_ec.ec_if.if_flags, IFF_DEBUG))
3093 1.1 yamaguch device_printf(sc->sc_dev, "link stat changed\n");
3094 1.1 yamaguch
3095 1.1 yamaguch atomic_inc_64(&sc->sc_event_link.ev_count);
3096 1.1 yamaguch ixl_work_add(sc->sc_workq, &sc->sc_link_state_task);
3097 1.1 yamaguch rv = 1;
3098 1.1 yamaguch }
3099 1.1 yamaguch
3100 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_GRST_MASK)) {
3101 1.1 yamaguch CLR(mask, I40E_PFINT_ICR0_ENA_GRST_MASK);
3102 1.1 yamaguch reg = ixl_rd(sc, I40E_GLGEN_RSTAT);
3103 1.1 yamaguch reg = reg & I40E_GLGEN_RSTAT_RESET_TYPE_MASK;
3104 1.1 yamaguch reg = reg >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
3105 1.1 yamaguch
3106 1.1 yamaguch device_printf(sc->sc_dev, "GRST: %s\n",
3107 1.1 yamaguch reg == I40E_RESET_CORER ? "CORER" :
3108 1.1 yamaguch reg == I40E_RESET_GLOBR ? "GLOBR" :
3109 1.1 yamaguch reg == I40E_RESET_EMPR ? "EMPR" :
3110 1.1 yamaguch "POR");
3111 1.1 yamaguch }
3112 1.1 yamaguch
3113 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_ECC_ERR_MASK))
3114 1.1 yamaguch atomic_inc_64(&sc->sc_event_ecc_err.ev_count);
3115 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_PCI_EXCEPTION_MASK))
3116 1.1 yamaguch atomic_inc_64(&sc->sc_event_pci_exception.ev_count);
3117 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_PE_CRITERR_MASK))
3118 1.1 yamaguch atomic_inc_64(&sc->sc_event_crit_err.ev_count);
3119 1.1 yamaguch
3120 1.1 yamaguch if (ISSET(icr, IXL_ICR0_CRIT_ERR_MASK)) {
3121 1.1 yamaguch CLR(mask, IXL_ICR0_CRIT_ERR_MASK);
3122 1.1 yamaguch device_printf(sc->sc_dev, "critical error\n");
3123 1.1 yamaguch }
3124 1.1 yamaguch
3125 1.1 yamaguch if (ISSET(icr, I40E_PFINT_ICR0_HMC_ERR_MASK)) {
3126 1.1 yamaguch reg = ixl_rd(sc, I40E_PFHMC_ERRORINFO);
3127 1.1 yamaguch if (ISSET(reg, I40E_PFHMC_ERRORINFO_ERROR_DETECTED_MASK))
3128 1.1 yamaguch ixl_print_hmc_error(sc, reg);
3129 1.1 yamaguch ixl_wr(sc, I40E_PFHMC_ERRORINFO, 0);
3130 1.1 yamaguch }
3131 1.1 yamaguch
3132 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ICR0_ENA, mask);
3133 1.1 yamaguch ixl_flush(sc);
3134 1.1 yamaguch ixl_enable_other_intr(sc);
3135 1.1 yamaguch return rv;
3136 1.1 yamaguch }
3137 1.1 yamaguch
3138 1.1 yamaguch static void
3139 1.4 yamaguch ixl_get_link_status_done(struct ixl_softc *sc,
3140 1.4 yamaguch const struct ixl_aq_desc *iaq)
3141 1.1 yamaguch {
3142 1.1 yamaguch
3143 1.4 yamaguch ixl_link_state_update(sc, iaq);
3144 1.1 yamaguch }
3145 1.1 yamaguch
3146 1.1 yamaguch static void
3147 1.4 yamaguch ixl_get_link_status(void *xsc)
3148 1.1 yamaguch {
3149 1.1 yamaguch struct ixl_softc *sc = xsc;
3150 1.1 yamaguch struct ixl_aq_desc *iaq;
3151 1.1 yamaguch struct ixl_aq_link_param *param;
3152 1.1 yamaguch
3153 1.1 yamaguch memset(&sc->sc_link_state_atq, 0, sizeof(sc->sc_link_state_atq));
3154 1.1 yamaguch iaq = &sc->sc_link_state_atq.iatq_desc;
3155 1.1 yamaguch iaq->iaq_opcode = htole16(IXL_AQ_OP_PHY_LINK_STATUS);
3156 1.1 yamaguch param = (struct ixl_aq_link_param *)iaq->iaq_param;
3157 1.1 yamaguch param->notify = IXL_AQ_LINK_NOTIFY;
3158 1.1 yamaguch
3159 1.4 yamaguch ixl_atq_set(&sc->sc_link_state_atq, ixl_get_link_status_done);
3160 1.1 yamaguch (void)ixl_atq_post(sc, &sc->sc_link_state_atq);
3161 1.1 yamaguch }
3162 1.1 yamaguch
3163 1.1 yamaguch static void
3164 1.4 yamaguch ixl_link_state_update(struct ixl_softc *sc, const struct ixl_aq_desc *iaq)
3165 1.1 yamaguch {
3166 1.1 yamaguch struct ifnet *ifp = &sc->sc_ec.ec_if;
3167 1.1 yamaguch int link_state;
3168 1.1 yamaguch
3169 1.1 yamaguch link_state = ixl_set_link_status(sc, iaq);
3170 1.1 yamaguch
3171 1.1 yamaguch if (ifp->if_link_state != link_state)
3172 1.1 yamaguch if_link_state_change(ifp, link_state);
3173 1.1 yamaguch
3174 1.1 yamaguch if (link_state != LINK_STATE_DOWN) {
3175 1.1 yamaguch if_schedule_deferred_start(ifp);
3176 1.1 yamaguch }
3177 1.1 yamaguch }
3178 1.1 yamaguch
3179 1.1 yamaguch static void
3180 1.4 yamaguch ixl_aq_dump(const struct ixl_softc *sc, const struct ixl_aq_desc *iaq,
3181 1.4 yamaguch const char *msg)
3182 1.1 yamaguch {
3183 1.1 yamaguch char buf[512];
3184 1.1 yamaguch size_t len;
3185 1.1 yamaguch
3186 1.1 yamaguch len = sizeof(buf);
3187 1.1 yamaguch buf[--len] = '\0';
3188 1.1 yamaguch
3189 1.4 yamaguch device_printf(sc->sc_dev, "%s\n", msg);
3190 1.1 yamaguch snprintb(buf, len, IXL_AQ_FLAGS_FMT, le16toh(iaq->iaq_flags));
3191 1.1 yamaguch device_printf(sc->sc_dev, "flags %s opcode %04x\n",
3192 1.1 yamaguch buf, le16toh(iaq->iaq_opcode));
3193 1.1 yamaguch device_printf(sc->sc_dev, "datalen %u retval %u\n",
3194 1.1 yamaguch le16toh(iaq->iaq_datalen), le16toh(iaq->iaq_retval));
3195 1.1 yamaguch device_printf(sc->sc_dev, "cookie %016" PRIx64 "\n", iaq->iaq_cookie);
3196 1.1 yamaguch device_printf(sc->sc_dev, "%08x %08x %08x %08x\n",
3197 1.1 yamaguch le32toh(iaq->iaq_param[0]), le32toh(iaq->iaq_param[1]),
3198 1.1 yamaguch le32toh(iaq->iaq_param[2]), le32toh(iaq->iaq_param[3]));
3199 1.1 yamaguch }
3200 1.1 yamaguch
3201 1.1 yamaguch static void
3202 1.1 yamaguch ixl_arq(void *xsc)
3203 1.1 yamaguch {
3204 1.1 yamaguch struct ixl_softc *sc = xsc;
3205 1.1 yamaguch struct ixl_aq_desc *arq, *iaq;
3206 1.1 yamaguch struct ixl_aq_buf *aqb;
3207 1.1 yamaguch unsigned int cons = sc->sc_arq_cons;
3208 1.1 yamaguch unsigned int prod;
3209 1.1 yamaguch int done = 0;
3210 1.1 yamaguch
3211 1.1 yamaguch prod = ixl_rd(sc, sc->sc_aq_regs->arq_head) &
3212 1.1 yamaguch sc->sc_aq_regs->arq_head_mask;
3213 1.1 yamaguch
3214 1.1 yamaguch if (cons == prod)
3215 1.1 yamaguch goto done;
3216 1.1 yamaguch
3217 1.1 yamaguch arq = IXL_DMA_KVA(&sc->sc_arq);
3218 1.1 yamaguch
3219 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_arq),
3220 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_arq),
3221 1.1 yamaguch BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
3222 1.1 yamaguch
3223 1.1 yamaguch do {
3224 1.1 yamaguch iaq = &arq[cons];
3225 1.1 yamaguch aqb = sc->sc_arq_live[cons];
3226 1.1 yamaguch
3227 1.1 yamaguch KASSERT(aqb != NULL);
3228 1.1 yamaguch
3229 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, aqb->aqb_map, 0, IXL_AQ_BUFLEN,
3230 1.1 yamaguch BUS_DMASYNC_POSTREAD);
3231 1.1 yamaguch
3232 1.1 yamaguch if (ISSET(sc->sc_ec.ec_if.if_flags, IFF_DEBUG))
3233 1.4 yamaguch ixl_aq_dump(sc, iaq, "arq event");
3234 1.1 yamaguch
3235 1.1 yamaguch switch (iaq->iaq_opcode) {
3236 1.1 yamaguch case htole16(IXL_AQ_OP_PHY_LINK_STATUS):
3237 1.4 yamaguch ixl_link_state_update(sc, iaq);
3238 1.1 yamaguch break;
3239 1.1 yamaguch }
3240 1.1 yamaguch
3241 1.1 yamaguch memset(iaq, 0, sizeof(*iaq));
3242 1.1 yamaguch sc->sc_arq_live[cons] = NULL;
3243 1.1 yamaguch SIMPLEQ_INSERT_TAIL(&sc->sc_arq_idle, aqb, aqb_entry);
3244 1.1 yamaguch
3245 1.1 yamaguch cons++;
3246 1.1 yamaguch cons &= IXL_AQ_MASK;
3247 1.1 yamaguch
3248 1.1 yamaguch done = 1;
3249 1.1 yamaguch } while (cons != prod);
3250 1.1 yamaguch
3251 1.1 yamaguch if (done) {
3252 1.1 yamaguch sc->sc_arq_cons = cons;
3253 1.1 yamaguch ixl_arq_fill(sc);
3254 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_arq),
3255 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_arq),
3256 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
3257 1.1 yamaguch }
3258 1.1 yamaguch
3259 1.1 yamaguch done:
3260 1.1 yamaguch ixl_enable_other_intr(sc);
3261 1.1 yamaguch }
3262 1.1 yamaguch
3263 1.1 yamaguch static void
3264 1.4 yamaguch ixl_atq_set(struct ixl_atq *iatq,
3265 1.4 yamaguch void (*fn)(struct ixl_softc *, const struct ixl_aq_desc *))
3266 1.1 yamaguch {
3267 1.4 yamaguch
3268 1.1 yamaguch iatq->iatq_fn = fn;
3269 1.1 yamaguch }
3270 1.1 yamaguch
3271 1.1 yamaguch static int
3272 1.1 yamaguch ixl_atq_post_locked(struct ixl_softc *sc, struct ixl_atq *iatq)
3273 1.1 yamaguch {
3274 1.1 yamaguch struct ixl_aq_desc *atq, *slot;
3275 1.1 yamaguch unsigned int prod, cons, prod_next;
3276 1.1 yamaguch
3277 1.1 yamaguch /* assert locked */
3278 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_atq_lock));
3279 1.1 yamaguch
3280 1.1 yamaguch atq = IXL_DMA_KVA(&sc->sc_atq);
3281 1.1 yamaguch prod = sc->sc_atq_prod;
3282 1.1 yamaguch cons = sc->sc_atq_cons;
3283 1.1 yamaguch prod_next = (prod +1) & IXL_AQ_MASK;
3284 1.1 yamaguch
3285 1.1 yamaguch if (cons == prod_next)
3286 1.1 yamaguch return ENOMEM;
3287 1.1 yamaguch
3288 1.1 yamaguch slot = &atq[prod];
3289 1.1 yamaguch
3290 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3291 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq), BUS_DMASYNC_POSTWRITE);
3292 1.1 yamaguch
3293 1.1 yamaguch *slot = iatq->iatq_desc;
3294 1.1 yamaguch slot->iaq_cookie = (uint64_t)((intptr_t)iatq);
3295 1.1 yamaguch
3296 1.1 yamaguch if (ISSET(sc->sc_ec.ec_if.if_flags, IFF_DEBUG))
3297 1.4 yamaguch ixl_aq_dump(sc, slot, "atq command");
3298 1.1 yamaguch
3299 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3300 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq), BUS_DMASYNC_PREWRITE);
3301 1.1 yamaguch
3302 1.1 yamaguch sc->sc_atq_prod = prod_next;
3303 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_tail, sc->sc_atq_prod);
3304 1.1 yamaguch
3305 1.1 yamaguch return 0;
3306 1.1 yamaguch }
3307 1.1 yamaguch
3308 1.1 yamaguch static int
3309 1.1 yamaguch ixl_atq_post(struct ixl_softc *sc, struct ixl_atq *iatq)
3310 1.1 yamaguch {
3311 1.1 yamaguch int rv;
3312 1.1 yamaguch
3313 1.1 yamaguch mutex_enter(&sc->sc_atq_lock);
3314 1.1 yamaguch rv = ixl_atq_post_locked(sc, iatq);
3315 1.1 yamaguch mutex_exit(&sc->sc_atq_lock);
3316 1.1 yamaguch
3317 1.1 yamaguch return rv;
3318 1.1 yamaguch }
3319 1.1 yamaguch
3320 1.1 yamaguch static void
3321 1.1 yamaguch ixl_atq_done_locked(struct ixl_softc *sc)
3322 1.1 yamaguch {
3323 1.1 yamaguch struct ixl_aq_desc *atq, *slot;
3324 1.1 yamaguch struct ixl_atq *iatq;
3325 1.1 yamaguch unsigned int cons;
3326 1.1 yamaguch unsigned int prod;
3327 1.1 yamaguch
3328 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_atq_lock));
3329 1.1 yamaguch
3330 1.1 yamaguch prod = sc->sc_atq_prod;
3331 1.1 yamaguch cons = sc->sc_atq_cons;
3332 1.1 yamaguch
3333 1.1 yamaguch if (prod == cons)
3334 1.1 yamaguch return;
3335 1.1 yamaguch
3336 1.1 yamaguch atq = IXL_DMA_KVA(&sc->sc_atq);
3337 1.1 yamaguch
3338 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3339 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq),
3340 1.1 yamaguch BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
3341 1.1 yamaguch
3342 1.1 yamaguch do {
3343 1.1 yamaguch slot = &atq[cons];
3344 1.1 yamaguch if (!ISSET(slot->iaq_flags, htole16(IXL_AQ_DD)))
3345 1.1 yamaguch break;
3346 1.1 yamaguch
3347 1.1 yamaguch iatq = (struct ixl_atq *)((intptr_t)slot->iaq_cookie);
3348 1.1 yamaguch iatq->iatq_desc = *slot;
3349 1.1 yamaguch
3350 1.1 yamaguch memset(slot, 0, sizeof(*slot));
3351 1.1 yamaguch
3352 1.4 yamaguch if (ISSET(sc->sc_ec.ec_if.if_flags, IFF_DEBUG))
3353 1.4 yamaguch ixl_aq_dump(sc, &iatq->iatq_desc, "atq response");
3354 1.4 yamaguch
3355 1.4 yamaguch (*iatq->iatq_fn)(sc, &iatq->iatq_desc);
3356 1.1 yamaguch
3357 1.1 yamaguch cons++;
3358 1.1 yamaguch cons &= IXL_AQ_MASK;
3359 1.1 yamaguch } while (cons != prod);
3360 1.1 yamaguch
3361 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3362 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq),
3363 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
3364 1.1 yamaguch
3365 1.1 yamaguch sc->sc_atq_cons = cons;
3366 1.1 yamaguch }
3367 1.1 yamaguch
3368 1.1 yamaguch static void
3369 1.1 yamaguch ixl_atq_done(struct ixl_softc *sc)
3370 1.1 yamaguch {
3371 1.1 yamaguch
3372 1.1 yamaguch mutex_enter(&sc->sc_atq_lock);
3373 1.1 yamaguch ixl_atq_done_locked(sc);
3374 1.1 yamaguch mutex_exit(&sc->sc_atq_lock);
3375 1.1 yamaguch }
3376 1.1 yamaguch
3377 1.1 yamaguch static void
3378 1.4 yamaguch ixl_wakeup(struct ixl_softc *sc, const struct ixl_aq_desc *iaq)
3379 1.1 yamaguch {
3380 1.1 yamaguch
3381 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_atq_lock));
3382 1.1 yamaguch
3383 1.1 yamaguch cv_signal(&sc->sc_atq_cv);
3384 1.1 yamaguch }
3385 1.1 yamaguch
3386 1.1 yamaguch static int
3387 1.1 yamaguch ixl_atq_exec(struct ixl_softc *sc, struct ixl_atq *iatq)
3388 1.1 yamaguch {
3389 1.1 yamaguch int error;
3390 1.1 yamaguch
3391 1.1 yamaguch KASSERT(iatq->iatq_desc.iaq_cookie == 0);
3392 1.1 yamaguch
3393 1.1 yamaguch ixl_atq_set(iatq, ixl_wakeup);
3394 1.1 yamaguch
3395 1.1 yamaguch mutex_enter(&sc->sc_atq_lock);
3396 1.1 yamaguch error = ixl_atq_post_locked(sc, iatq);
3397 1.1 yamaguch if (error) {
3398 1.1 yamaguch mutex_exit(&sc->sc_atq_lock);
3399 1.1 yamaguch return error;
3400 1.1 yamaguch }
3401 1.1 yamaguch
3402 1.1 yamaguch error = cv_timedwait(&sc->sc_atq_cv, &sc->sc_atq_lock,
3403 1.1 yamaguch IXL_ATQ_EXEC_TIMEOUT);
3404 1.1 yamaguch mutex_exit(&sc->sc_atq_lock);
3405 1.1 yamaguch
3406 1.1 yamaguch return error;
3407 1.1 yamaguch }
3408 1.1 yamaguch
3409 1.1 yamaguch static int
3410 1.1 yamaguch ixl_atq_poll(struct ixl_softc *sc, struct ixl_aq_desc *iaq, unsigned int tm)
3411 1.1 yamaguch {
3412 1.1 yamaguch struct ixl_aq_desc *atq, *slot;
3413 1.1 yamaguch unsigned int prod;
3414 1.1 yamaguch unsigned int t = 0;
3415 1.1 yamaguch
3416 1.9 yamaguch mutex_enter(&sc->sc_atq_lock);
3417 1.9 yamaguch
3418 1.1 yamaguch atq = IXL_DMA_KVA(&sc->sc_atq);
3419 1.1 yamaguch prod = sc->sc_atq_prod;
3420 1.1 yamaguch slot = atq + prod;
3421 1.1 yamaguch
3422 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3423 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq), BUS_DMASYNC_POSTWRITE);
3424 1.1 yamaguch
3425 1.1 yamaguch *slot = *iaq;
3426 1.1 yamaguch slot->iaq_flags |= htole16(IXL_AQ_SI);
3427 1.1 yamaguch
3428 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3429 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq), BUS_DMASYNC_PREWRITE);
3430 1.1 yamaguch
3431 1.1 yamaguch prod++;
3432 1.1 yamaguch prod &= IXL_AQ_MASK;
3433 1.1 yamaguch sc->sc_atq_prod = prod;
3434 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->atq_tail, prod);
3435 1.1 yamaguch
3436 1.1 yamaguch while (ixl_rd(sc, sc->sc_aq_regs->atq_head) != prod) {
3437 1.1 yamaguch delaymsec(1);
3438 1.1 yamaguch
3439 1.9 yamaguch if (t++ > tm) {
3440 1.9 yamaguch mutex_exit(&sc->sc_atq_lock);
3441 1.1 yamaguch return ETIMEDOUT;
3442 1.9 yamaguch }
3443 1.1 yamaguch }
3444 1.1 yamaguch
3445 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3446 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq), BUS_DMASYNC_POSTREAD);
3447 1.1 yamaguch *iaq = *slot;
3448 1.1 yamaguch memset(slot, 0, sizeof(*slot));
3449 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_atq),
3450 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_atq), BUS_DMASYNC_PREREAD);
3451 1.1 yamaguch
3452 1.1 yamaguch sc->sc_atq_cons = prod;
3453 1.1 yamaguch
3454 1.9 yamaguch mutex_exit(&sc->sc_atq_lock);
3455 1.9 yamaguch
3456 1.1 yamaguch return 0;
3457 1.1 yamaguch }
3458 1.1 yamaguch
3459 1.1 yamaguch static int
3460 1.1 yamaguch ixl_get_version(struct ixl_softc *sc)
3461 1.1 yamaguch {
3462 1.1 yamaguch struct ixl_aq_desc iaq;
3463 1.1 yamaguch uint32_t fwbuild, fwver, apiver;
3464 1.1 yamaguch uint16_t api_maj_ver, api_min_ver;
3465 1.1 yamaguch
3466 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3467 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_GET_VERSION);
3468 1.1 yamaguch
3469 1.1 yamaguch iaq.iaq_retval = le16toh(23);
3470 1.1 yamaguch
3471 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 2000) != 0)
3472 1.1 yamaguch return ETIMEDOUT;
3473 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK))
3474 1.1 yamaguch return EIO;
3475 1.1 yamaguch
3476 1.1 yamaguch fwbuild = le32toh(iaq.iaq_param[1]);
3477 1.1 yamaguch fwver = le32toh(iaq.iaq_param[2]);
3478 1.1 yamaguch apiver = le32toh(iaq.iaq_param[3]);
3479 1.1 yamaguch
3480 1.1 yamaguch api_maj_ver = (uint16_t)apiver;
3481 1.1 yamaguch api_min_ver = (uint16_t)(apiver >> 16);
3482 1.1 yamaguch
3483 1.1 yamaguch aprint_normal(", FW %hu.%hu.%05u API %hu.%hu", (uint16_t)fwver,
3484 1.1 yamaguch (uint16_t)(fwver >> 16), fwbuild, api_maj_ver, api_min_ver);
3485 1.1 yamaguch
3486 1.1 yamaguch sc->sc_rxctl_atq = true;
3487 1.1 yamaguch if (sc->sc_mac_type == I40E_MAC_X722) {
3488 1.1 yamaguch if (api_maj_ver == 1 && api_min_ver < 5) {
3489 1.1 yamaguch sc->sc_rxctl_atq = false;
3490 1.1 yamaguch }
3491 1.1 yamaguch }
3492 1.1 yamaguch
3493 1.1 yamaguch return 0;
3494 1.1 yamaguch }
3495 1.1 yamaguch
3496 1.1 yamaguch static int
3497 1.1 yamaguch ixl_pxe_clear(struct ixl_softc *sc)
3498 1.1 yamaguch {
3499 1.1 yamaguch struct ixl_aq_desc iaq;
3500 1.1 yamaguch int rv;
3501 1.1 yamaguch
3502 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3503 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_CLEAR_PXE_MODE);
3504 1.1 yamaguch iaq.iaq_param[0] = htole32(0x2);
3505 1.1 yamaguch
3506 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3507 1.1 yamaguch
3508 1.1 yamaguch ixl_wr(sc, I40E_GLLAN_RCTL_0, 0x1);
3509 1.1 yamaguch
3510 1.1 yamaguch if (rv != 0)
3511 1.1 yamaguch return ETIMEDOUT;
3512 1.1 yamaguch
3513 1.1 yamaguch switch (iaq.iaq_retval) {
3514 1.1 yamaguch case htole16(IXL_AQ_RC_OK):
3515 1.1 yamaguch case htole16(IXL_AQ_RC_EEXIST):
3516 1.1 yamaguch break;
3517 1.1 yamaguch default:
3518 1.1 yamaguch return EIO;
3519 1.1 yamaguch }
3520 1.1 yamaguch
3521 1.1 yamaguch return 0;
3522 1.1 yamaguch }
3523 1.1 yamaguch
3524 1.1 yamaguch static int
3525 1.1 yamaguch ixl_lldp_shut(struct ixl_softc *sc)
3526 1.1 yamaguch {
3527 1.1 yamaguch struct ixl_aq_desc iaq;
3528 1.1 yamaguch
3529 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3530 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_LLDP_STOP_AGENT);
3531 1.1 yamaguch iaq.iaq_param[0] = htole32(IXL_LLDP_SHUTDOWN);
3532 1.1 yamaguch
3533 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0) {
3534 1.1 yamaguch aprint_error_dev(sc->sc_dev, "STOP LLDP AGENT timeout\n");
3535 1.1 yamaguch return -1;
3536 1.1 yamaguch }
3537 1.1 yamaguch
3538 1.1 yamaguch switch (iaq.iaq_retval) {
3539 1.1 yamaguch case htole16(IXL_AQ_RC_EMODE):
3540 1.1 yamaguch case htole16(IXL_AQ_RC_EPERM):
3541 1.1 yamaguch /* ignore silently */
3542 1.1 yamaguch default:
3543 1.1 yamaguch break;
3544 1.1 yamaguch }
3545 1.1 yamaguch
3546 1.1 yamaguch return 0;
3547 1.1 yamaguch }
3548 1.1 yamaguch
3549 1.1 yamaguch static void
3550 1.1 yamaguch ixl_parse_hw_capability(struct ixl_softc *sc, struct ixl_aq_capability *cap)
3551 1.1 yamaguch {
3552 1.1 yamaguch uint16_t id;
3553 1.1 yamaguch uint32_t number, logical_id;
3554 1.1 yamaguch
3555 1.1 yamaguch id = le16toh(cap->cap_id);
3556 1.1 yamaguch number = le32toh(cap->number);
3557 1.1 yamaguch logical_id = le32toh(cap->logical_id);
3558 1.1 yamaguch
3559 1.1 yamaguch switch (id) {
3560 1.1 yamaguch case IXL_AQ_CAP_RSS:
3561 1.1 yamaguch sc->sc_rss_table_size = number;
3562 1.1 yamaguch sc->sc_rss_table_entry_width = logical_id;
3563 1.1 yamaguch break;
3564 1.1 yamaguch case IXL_AQ_CAP_RXQ:
3565 1.1 yamaguch case IXL_AQ_CAP_TXQ:
3566 1.1 yamaguch sc->sc_nqueue_pairs_device = MIN(number,
3567 1.1 yamaguch sc->sc_nqueue_pairs_device);
3568 1.1 yamaguch break;
3569 1.1 yamaguch }
3570 1.1 yamaguch }
3571 1.1 yamaguch
3572 1.1 yamaguch static int
3573 1.1 yamaguch ixl_get_hw_capabilities(struct ixl_softc *sc)
3574 1.1 yamaguch {
3575 1.1 yamaguch struct ixl_dmamem idm;
3576 1.1 yamaguch struct ixl_aq_desc iaq;
3577 1.1 yamaguch struct ixl_aq_capability *caps;
3578 1.1 yamaguch size_t i, ncaps;
3579 1.1 yamaguch bus_size_t caps_size;
3580 1.1 yamaguch uint16_t status;
3581 1.1 yamaguch int rv;
3582 1.1 yamaguch
3583 1.1 yamaguch caps_size = sizeof(caps[0]) * 40;
3584 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3585 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_LIST_FUNC_CAP);
3586 1.1 yamaguch
3587 1.1 yamaguch do {
3588 1.1 yamaguch if (ixl_dmamem_alloc(sc, &idm, caps_size, 0) != 0) {
3589 1.1 yamaguch return -1;
3590 1.1 yamaguch }
3591 1.1 yamaguch
3592 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF |
3593 1.1 yamaguch (caps_size > I40E_AQ_LARGE_BUF ? IXL_AQ_LB : 0));
3594 1.1 yamaguch iaq.iaq_datalen = htole16(caps_size);
3595 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(&idm));
3596 1.1 yamaguch
3597 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&idm), 0,
3598 1.1 yamaguch IXL_DMA_LEN(&idm), BUS_DMASYNC_PREREAD);
3599 1.1 yamaguch
3600 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3601 1.1 yamaguch
3602 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&idm), 0,
3603 1.1 yamaguch IXL_DMA_LEN(&idm), BUS_DMASYNC_POSTREAD);
3604 1.1 yamaguch
3605 1.1 yamaguch if (rv != 0) {
3606 1.1 yamaguch aprint_error(", HW capabilities timeout\n");
3607 1.1 yamaguch goto done;
3608 1.1 yamaguch }
3609 1.1 yamaguch
3610 1.1 yamaguch status = le16toh(iaq.iaq_retval);
3611 1.1 yamaguch
3612 1.1 yamaguch if (status == IXL_AQ_RC_ENOMEM) {
3613 1.1 yamaguch caps_size = le16toh(iaq.iaq_datalen);
3614 1.1 yamaguch ixl_dmamem_free(sc, &idm);
3615 1.1 yamaguch }
3616 1.1 yamaguch } while (status == IXL_AQ_RC_ENOMEM);
3617 1.1 yamaguch
3618 1.1 yamaguch if (status != IXL_AQ_RC_OK) {
3619 1.1 yamaguch aprint_error(", HW capabilities error\n");
3620 1.1 yamaguch goto done;
3621 1.1 yamaguch }
3622 1.1 yamaguch
3623 1.1 yamaguch caps = IXL_DMA_KVA(&idm);
3624 1.1 yamaguch ncaps = le16toh(iaq.iaq_param[1]);
3625 1.1 yamaguch
3626 1.1 yamaguch for (i = 0; i < ncaps; i++) {
3627 1.1 yamaguch ixl_parse_hw_capability(sc, &caps[i]);
3628 1.1 yamaguch }
3629 1.1 yamaguch
3630 1.1 yamaguch done:
3631 1.1 yamaguch ixl_dmamem_free(sc, &idm);
3632 1.1 yamaguch return rv;
3633 1.1 yamaguch }
3634 1.1 yamaguch
3635 1.1 yamaguch static int
3636 1.1 yamaguch ixl_get_mac(struct ixl_softc *sc)
3637 1.1 yamaguch {
3638 1.1 yamaguch struct ixl_dmamem idm;
3639 1.1 yamaguch struct ixl_aq_desc iaq;
3640 1.1 yamaguch struct ixl_aq_mac_addresses *addrs;
3641 1.1 yamaguch int rv;
3642 1.1 yamaguch
3643 1.1 yamaguch if (ixl_dmamem_alloc(sc, &idm, sizeof(*addrs), 0) != 0) {
3644 1.1 yamaguch aprint_error(", unable to allocate mac addresses\n");
3645 1.1 yamaguch return -1;
3646 1.1 yamaguch }
3647 1.1 yamaguch
3648 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3649 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF);
3650 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_MAC_ADDRESS_READ);
3651 1.1 yamaguch iaq.iaq_datalen = htole16(sizeof(*addrs));
3652 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(&idm));
3653 1.1 yamaguch
3654 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&idm), 0, IXL_DMA_LEN(&idm),
3655 1.1 yamaguch BUS_DMASYNC_PREREAD);
3656 1.1 yamaguch
3657 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3658 1.1 yamaguch
3659 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&idm), 0, IXL_DMA_LEN(&idm),
3660 1.1 yamaguch BUS_DMASYNC_POSTREAD);
3661 1.1 yamaguch
3662 1.1 yamaguch if (rv != 0) {
3663 1.1 yamaguch aprint_error(", MAC ADDRESS READ timeout\n");
3664 1.1 yamaguch rv = -1;
3665 1.1 yamaguch goto done;
3666 1.1 yamaguch }
3667 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
3668 1.1 yamaguch aprint_error(", MAC ADDRESS READ error\n");
3669 1.1 yamaguch rv = -1;
3670 1.1 yamaguch goto done;
3671 1.1 yamaguch }
3672 1.1 yamaguch
3673 1.1 yamaguch addrs = IXL_DMA_KVA(&idm);
3674 1.1 yamaguch if (!ISSET(iaq.iaq_param[0], htole32(IXL_AQ_MAC_PORT_VALID))) {
3675 1.1 yamaguch printf(", port address is not valid\n");
3676 1.1 yamaguch goto done;
3677 1.1 yamaguch }
3678 1.1 yamaguch
3679 1.1 yamaguch memcpy(sc->sc_enaddr, addrs->port, ETHER_ADDR_LEN);
3680 1.1 yamaguch rv = 0;
3681 1.1 yamaguch
3682 1.1 yamaguch done:
3683 1.1 yamaguch ixl_dmamem_free(sc, &idm);
3684 1.1 yamaguch return rv;
3685 1.1 yamaguch }
3686 1.1 yamaguch
3687 1.1 yamaguch static int
3688 1.1 yamaguch ixl_get_switch_config(struct ixl_softc *sc)
3689 1.1 yamaguch {
3690 1.1 yamaguch struct ixl_dmamem idm;
3691 1.1 yamaguch struct ixl_aq_desc iaq;
3692 1.1 yamaguch struct ixl_aq_switch_config *hdr;
3693 1.1 yamaguch struct ixl_aq_switch_config_element *elms, *elm;
3694 1.1 yamaguch unsigned int nelm, i;
3695 1.1 yamaguch int rv;
3696 1.1 yamaguch
3697 1.1 yamaguch if (ixl_dmamem_alloc(sc, &idm, IXL_AQ_BUFLEN, 0) != 0) {
3698 1.1 yamaguch aprint_error_dev(sc->sc_dev,
3699 1.1 yamaguch "unable to allocate switch config buffer\n");
3700 1.1 yamaguch return -1;
3701 1.1 yamaguch }
3702 1.1 yamaguch
3703 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3704 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF |
3705 1.1 yamaguch (IXL_AQ_BUFLEN > I40E_AQ_LARGE_BUF ? IXL_AQ_LB : 0));
3706 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_SWITCH_GET_CONFIG);
3707 1.1 yamaguch iaq.iaq_datalen = htole16(IXL_AQ_BUFLEN);
3708 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(&idm));
3709 1.1 yamaguch
3710 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&idm), 0, IXL_DMA_LEN(&idm),
3711 1.1 yamaguch BUS_DMASYNC_PREREAD);
3712 1.1 yamaguch
3713 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3714 1.1 yamaguch
3715 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&idm), 0, IXL_DMA_LEN(&idm),
3716 1.1 yamaguch BUS_DMASYNC_POSTREAD);
3717 1.1 yamaguch
3718 1.1 yamaguch if (rv != 0) {
3719 1.1 yamaguch aprint_error_dev(sc->sc_dev, "GET SWITCH CONFIG timeout\n");
3720 1.1 yamaguch rv = -1;
3721 1.1 yamaguch goto done;
3722 1.1 yamaguch }
3723 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
3724 1.1 yamaguch aprint_error_dev(sc->sc_dev, "GET SWITCH CONFIG error\n");
3725 1.1 yamaguch rv = -1;
3726 1.1 yamaguch goto done;
3727 1.1 yamaguch }
3728 1.1 yamaguch
3729 1.1 yamaguch hdr = IXL_DMA_KVA(&idm);
3730 1.1 yamaguch elms = (struct ixl_aq_switch_config_element *)(hdr + 1);
3731 1.1 yamaguch
3732 1.1 yamaguch nelm = le16toh(hdr->num_reported);
3733 1.1 yamaguch if (nelm < 1) {
3734 1.1 yamaguch aprint_error_dev(sc->sc_dev, "no switch config available\n");
3735 1.1 yamaguch rv = -1;
3736 1.1 yamaguch goto done;
3737 1.1 yamaguch }
3738 1.1 yamaguch
3739 1.1 yamaguch for (i = 0; i < nelm; i++) {
3740 1.1 yamaguch elm = &elms[i];
3741 1.1 yamaguch
3742 1.1 yamaguch aprint_debug_dev(sc->sc_dev,
3743 1.1 yamaguch "type %x revision %u seid %04x\n",
3744 1.1 yamaguch elm->type, elm->revision, le16toh(elm->seid));
3745 1.1 yamaguch aprint_debug_dev(sc->sc_dev,
3746 1.1 yamaguch "uplink %04x downlink %04x\n",
3747 1.1 yamaguch le16toh(elm->uplink_seid),
3748 1.1 yamaguch le16toh(elm->downlink_seid));
3749 1.1 yamaguch aprint_debug_dev(sc->sc_dev,
3750 1.1 yamaguch "conntype %x scheduler %04x extra %04x\n",
3751 1.1 yamaguch elm->connection_type,
3752 1.1 yamaguch le16toh(elm->scheduler_id),
3753 1.1 yamaguch le16toh(elm->element_info));
3754 1.1 yamaguch }
3755 1.1 yamaguch
3756 1.1 yamaguch elm = &elms[0];
3757 1.1 yamaguch
3758 1.1 yamaguch sc->sc_uplink_seid = elm->uplink_seid;
3759 1.1 yamaguch sc->sc_downlink_seid = elm->downlink_seid;
3760 1.1 yamaguch sc->sc_seid = elm->seid;
3761 1.1 yamaguch
3762 1.1 yamaguch if ((sc->sc_uplink_seid == htole16(0)) !=
3763 1.1 yamaguch (sc->sc_downlink_seid == htole16(0))) {
3764 1.1 yamaguch aprint_error_dev(sc->sc_dev, "SEIDs are misconfigured\n");
3765 1.1 yamaguch rv = -1;
3766 1.1 yamaguch goto done;
3767 1.1 yamaguch }
3768 1.1 yamaguch
3769 1.1 yamaguch done:
3770 1.1 yamaguch ixl_dmamem_free(sc, &idm);
3771 1.1 yamaguch return rv;
3772 1.1 yamaguch }
3773 1.1 yamaguch
3774 1.1 yamaguch static int
3775 1.1 yamaguch ixl_phy_mask_ints(struct ixl_softc *sc)
3776 1.1 yamaguch {
3777 1.1 yamaguch struct ixl_aq_desc iaq;
3778 1.1 yamaguch
3779 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3780 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_PHY_SET_EVENT_MASK);
3781 1.1 yamaguch iaq.iaq_param[2] = htole32(IXL_AQ_PHY_EV_MASK &
3782 1.1 yamaguch ~(IXL_AQ_PHY_EV_LINK_UPDOWN | IXL_AQ_PHY_EV_MODULE_QUAL_FAIL |
3783 1.1 yamaguch IXL_AQ_PHY_EV_MEDIA_NA));
3784 1.1 yamaguch
3785 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0) {
3786 1.1 yamaguch aprint_error_dev(sc->sc_dev, "SET PHY EVENT MASK timeout\n");
3787 1.1 yamaguch return -1;
3788 1.1 yamaguch }
3789 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
3790 1.1 yamaguch aprint_error_dev(sc->sc_dev, "SET PHY EVENT MASK error\n");
3791 1.1 yamaguch return -1;
3792 1.1 yamaguch }
3793 1.1 yamaguch
3794 1.1 yamaguch return 0;
3795 1.1 yamaguch }
3796 1.1 yamaguch
3797 1.1 yamaguch static int
3798 1.1 yamaguch ixl_get_phy_abilities(struct ixl_softc *sc,struct ixl_dmamem *idm)
3799 1.1 yamaguch {
3800 1.1 yamaguch struct ixl_aq_desc iaq;
3801 1.1 yamaguch int rv;
3802 1.1 yamaguch
3803 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3804 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF |
3805 1.1 yamaguch (IXL_DMA_LEN(idm) > I40E_AQ_LARGE_BUF ? IXL_AQ_LB : 0));
3806 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_PHY_GET_ABILITIES);
3807 1.1 yamaguch iaq.iaq_datalen = htole16(IXL_DMA_LEN(idm));
3808 1.1 yamaguch iaq.iaq_param[0] = htole32(IXL_AQ_PHY_REPORT_INIT);
3809 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(idm));
3810 1.1 yamaguch
3811 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(idm), 0, IXL_DMA_LEN(idm),
3812 1.1 yamaguch BUS_DMASYNC_PREREAD);
3813 1.1 yamaguch
3814 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3815 1.1 yamaguch
3816 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(idm), 0, IXL_DMA_LEN(idm),
3817 1.1 yamaguch BUS_DMASYNC_POSTREAD);
3818 1.1 yamaguch
3819 1.1 yamaguch if (rv != 0)
3820 1.1 yamaguch return -1;
3821 1.1 yamaguch
3822 1.1 yamaguch return le16toh(iaq.iaq_retval);
3823 1.1 yamaguch }
3824 1.1 yamaguch
3825 1.1 yamaguch static int
3826 1.1 yamaguch ixl_get_phy_types(struct ixl_softc *sc, uint64_t *phy_types_ptr)
3827 1.1 yamaguch {
3828 1.1 yamaguch struct ixl_dmamem idm;
3829 1.1 yamaguch struct ixl_aq_phy_abilities *phy;
3830 1.1 yamaguch uint64_t phy_types;
3831 1.1 yamaguch int rv;
3832 1.1 yamaguch
3833 1.1 yamaguch if (ixl_dmamem_alloc(sc, &idm, IXL_AQ_BUFLEN, 0) != 0) {
3834 1.1 yamaguch aprint_error_dev(sc->sc_dev,
3835 1.1 yamaguch "unable to allocate switch config buffer\n");
3836 1.1 yamaguch return -1;
3837 1.1 yamaguch }
3838 1.1 yamaguch
3839 1.1 yamaguch rv = ixl_get_phy_abilities(sc, &idm);
3840 1.1 yamaguch switch (rv) {
3841 1.1 yamaguch case -1:
3842 1.1 yamaguch aprint_error_dev(sc->sc_dev, "GET PHY ABILITIES timeout\n");
3843 1.1 yamaguch goto done;
3844 1.1 yamaguch case IXL_AQ_RC_OK:
3845 1.1 yamaguch break;
3846 1.1 yamaguch case IXL_AQ_RC_EIO:
3847 1.1 yamaguch aprint_error_dev(sc->sc_dev,"unable to query phy types\n");
3848 1.1 yamaguch break;
3849 1.1 yamaguch default:
3850 1.1 yamaguch aprint_error_dev(sc->sc_dev,
3851 1.1 yamaguch "GET PHY ABILITIIES error %u\n", rv);
3852 1.1 yamaguch goto done;
3853 1.1 yamaguch }
3854 1.1 yamaguch
3855 1.1 yamaguch phy = IXL_DMA_KVA(&idm);
3856 1.1 yamaguch
3857 1.1 yamaguch phy_types = le32toh(phy->phy_type);
3858 1.1 yamaguch phy_types |= (uint64_t)le32toh(phy->phy_type_ext) << 32;
3859 1.1 yamaguch
3860 1.1 yamaguch *phy_types_ptr = phy_types;
3861 1.1 yamaguch
3862 1.1 yamaguch rv = 0;
3863 1.1 yamaguch
3864 1.1 yamaguch done:
3865 1.1 yamaguch ixl_dmamem_free(sc, &idm);
3866 1.1 yamaguch return rv;
3867 1.1 yamaguch }
3868 1.1 yamaguch
3869 1.1 yamaguch static int
3870 1.4 yamaguch ixl_get_link_status_poll(struct ixl_softc *sc)
3871 1.1 yamaguch {
3872 1.1 yamaguch struct ixl_aq_desc iaq;
3873 1.1 yamaguch struct ixl_aq_link_param *param;
3874 1.1 yamaguch int link;
3875 1.1 yamaguch
3876 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3877 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_PHY_LINK_STATUS);
3878 1.1 yamaguch param = (struct ixl_aq_link_param *)iaq.iaq_param;
3879 1.1 yamaguch param->notify = IXL_AQ_LINK_NOTIFY;
3880 1.1 yamaguch
3881 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0) {
3882 1.1 yamaguch return ETIMEDOUT;
3883 1.1 yamaguch }
3884 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
3885 1.1 yamaguch return EIO;
3886 1.1 yamaguch }
3887 1.1 yamaguch
3888 1.1 yamaguch link = ixl_set_link_status(sc, &iaq);
3889 1.1 yamaguch sc->sc_ec.ec_if.if_link_state = link;
3890 1.1 yamaguch
3891 1.1 yamaguch return 0;
3892 1.1 yamaguch }
3893 1.1 yamaguch
3894 1.1 yamaguch static int
3895 1.1 yamaguch ixl_get_vsi(struct ixl_softc *sc)
3896 1.1 yamaguch {
3897 1.1 yamaguch struct ixl_dmamem *vsi = &sc->sc_scratch;
3898 1.1 yamaguch struct ixl_aq_desc iaq;
3899 1.1 yamaguch struct ixl_aq_vsi_param *param;
3900 1.1 yamaguch struct ixl_aq_vsi_reply *reply;
3901 1.1 yamaguch int rv;
3902 1.1 yamaguch
3903 1.1 yamaguch /* grumble, vsi info isn't "known" at compile time */
3904 1.1 yamaguch
3905 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3906 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF |
3907 1.1 yamaguch (IXL_DMA_LEN(vsi) > I40E_AQ_LARGE_BUF ? IXL_AQ_LB : 0));
3908 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_GET_VSI_PARAMS);
3909 1.1 yamaguch iaq.iaq_datalen = htole16(IXL_DMA_LEN(vsi));
3910 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(vsi));
3911 1.1 yamaguch
3912 1.1 yamaguch param = (struct ixl_aq_vsi_param *)iaq.iaq_param;
3913 1.1 yamaguch param->uplink_seid = sc->sc_seid;
3914 1.1 yamaguch
3915 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(vsi), 0, IXL_DMA_LEN(vsi),
3916 1.1 yamaguch BUS_DMASYNC_PREREAD);
3917 1.1 yamaguch
3918 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3919 1.1 yamaguch
3920 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(vsi), 0, IXL_DMA_LEN(vsi),
3921 1.1 yamaguch BUS_DMASYNC_POSTREAD);
3922 1.1 yamaguch
3923 1.1 yamaguch if (rv != 0) {
3924 1.1 yamaguch aprint_error_dev(sc->sc_dev, "GET VSI timeout\n");
3925 1.1 yamaguch return -1;
3926 1.1 yamaguch }
3927 1.1 yamaguch
3928 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
3929 1.1 yamaguch aprint_error_dev(sc->sc_dev, "GET VSI error %u\n",
3930 1.1 yamaguch le16toh(iaq.iaq_retval));
3931 1.1 yamaguch return -1;
3932 1.1 yamaguch }
3933 1.1 yamaguch
3934 1.1 yamaguch reply = (struct ixl_aq_vsi_reply *)iaq.iaq_param;
3935 1.1 yamaguch sc->sc_vsi_number = reply->vsi_number;
3936 1.1 yamaguch
3937 1.1 yamaguch return 0;
3938 1.1 yamaguch }
3939 1.1 yamaguch
3940 1.1 yamaguch static int
3941 1.1 yamaguch ixl_set_vsi(struct ixl_softc *sc)
3942 1.1 yamaguch {
3943 1.1 yamaguch struct ixl_dmamem *vsi = &sc->sc_scratch;
3944 1.1 yamaguch struct ixl_aq_desc iaq;
3945 1.1 yamaguch struct ixl_aq_vsi_param *param;
3946 1.1 yamaguch struct ixl_aq_vsi_data *data = IXL_DMA_KVA(vsi);
3947 1.1 yamaguch unsigned int qnum;
3948 1.1 yamaguch int rv;
3949 1.1 yamaguch
3950 1.1 yamaguch qnum = sc->sc_nqueue_pairs - 1;
3951 1.1 yamaguch
3952 1.1 yamaguch data->valid_sections = htole16(IXL_AQ_VSI_VALID_QUEUE_MAP |
3953 1.1 yamaguch IXL_AQ_VSI_VALID_VLAN);
3954 1.1 yamaguch
3955 1.1 yamaguch CLR(data->mapping_flags, htole16(IXL_AQ_VSI_QUE_MAP_MASK));
3956 1.1 yamaguch SET(data->mapping_flags, htole16(IXL_AQ_VSI_QUE_MAP_CONTIG));
3957 1.1 yamaguch data->queue_mapping[0] = htole16(0);
3958 1.1 yamaguch data->tc_mapping[0] = htole16((0 << IXL_AQ_VSI_TC_Q_OFFSET_SHIFT) |
3959 1.1 yamaguch (qnum << IXL_AQ_VSI_TC_Q_NUMBER_SHIFT));
3960 1.1 yamaguch
3961 1.1 yamaguch CLR(data->port_vlan_flags,
3962 1.1 yamaguch htole16(IXL_AQ_VSI_PVLAN_MODE_MASK | IXL_AQ_VSI_PVLAN_EMOD_MASK));
3963 1.1 yamaguch SET(data->port_vlan_flags,
3964 1.1 yamaguch htole16(IXL_AQ_VSI_PVLAN_MODE_ALL | IXL_AQ_VSI_PVLAN_EMOD_NOTHING));
3965 1.1 yamaguch
3966 1.1 yamaguch /* grumble, vsi info isn't "known" at compile time */
3967 1.1 yamaguch
3968 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
3969 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF | IXL_AQ_RD |
3970 1.1 yamaguch (IXL_DMA_LEN(vsi) > I40E_AQ_LARGE_BUF ? IXL_AQ_LB : 0));
3971 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_UPD_VSI_PARAMS);
3972 1.1 yamaguch iaq.iaq_datalen = htole16(IXL_DMA_LEN(vsi));
3973 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(vsi));
3974 1.1 yamaguch
3975 1.1 yamaguch param = (struct ixl_aq_vsi_param *)iaq.iaq_param;
3976 1.1 yamaguch param->uplink_seid = sc->sc_seid;
3977 1.1 yamaguch
3978 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(vsi), 0, IXL_DMA_LEN(vsi),
3979 1.1 yamaguch BUS_DMASYNC_PREWRITE);
3980 1.1 yamaguch
3981 1.1 yamaguch rv = ixl_atq_poll(sc, &iaq, 250);
3982 1.1 yamaguch
3983 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(vsi), 0, IXL_DMA_LEN(vsi),
3984 1.1 yamaguch BUS_DMASYNC_POSTWRITE);
3985 1.1 yamaguch
3986 1.1 yamaguch if (rv != 0) {
3987 1.1 yamaguch aprint_error_dev(sc->sc_dev, "UPDATE VSI timeout\n");
3988 1.1 yamaguch return -1;
3989 1.1 yamaguch }
3990 1.1 yamaguch
3991 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
3992 1.1 yamaguch aprint_error_dev(sc->sc_dev, "UPDATE VSI error %u\n",
3993 1.1 yamaguch le16toh(iaq.iaq_retval));
3994 1.1 yamaguch return -1;
3995 1.1 yamaguch }
3996 1.1 yamaguch
3997 1.1 yamaguch return 0;
3998 1.1 yamaguch }
3999 1.1 yamaguch
4000 1.1 yamaguch static void
4001 1.1 yamaguch ixl_set_filter_control(struct ixl_softc *sc)
4002 1.1 yamaguch {
4003 1.1 yamaguch uint32_t reg;
4004 1.1 yamaguch
4005 1.1 yamaguch reg = ixl_rd_rx_csr(sc, I40E_PFQF_CTL_0);
4006 1.1 yamaguch
4007 1.1 yamaguch CLR(reg, I40E_PFQF_CTL_0_HASHLUTSIZE_MASK);
4008 1.1 yamaguch SET(reg, I40E_HASH_LUT_SIZE_128 << I40E_PFQF_CTL_0_HASHLUTSIZE_SHIFT);
4009 1.1 yamaguch
4010 1.1 yamaguch SET(reg, I40E_PFQF_CTL_0_FD_ENA_MASK);
4011 1.1 yamaguch SET(reg, I40E_PFQF_CTL_0_ETYPE_ENA_MASK);
4012 1.1 yamaguch SET(reg, I40E_PFQF_CTL_0_MACVLAN_ENA_MASK);
4013 1.1 yamaguch
4014 1.1 yamaguch ixl_wr_rx_csr(sc, I40E_PFQF_CTL_0, reg);
4015 1.1 yamaguch }
4016 1.1 yamaguch
4017 1.1 yamaguch static inline void
4018 1.1 yamaguch ixl_get_default_rss_key(uint32_t *buf, size_t len)
4019 1.1 yamaguch {
4020 1.1 yamaguch size_t cplen;
4021 1.1 yamaguch uint8_t rss_seed[RSS_KEYSIZE];
4022 1.1 yamaguch
4023 1.1 yamaguch rss_getkey(rss_seed);
4024 1.1 yamaguch memset(buf, 0, len);
4025 1.1 yamaguch
4026 1.1 yamaguch cplen = MIN(len, sizeof(rss_seed));
4027 1.1 yamaguch memcpy(buf, rss_seed, cplen);
4028 1.1 yamaguch }
4029 1.1 yamaguch
4030 1.1 yamaguch static void
4031 1.1 yamaguch ixl_set_rss_key(struct ixl_softc *sc)
4032 1.1 yamaguch {
4033 1.1 yamaguch uint32_t rss_seed[IXL_RSS_KEY_SIZE_REG];
4034 1.1 yamaguch size_t i;
4035 1.1 yamaguch
4036 1.1 yamaguch ixl_get_default_rss_key(rss_seed, sizeof(rss_seed));
4037 1.1 yamaguch
4038 1.1 yamaguch for (i = 0; i < IXL_RSS_KEY_SIZE_REG; i++) {
4039 1.1 yamaguch ixl_wr_rx_csr(sc, I40E_PFQF_HKEY(i), rss_seed[i]);
4040 1.1 yamaguch }
4041 1.1 yamaguch }
4042 1.1 yamaguch
4043 1.1 yamaguch static void
4044 1.1 yamaguch ixl_set_rss_pctype(struct ixl_softc *sc)
4045 1.1 yamaguch {
4046 1.1 yamaguch uint64_t set_hena = 0;
4047 1.1 yamaguch uint32_t hena0, hena1;
4048 1.1 yamaguch
4049 1.1 yamaguch if (sc->sc_mac_type == I40E_MAC_X722)
4050 1.1 yamaguch set_hena = IXL_RSS_HENA_DEFAULT_X722;
4051 1.1 yamaguch else
4052 1.1 yamaguch set_hena = IXL_RSS_HENA_DEFAULT_XL710;
4053 1.1 yamaguch
4054 1.1 yamaguch hena0 = ixl_rd_rx_csr(sc, I40E_PFQF_HENA(0));
4055 1.1 yamaguch hena1 = ixl_rd_rx_csr(sc, I40E_PFQF_HENA(1));
4056 1.1 yamaguch
4057 1.1 yamaguch SET(hena0, set_hena);
4058 1.1 yamaguch SET(hena1, set_hena >> 32);
4059 1.1 yamaguch
4060 1.1 yamaguch ixl_wr_rx_csr(sc, I40E_PFQF_HENA(0), hena0);
4061 1.1 yamaguch ixl_wr_rx_csr(sc, I40E_PFQF_HENA(1), hena1);
4062 1.1 yamaguch }
4063 1.1 yamaguch
4064 1.1 yamaguch static void
4065 1.1 yamaguch ixl_set_rss_hlut(struct ixl_softc *sc)
4066 1.1 yamaguch {
4067 1.1 yamaguch unsigned int qid;
4068 1.1 yamaguch uint8_t hlut_buf[512], lut_mask;
4069 1.1 yamaguch uint32_t *hluts;
4070 1.1 yamaguch size_t i, hluts_num;
4071 1.1 yamaguch
4072 1.1 yamaguch lut_mask = (0x01 << sc->sc_rss_table_entry_width) - 1;
4073 1.1 yamaguch
4074 1.1 yamaguch for (i = 0; i < sc->sc_rss_table_size; i++) {
4075 1.1 yamaguch qid = i % sc->sc_nqueue_pairs;
4076 1.1 yamaguch hlut_buf[i] = qid & lut_mask;
4077 1.1 yamaguch }
4078 1.1 yamaguch
4079 1.1 yamaguch hluts = (uint32_t *)hlut_buf;
4080 1.1 yamaguch hluts_num = sc->sc_rss_table_size >> 2;
4081 1.1 yamaguch for (i = 0; i < hluts_num; i++) {
4082 1.1 yamaguch ixl_wr(sc, I40E_PFQF_HLUT(i), hluts[i]);
4083 1.1 yamaguch }
4084 1.1 yamaguch ixl_flush(sc);
4085 1.1 yamaguch }
4086 1.1 yamaguch
4087 1.1 yamaguch static void
4088 1.1 yamaguch ixl_config_rss(struct ixl_softc *sc)
4089 1.1 yamaguch {
4090 1.1 yamaguch
4091 1.1 yamaguch KASSERT(mutex_owned(&sc->sc_cfg_lock));
4092 1.1 yamaguch
4093 1.1 yamaguch ixl_set_rss_key(sc);
4094 1.1 yamaguch ixl_set_rss_pctype(sc);
4095 1.1 yamaguch ixl_set_rss_hlut(sc);
4096 1.1 yamaguch }
4097 1.1 yamaguch
4098 1.1 yamaguch static const struct ixl_phy_type *
4099 1.1 yamaguch ixl_search_phy_type(uint8_t phy_type)
4100 1.1 yamaguch {
4101 1.1 yamaguch const struct ixl_phy_type *itype;
4102 1.1 yamaguch uint64_t mask;
4103 1.1 yamaguch unsigned int i;
4104 1.1 yamaguch
4105 1.1 yamaguch if (phy_type >= 64)
4106 1.1 yamaguch return NULL;
4107 1.1 yamaguch
4108 1.1 yamaguch mask = 1ULL << phy_type;
4109 1.1 yamaguch
4110 1.1 yamaguch for (i = 0; i < __arraycount(ixl_phy_type_map); i++) {
4111 1.1 yamaguch itype = &ixl_phy_type_map[i];
4112 1.1 yamaguch
4113 1.1 yamaguch if (ISSET(itype->phy_type, mask))
4114 1.1 yamaguch return itype;
4115 1.1 yamaguch }
4116 1.1 yamaguch
4117 1.1 yamaguch return NULL;
4118 1.1 yamaguch }
4119 1.1 yamaguch
4120 1.1 yamaguch static uint64_t
4121 1.1 yamaguch ixl_search_link_speed(uint8_t link_speed)
4122 1.1 yamaguch {
4123 1.1 yamaguch const struct ixl_speed_type *type;
4124 1.1 yamaguch unsigned int i;
4125 1.1 yamaguch
4126 1.1 yamaguch for (i = 0; i < __arraycount(ixl_speed_type_map); i++) {
4127 1.1 yamaguch type = &ixl_speed_type_map[i];
4128 1.1 yamaguch
4129 1.1 yamaguch if (ISSET(type->dev_speed, link_speed))
4130 1.1 yamaguch return type->net_speed;
4131 1.1 yamaguch }
4132 1.1 yamaguch
4133 1.1 yamaguch return 0;
4134 1.1 yamaguch }
4135 1.1 yamaguch
4136 1.1 yamaguch static int
4137 1.1 yamaguch ixl_restart_an(struct ixl_softc *sc)
4138 1.1 yamaguch {
4139 1.1 yamaguch struct ixl_aq_desc iaq;
4140 1.1 yamaguch
4141 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
4142 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_PHY_RESTART_AN);
4143 1.1 yamaguch iaq.iaq_param[0] =
4144 1.1 yamaguch htole32(IXL_AQ_PHY_RESTART_AN | IXL_AQ_PHY_LINK_ENABLE);
4145 1.1 yamaguch
4146 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0) {
4147 1.1 yamaguch aprint_error_dev(sc->sc_dev, "RESTART AN timeout\n");
4148 1.1 yamaguch return -1;
4149 1.1 yamaguch }
4150 1.1 yamaguch if (iaq.iaq_retval != htole16(IXL_AQ_RC_OK)) {
4151 1.1 yamaguch aprint_error_dev(sc->sc_dev, "RESTART AN error\n");
4152 1.1 yamaguch return -1;
4153 1.1 yamaguch }
4154 1.1 yamaguch
4155 1.1 yamaguch return 0;
4156 1.1 yamaguch }
4157 1.1 yamaguch
4158 1.1 yamaguch static int
4159 1.1 yamaguch ixl_add_macvlan(struct ixl_softc *sc, const uint8_t *macaddr,
4160 1.1 yamaguch uint16_t vlan, uint16_t flags)
4161 1.1 yamaguch {
4162 1.1 yamaguch struct ixl_aq_desc iaq;
4163 1.1 yamaguch struct ixl_aq_add_macvlan *param;
4164 1.1 yamaguch struct ixl_aq_add_macvlan_elem *elem;
4165 1.1 yamaguch
4166 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
4167 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF | IXL_AQ_RD);
4168 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_ADD_MACVLAN);
4169 1.1 yamaguch iaq.iaq_datalen = htole16(sizeof(*elem));
4170 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(&sc->sc_scratch));
4171 1.1 yamaguch
4172 1.1 yamaguch param = (struct ixl_aq_add_macvlan *)&iaq.iaq_param;
4173 1.1 yamaguch param->num_addrs = htole16(1);
4174 1.1 yamaguch param->seid0 = htole16(0x8000) | sc->sc_seid;
4175 1.1 yamaguch param->seid1 = 0;
4176 1.1 yamaguch param->seid2 = 0;
4177 1.1 yamaguch
4178 1.1 yamaguch elem = IXL_DMA_KVA(&sc->sc_scratch);
4179 1.1 yamaguch memset(elem, 0, sizeof(*elem));
4180 1.1 yamaguch memcpy(elem->macaddr, macaddr, ETHER_ADDR_LEN);
4181 1.1 yamaguch elem->flags = htole16(IXL_AQ_OP_ADD_MACVLAN_PERFECT_MATCH | flags);
4182 1.1 yamaguch elem->vlan = htole16(vlan);
4183 1.1 yamaguch
4184 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0) {
4185 1.1 yamaguch return IXL_AQ_RC_EINVAL;
4186 1.1 yamaguch }
4187 1.1 yamaguch
4188 1.7 yamaguch switch (le16toh(iaq.iaq_retval)) {
4189 1.7 yamaguch case IXL_AQ_RC_OK:
4190 1.7 yamaguch break;
4191 1.7 yamaguch case IXL_AQ_RC_ENOSPC:
4192 1.7 yamaguch return ENOSPC;
4193 1.7 yamaguch case IXL_AQ_RC_ENOENT:
4194 1.7 yamaguch return ENOENT;
4195 1.7 yamaguch case IXL_AQ_RC_EACCES:
4196 1.7 yamaguch return EACCES;
4197 1.7 yamaguch case IXL_AQ_RC_EEXIST:
4198 1.7 yamaguch return EEXIST;
4199 1.7 yamaguch case IXL_AQ_RC_EINVAL:
4200 1.7 yamaguch return EINVAL;
4201 1.7 yamaguch default:
4202 1.7 yamaguch return EIO;
4203 1.7 yamaguch }
4204 1.7 yamaguch
4205 1.7 yamaguch return 0;
4206 1.1 yamaguch }
4207 1.1 yamaguch
4208 1.1 yamaguch static int
4209 1.1 yamaguch ixl_remove_macvlan(struct ixl_softc *sc, uint8_t *macaddr,
4210 1.1 yamaguch uint16_t vlan, uint16_t flags)
4211 1.1 yamaguch {
4212 1.1 yamaguch struct ixl_aq_desc iaq;
4213 1.1 yamaguch struct ixl_aq_remove_macvlan *param;
4214 1.1 yamaguch struct ixl_aq_remove_macvlan_elem *elem;
4215 1.1 yamaguch
4216 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
4217 1.1 yamaguch iaq.iaq_flags = htole16(IXL_AQ_BUF | IXL_AQ_RD);
4218 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_REMOVE_MACVLAN);
4219 1.1 yamaguch iaq.iaq_datalen = htole16(sizeof(*elem));
4220 1.1 yamaguch ixl_aq_dva(&iaq, IXL_DMA_DVA(&sc->sc_scratch));
4221 1.1 yamaguch
4222 1.1 yamaguch param = (struct ixl_aq_remove_macvlan *)&iaq.iaq_param;
4223 1.1 yamaguch param->num_addrs = htole16(1);
4224 1.1 yamaguch param->seid0 = htole16(0x8000) | sc->sc_seid;
4225 1.1 yamaguch param->seid1 = 0;
4226 1.1 yamaguch param->seid2 = 0;
4227 1.1 yamaguch
4228 1.1 yamaguch elem = IXL_DMA_KVA(&sc->sc_scratch);
4229 1.1 yamaguch memset(elem, 0, sizeof(*elem));
4230 1.1 yamaguch memcpy(elem->macaddr, macaddr, ETHER_ADDR_LEN);
4231 1.1 yamaguch elem->flags = htole16(IXL_AQ_OP_REMOVE_MACVLAN_PERFECT_MATCH | flags);
4232 1.1 yamaguch elem->vlan = htole16(vlan);
4233 1.1 yamaguch
4234 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0) {
4235 1.7 yamaguch return EINVAL;
4236 1.7 yamaguch }
4237 1.7 yamaguch
4238 1.7 yamaguch switch (le16toh(iaq.iaq_retval)) {
4239 1.7 yamaguch case IXL_AQ_RC_OK:
4240 1.7 yamaguch break;
4241 1.7 yamaguch case IXL_AQ_RC_ENOENT:
4242 1.7 yamaguch return ENOENT;
4243 1.7 yamaguch case IXL_AQ_RC_EACCES:
4244 1.7 yamaguch return EACCES;
4245 1.7 yamaguch case IXL_AQ_RC_EINVAL:
4246 1.7 yamaguch return EINVAL;
4247 1.7 yamaguch default:
4248 1.7 yamaguch return EIO;
4249 1.1 yamaguch }
4250 1.1 yamaguch
4251 1.7 yamaguch return 0;
4252 1.1 yamaguch }
4253 1.1 yamaguch
4254 1.1 yamaguch static int
4255 1.1 yamaguch ixl_hmc(struct ixl_softc *sc)
4256 1.1 yamaguch {
4257 1.1 yamaguch struct {
4258 1.1 yamaguch uint32_t count;
4259 1.1 yamaguch uint32_t minsize;
4260 1.1 yamaguch bus_size_t objsiz;
4261 1.1 yamaguch bus_size_t setoff;
4262 1.1 yamaguch bus_size_t setcnt;
4263 1.1 yamaguch } regs[] = {
4264 1.1 yamaguch {
4265 1.1 yamaguch 0,
4266 1.1 yamaguch IXL_HMC_TXQ_MINSIZE,
4267 1.1 yamaguch I40E_GLHMC_LANTXOBJSZ,
4268 1.1 yamaguch I40E_GLHMC_LANTXBASE(sc->sc_pf_id),
4269 1.1 yamaguch I40E_GLHMC_LANTXCNT(sc->sc_pf_id),
4270 1.1 yamaguch },
4271 1.1 yamaguch {
4272 1.1 yamaguch 0,
4273 1.1 yamaguch IXL_HMC_RXQ_MINSIZE,
4274 1.1 yamaguch I40E_GLHMC_LANRXOBJSZ,
4275 1.1 yamaguch I40E_GLHMC_LANRXBASE(sc->sc_pf_id),
4276 1.1 yamaguch I40E_GLHMC_LANRXCNT(sc->sc_pf_id),
4277 1.1 yamaguch },
4278 1.1 yamaguch {
4279 1.1 yamaguch 0,
4280 1.1 yamaguch 0,
4281 1.1 yamaguch I40E_GLHMC_FCOEDDPOBJSZ,
4282 1.1 yamaguch I40E_GLHMC_FCOEDDPBASE(sc->sc_pf_id),
4283 1.1 yamaguch I40E_GLHMC_FCOEDDPCNT(sc->sc_pf_id),
4284 1.1 yamaguch },
4285 1.1 yamaguch {
4286 1.1 yamaguch 0,
4287 1.1 yamaguch 0,
4288 1.1 yamaguch I40E_GLHMC_FCOEFOBJSZ,
4289 1.1 yamaguch I40E_GLHMC_FCOEFBASE(sc->sc_pf_id),
4290 1.1 yamaguch I40E_GLHMC_FCOEFCNT(sc->sc_pf_id),
4291 1.1 yamaguch },
4292 1.1 yamaguch };
4293 1.1 yamaguch struct ixl_hmc_entry *e;
4294 1.1 yamaguch uint64_t size, dva;
4295 1.1 yamaguch uint8_t *kva;
4296 1.1 yamaguch uint64_t *sdpage;
4297 1.1 yamaguch unsigned int i;
4298 1.1 yamaguch int npages, tables;
4299 1.1 yamaguch uint32_t reg;
4300 1.1 yamaguch
4301 1.1 yamaguch CTASSERT(__arraycount(regs) <= __arraycount(sc->sc_hmc_entries));
4302 1.1 yamaguch
4303 1.1 yamaguch regs[IXL_HMC_LAN_TX].count = regs[IXL_HMC_LAN_RX].count =
4304 1.1 yamaguch ixl_rd(sc, I40E_GLHMC_LANQMAX);
4305 1.1 yamaguch
4306 1.1 yamaguch size = 0;
4307 1.1 yamaguch for (i = 0; i < __arraycount(regs); i++) {
4308 1.1 yamaguch e = &sc->sc_hmc_entries[i];
4309 1.1 yamaguch
4310 1.1 yamaguch e->hmc_count = regs[i].count;
4311 1.1 yamaguch reg = ixl_rd(sc, regs[i].objsiz);
4312 1.1 yamaguch e->hmc_size = BIT_ULL(0x3F & reg);
4313 1.1 yamaguch e->hmc_base = size;
4314 1.1 yamaguch
4315 1.1 yamaguch if ((e->hmc_size * 8) < regs[i].minsize) {
4316 1.1 yamaguch aprint_error_dev(sc->sc_dev,
4317 1.1 yamaguch "kernel hmc entry is too big\n");
4318 1.1 yamaguch return -1;
4319 1.1 yamaguch }
4320 1.1 yamaguch
4321 1.1 yamaguch size += roundup(e->hmc_size * e->hmc_count, IXL_HMC_ROUNDUP);
4322 1.1 yamaguch }
4323 1.1 yamaguch size = roundup(size, IXL_HMC_PGSIZE);
4324 1.1 yamaguch npages = size / IXL_HMC_PGSIZE;
4325 1.1 yamaguch
4326 1.1 yamaguch tables = roundup(size, IXL_HMC_L2SZ) / IXL_HMC_L2SZ;
4327 1.1 yamaguch
4328 1.1 yamaguch if (ixl_dmamem_alloc(sc, &sc->sc_hmc_pd, size, IXL_HMC_PGSIZE) != 0) {
4329 1.1 yamaguch aprint_error_dev(sc->sc_dev,
4330 1.1 yamaguch "unable to allocate hmc pd memory\n");
4331 1.1 yamaguch return -1;
4332 1.1 yamaguch }
4333 1.1 yamaguch
4334 1.1 yamaguch if (ixl_dmamem_alloc(sc, &sc->sc_hmc_sd, tables * IXL_HMC_PGSIZE,
4335 1.1 yamaguch IXL_HMC_PGSIZE) != 0) {
4336 1.1 yamaguch aprint_error_dev(sc->sc_dev,
4337 1.1 yamaguch "unable to allocate hmc sd memory\n");
4338 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_hmc_pd);
4339 1.1 yamaguch return -1;
4340 1.1 yamaguch }
4341 1.1 yamaguch
4342 1.1 yamaguch kva = IXL_DMA_KVA(&sc->sc_hmc_pd);
4343 1.1 yamaguch memset(kva, 0, IXL_DMA_LEN(&sc->sc_hmc_pd));
4344 1.1 yamaguch
4345 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_hmc_pd),
4346 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_hmc_pd),
4347 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
4348 1.1 yamaguch
4349 1.1 yamaguch dva = IXL_DMA_DVA(&sc->sc_hmc_pd);
4350 1.1 yamaguch sdpage = IXL_DMA_KVA(&sc->sc_hmc_sd);
4351 1.1 yamaguch memset(sdpage, 0, IXL_DMA_LEN(&sc->sc_hmc_sd));
4352 1.1 yamaguch
4353 1.1 yamaguch for (i = 0; (int)i < npages; i++) {
4354 1.1 yamaguch *sdpage = htole64(dva | IXL_HMC_PDVALID);
4355 1.1 yamaguch sdpage++;
4356 1.1 yamaguch
4357 1.1 yamaguch dva += IXL_HMC_PGSIZE;
4358 1.1 yamaguch }
4359 1.1 yamaguch
4360 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, IXL_DMA_MAP(&sc->sc_hmc_sd),
4361 1.1 yamaguch 0, IXL_DMA_LEN(&sc->sc_hmc_sd),
4362 1.1 yamaguch BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
4363 1.1 yamaguch
4364 1.1 yamaguch dva = IXL_DMA_DVA(&sc->sc_hmc_sd);
4365 1.1 yamaguch for (i = 0; (int)i < tables; i++) {
4366 1.1 yamaguch uint32_t count;
4367 1.1 yamaguch
4368 1.1 yamaguch KASSERT(npages >= 0);
4369 1.1 yamaguch
4370 1.1 yamaguch count = ((unsigned int)npages > IXL_HMC_PGS) ?
4371 1.1 yamaguch IXL_HMC_PGS : (unsigned int)npages;
4372 1.1 yamaguch
4373 1.1 yamaguch ixl_wr(sc, I40E_PFHMC_SDDATAHIGH, dva >> 32);
4374 1.1 yamaguch ixl_wr(sc, I40E_PFHMC_SDDATALOW, dva |
4375 1.1 yamaguch (count << I40E_PFHMC_SDDATALOW_PMSDBPCOUNT_SHIFT) |
4376 1.1 yamaguch (1U << I40E_PFHMC_SDDATALOW_PMSDVALID_SHIFT));
4377 1.1 yamaguch ixl_barrier(sc, 0, sc->sc_mems, BUS_SPACE_BARRIER_WRITE);
4378 1.1 yamaguch ixl_wr(sc, I40E_PFHMC_SDCMD,
4379 1.1 yamaguch (1U << I40E_PFHMC_SDCMD_PMSDWR_SHIFT) | i);
4380 1.1 yamaguch
4381 1.1 yamaguch npages -= IXL_HMC_PGS;
4382 1.1 yamaguch dva += IXL_HMC_PGSIZE;
4383 1.1 yamaguch }
4384 1.1 yamaguch
4385 1.1 yamaguch for (i = 0; i < __arraycount(regs); i++) {
4386 1.1 yamaguch e = &sc->sc_hmc_entries[i];
4387 1.1 yamaguch
4388 1.1 yamaguch ixl_wr(sc, regs[i].setoff, e->hmc_base / IXL_HMC_ROUNDUP);
4389 1.1 yamaguch ixl_wr(sc, regs[i].setcnt, e->hmc_count);
4390 1.1 yamaguch }
4391 1.1 yamaguch
4392 1.1 yamaguch return 0;
4393 1.1 yamaguch }
4394 1.1 yamaguch
4395 1.1 yamaguch static void
4396 1.1 yamaguch ixl_hmc_free(struct ixl_softc *sc)
4397 1.1 yamaguch {
4398 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_hmc_sd);
4399 1.1 yamaguch ixl_dmamem_free(sc, &sc->sc_hmc_pd);
4400 1.1 yamaguch }
4401 1.1 yamaguch
4402 1.1 yamaguch static void
4403 1.1 yamaguch ixl_hmc_pack(void *d, const void *s, const struct ixl_hmc_pack *packing,
4404 1.1 yamaguch unsigned int npacking)
4405 1.1 yamaguch {
4406 1.1 yamaguch uint8_t *dst = d;
4407 1.1 yamaguch const uint8_t *src = s;
4408 1.1 yamaguch unsigned int i;
4409 1.1 yamaguch
4410 1.1 yamaguch for (i = 0; i < npacking; i++) {
4411 1.1 yamaguch const struct ixl_hmc_pack *pack = &packing[i];
4412 1.1 yamaguch unsigned int offset = pack->lsb / 8;
4413 1.1 yamaguch unsigned int align = pack->lsb % 8;
4414 1.1 yamaguch const uint8_t *in = src + pack->offset;
4415 1.1 yamaguch uint8_t *out = dst + offset;
4416 1.1 yamaguch int width = pack->width;
4417 1.1 yamaguch unsigned int inbits = 0;
4418 1.1 yamaguch
4419 1.1 yamaguch if (align) {
4420 1.1 yamaguch inbits = (*in++) << align;
4421 1.1 yamaguch *out++ |= (inbits & 0xff);
4422 1.1 yamaguch inbits >>= 8;
4423 1.1 yamaguch
4424 1.1 yamaguch width -= 8 - align;
4425 1.1 yamaguch }
4426 1.1 yamaguch
4427 1.1 yamaguch while (width >= 8) {
4428 1.1 yamaguch inbits |= (*in++) << align;
4429 1.1 yamaguch *out++ = (inbits & 0xff);
4430 1.1 yamaguch inbits >>= 8;
4431 1.1 yamaguch
4432 1.1 yamaguch width -= 8;
4433 1.1 yamaguch }
4434 1.1 yamaguch
4435 1.1 yamaguch if (width > 0) {
4436 1.1 yamaguch inbits |= (*in) << align;
4437 1.1 yamaguch *out |= (inbits & ((1 << width) - 1));
4438 1.1 yamaguch }
4439 1.1 yamaguch }
4440 1.1 yamaguch }
4441 1.1 yamaguch
4442 1.1 yamaguch static struct ixl_aq_buf *
4443 1.1 yamaguch ixl_aqb_alloc(struct ixl_softc *sc)
4444 1.1 yamaguch {
4445 1.1 yamaguch struct ixl_aq_buf *aqb;
4446 1.1 yamaguch
4447 1.1 yamaguch aqb = malloc(sizeof(*aqb), M_DEVBUF, M_WAITOK);
4448 1.1 yamaguch if (aqb == NULL)
4449 1.1 yamaguch return NULL;
4450 1.1 yamaguch
4451 1.1 yamaguch aqb->aqb_size = IXL_AQ_BUFLEN;
4452 1.1 yamaguch
4453 1.1 yamaguch if (bus_dmamap_create(sc->sc_dmat, aqb->aqb_size, 1,
4454 1.1 yamaguch aqb->aqb_size, 0,
4455 1.1 yamaguch BUS_DMA_WAITOK | BUS_DMA_ALLOCNOW, &aqb->aqb_map) != 0)
4456 1.1 yamaguch goto free;
4457 1.1 yamaguch if (bus_dmamem_alloc(sc->sc_dmat, aqb->aqb_size,
4458 1.1 yamaguch IXL_AQ_ALIGN, 0, &aqb->aqb_seg, 1, &aqb->aqb_nsegs,
4459 1.1 yamaguch BUS_DMA_WAITOK) != 0)
4460 1.1 yamaguch goto destroy;
4461 1.1 yamaguch if (bus_dmamem_map(sc->sc_dmat, &aqb->aqb_seg, aqb->aqb_nsegs,
4462 1.1 yamaguch aqb->aqb_size, &aqb->aqb_data, BUS_DMA_WAITOK) != 0)
4463 1.1 yamaguch goto dma_free;
4464 1.1 yamaguch if (bus_dmamap_load(sc->sc_dmat, aqb->aqb_map, aqb->aqb_data,
4465 1.1 yamaguch aqb->aqb_size, NULL, BUS_DMA_WAITOK) != 0)
4466 1.1 yamaguch goto unmap;
4467 1.1 yamaguch
4468 1.1 yamaguch return aqb;
4469 1.1 yamaguch unmap:
4470 1.1 yamaguch bus_dmamem_unmap(sc->sc_dmat, aqb->aqb_data, aqb->aqb_size);
4471 1.1 yamaguch dma_free:
4472 1.1 yamaguch bus_dmamem_free(sc->sc_dmat, &aqb->aqb_seg, 1);
4473 1.1 yamaguch destroy:
4474 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, aqb->aqb_map);
4475 1.1 yamaguch free:
4476 1.1 yamaguch free(aqb, M_DEVBUF);
4477 1.1 yamaguch
4478 1.1 yamaguch return NULL;
4479 1.1 yamaguch }
4480 1.1 yamaguch
4481 1.1 yamaguch static void
4482 1.1 yamaguch ixl_aqb_free(struct ixl_softc *sc, struct ixl_aq_buf *aqb)
4483 1.1 yamaguch {
4484 1.1 yamaguch bus_dmamap_unload(sc->sc_dmat, aqb->aqb_map);
4485 1.1 yamaguch bus_dmamem_unmap(sc->sc_dmat, aqb->aqb_data, aqb->aqb_size);
4486 1.1 yamaguch bus_dmamem_free(sc->sc_dmat, &aqb->aqb_seg, 1);
4487 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, aqb->aqb_map);
4488 1.1 yamaguch free(aqb, M_DEVBUF);
4489 1.1 yamaguch }
4490 1.1 yamaguch
4491 1.1 yamaguch static int
4492 1.1 yamaguch ixl_arq_fill(struct ixl_softc *sc)
4493 1.1 yamaguch {
4494 1.1 yamaguch struct ixl_aq_buf *aqb;
4495 1.1 yamaguch struct ixl_aq_desc *arq, *iaq;
4496 1.1 yamaguch unsigned int prod = sc->sc_arq_prod;
4497 1.1 yamaguch unsigned int n;
4498 1.1 yamaguch int post = 0;
4499 1.1 yamaguch
4500 1.1 yamaguch n = ixl_rxr_unrefreshed(sc->sc_arq_prod, sc->sc_arq_cons,
4501 1.1 yamaguch IXL_AQ_NUM);
4502 1.1 yamaguch arq = IXL_DMA_KVA(&sc->sc_arq);
4503 1.1 yamaguch
4504 1.1 yamaguch if (__predict_false(n <= 0))
4505 1.1 yamaguch return 0;
4506 1.1 yamaguch
4507 1.1 yamaguch do {
4508 1.1 yamaguch aqb = sc->sc_arq_live[prod];
4509 1.1 yamaguch iaq = &arq[prod];
4510 1.1 yamaguch
4511 1.1 yamaguch if (aqb == NULL) {
4512 1.1 yamaguch aqb = SIMPLEQ_FIRST(&sc->sc_arq_idle);
4513 1.1 yamaguch if (aqb != NULL) {
4514 1.1 yamaguch SIMPLEQ_REMOVE(&sc->sc_arq_idle, aqb,
4515 1.1 yamaguch ixl_aq_buf, aqb_entry);
4516 1.1 yamaguch } else if ((aqb = ixl_aqb_alloc(sc)) == NULL) {
4517 1.1 yamaguch break;
4518 1.1 yamaguch }
4519 1.1 yamaguch
4520 1.1 yamaguch sc->sc_arq_live[prod] = aqb;
4521 1.1 yamaguch memset(aqb->aqb_data, 0, aqb->aqb_size);
4522 1.1 yamaguch
4523 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, aqb->aqb_map, 0,
4524 1.1 yamaguch aqb->aqb_size, BUS_DMASYNC_PREREAD);
4525 1.1 yamaguch
4526 1.1 yamaguch iaq->iaq_flags = htole16(IXL_AQ_BUF |
4527 1.1 yamaguch (IXL_AQ_BUFLEN > I40E_AQ_LARGE_BUF ?
4528 1.1 yamaguch IXL_AQ_LB : 0));
4529 1.1 yamaguch iaq->iaq_opcode = 0;
4530 1.1 yamaguch iaq->iaq_datalen = htole16(aqb->aqb_size);
4531 1.1 yamaguch iaq->iaq_retval = 0;
4532 1.1 yamaguch iaq->iaq_cookie = 0;
4533 1.1 yamaguch iaq->iaq_param[0] = 0;
4534 1.1 yamaguch iaq->iaq_param[1] = 0;
4535 1.1 yamaguch ixl_aq_dva(iaq, aqb->aqb_map->dm_segs[0].ds_addr);
4536 1.1 yamaguch }
4537 1.1 yamaguch
4538 1.1 yamaguch prod++;
4539 1.1 yamaguch prod &= IXL_AQ_MASK;
4540 1.1 yamaguch
4541 1.1 yamaguch post = 1;
4542 1.1 yamaguch
4543 1.1 yamaguch } while (--n);
4544 1.1 yamaguch
4545 1.1 yamaguch if (post) {
4546 1.1 yamaguch sc->sc_arq_prod = prod;
4547 1.1 yamaguch ixl_wr(sc, sc->sc_aq_regs->arq_tail, sc->sc_arq_prod);
4548 1.1 yamaguch }
4549 1.1 yamaguch
4550 1.1 yamaguch return post;
4551 1.1 yamaguch }
4552 1.1 yamaguch
4553 1.1 yamaguch static void
4554 1.1 yamaguch ixl_arq_unfill(struct ixl_softc *sc)
4555 1.1 yamaguch {
4556 1.1 yamaguch struct ixl_aq_buf *aqb;
4557 1.1 yamaguch unsigned int i;
4558 1.1 yamaguch
4559 1.1 yamaguch for (i = 0; i < __arraycount(sc->sc_arq_live); i++) {
4560 1.1 yamaguch aqb = sc->sc_arq_live[i];
4561 1.1 yamaguch if (aqb == NULL)
4562 1.1 yamaguch continue;
4563 1.1 yamaguch
4564 1.1 yamaguch sc->sc_arq_live[i] = NULL;
4565 1.1 yamaguch bus_dmamap_sync(sc->sc_dmat, aqb->aqb_map, 0, aqb->aqb_size,
4566 1.1 yamaguch BUS_DMASYNC_POSTREAD);
4567 1.1 yamaguch ixl_aqb_free(sc, aqb);
4568 1.1 yamaguch }
4569 1.1 yamaguch
4570 1.1 yamaguch while ((aqb = SIMPLEQ_FIRST(&sc->sc_arq_idle)) != NULL) {
4571 1.1 yamaguch SIMPLEQ_REMOVE(&sc->sc_arq_idle, aqb,
4572 1.1 yamaguch ixl_aq_buf, aqb_entry);
4573 1.1 yamaguch ixl_aqb_free(sc, aqb);
4574 1.1 yamaguch }
4575 1.1 yamaguch }
4576 1.1 yamaguch
4577 1.1 yamaguch static void
4578 1.1 yamaguch ixl_clear_hw(struct ixl_softc *sc)
4579 1.1 yamaguch {
4580 1.1 yamaguch uint32_t num_queues, base_queue;
4581 1.1 yamaguch uint32_t num_pf_int;
4582 1.1 yamaguch uint32_t num_vf_int;
4583 1.1 yamaguch uint32_t num_vfs;
4584 1.1 yamaguch uint32_t i, j;
4585 1.1 yamaguch uint32_t val;
4586 1.1 yamaguch uint32_t eol = 0x7ff;
4587 1.1 yamaguch
4588 1.1 yamaguch /* get number of interrupts, queues, and vfs */
4589 1.1 yamaguch val = ixl_rd(sc, I40E_GLPCI_CNF2);
4590 1.1 yamaguch num_pf_int = (val & I40E_GLPCI_CNF2_MSI_X_PF_N_MASK) >>
4591 1.1 yamaguch I40E_GLPCI_CNF2_MSI_X_PF_N_SHIFT;
4592 1.1 yamaguch num_vf_int = (val & I40E_GLPCI_CNF2_MSI_X_VF_N_MASK) >>
4593 1.1 yamaguch I40E_GLPCI_CNF2_MSI_X_VF_N_SHIFT;
4594 1.1 yamaguch
4595 1.1 yamaguch val = ixl_rd(sc, I40E_PFLAN_QALLOC);
4596 1.1 yamaguch base_queue = (val & I40E_PFLAN_QALLOC_FIRSTQ_MASK) >>
4597 1.1 yamaguch I40E_PFLAN_QALLOC_FIRSTQ_SHIFT;
4598 1.1 yamaguch j = (val & I40E_PFLAN_QALLOC_LASTQ_MASK) >>
4599 1.1 yamaguch I40E_PFLAN_QALLOC_LASTQ_SHIFT;
4600 1.1 yamaguch if (val & I40E_PFLAN_QALLOC_VALID_MASK)
4601 1.1 yamaguch num_queues = (j - base_queue) + 1;
4602 1.1 yamaguch else
4603 1.1 yamaguch num_queues = 0;
4604 1.1 yamaguch
4605 1.1 yamaguch val = ixl_rd(sc, I40E_PF_VT_PFALLOC);
4606 1.1 yamaguch i = (val & I40E_PF_VT_PFALLOC_FIRSTVF_MASK) >>
4607 1.1 yamaguch I40E_PF_VT_PFALLOC_FIRSTVF_SHIFT;
4608 1.1 yamaguch j = (val & I40E_PF_VT_PFALLOC_LASTVF_MASK) >>
4609 1.1 yamaguch I40E_PF_VT_PFALLOC_LASTVF_SHIFT;
4610 1.1 yamaguch if (val & I40E_PF_VT_PFALLOC_VALID_MASK)
4611 1.1 yamaguch num_vfs = (j - i) + 1;
4612 1.1 yamaguch else
4613 1.1 yamaguch num_vfs = 0;
4614 1.1 yamaguch
4615 1.1 yamaguch /* stop all the interrupts */
4616 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ICR0_ENA, 0);
4617 1.1 yamaguch ixl_flush(sc);
4618 1.1 yamaguch val = 0x3 << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
4619 1.1 yamaguch for (i = 0; i < num_pf_int - 2; i++)
4620 1.1 yamaguch ixl_wr(sc, I40E_PFINT_DYN_CTLN(i), val);
4621 1.1 yamaguch ixl_flush(sc);
4622 1.1 yamaguch
4623 1.1 yamaguch /* Set the FIRSTQ_INDX field to 0x7FF in PFINT_LNKLSTx */
4624 1.1 yamaguch val = eol << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4625 1.1 yamaguch ixl_wr(sc, I40E_PFINT_LNKLST0, val);
4626 1.1 yamaguch for (i = 0; i < num_pf_int - 2; i++)
4627 1.1 yamaguch ixl_wr(sc, I40E_PFINT_LNKLSTN(i), val);
4628 1.1 yamaguch val = eol << I40E_VPINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4629 1.1 yamaguch for (i = 0; i < num_vfs; i++)
4630 1.1 yamaguch ixl_wr(sc, I40E_VPINT_LNKLST0(i), val);
4631 1.1 yamaguch for (i = 0; i < num_vf_int - 2; i++)
4632 1.1 yamaguch ixl_wr(sc, I40E_VPINT_LNKLSTN(i), val);
4633 1.1 yamaguch
4634 1.1 yamaguch /* warn the HW of the coming Tx disables */
4635 1.1 yamaguch for (i = 0; i < num_queues; i++) {
4636 1.1 yamaguch uint32_t abs_queue_idx = base_queue + i;
4637 1.1 yamaguch uint32_t reg_block = 0;
4638 1.1 yamaguch
4639 1.1 yamaguch if (abs_queue_idx >= 128) {
4640 1.1 yamaguch reg_block = abs_queue_idx / 128;
4641 1.1 yamaguch abs_queue_idx %= 128;
4642 1.1 yamaguch }
4643 1.1 yamaguch
4644 1.1 yamaguch val = ixl_rd(sc, I40E_GLLAN_TXPRE_QDIS(reg_block));
4645 1.1 yamaguch val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
4646 1.1 yamaguch val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
4647 1.1 yamaguch val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
4648 1.1 yamaguch
4649 1.1 yamaguch ixl_wr(sc, I40E_GLLAN_TXPRE_QDIS(reg_block), val);
4650 1.1 yamaguch }
4651 1.1 yamaguch delaymsec(400);
4652 1.1 yamaguch
4653 1.1 yamaguch /* stop all the queues */
4654 1.1 yamaguch for (i = 0; i < num_queues; i++) {
4655 1.1 yamaguch ixl_wr(sc, I40E_QINT_TQCTL(i), 0);
4656 1.1 yamaguch ixl_wr(sc, I40E_QTX_ENA(i), 0);
4657 1.1 yamaguch ixl_wr(sc, I40E_QINT_RQCTL(i), 0);
4658 1.1 yamaguch ixl_wr(sc, I40E_QRX_ENA(i), 0);
4659 1.1 yamaguch }
4660 1.1 yamaguch
4661 1.1 yamaguch /* short wait for all queue disables to settle */
4662 1.1 yamaguch delaymsec(50);
4663 1.1 yamaguch }
4664 1.1 yamaguch
4665 1.1 yamaguch static int
4666 1.1 yamaguch ixl_pf_reset(struct ixl_softc *sc)
4667 1.1 yamaguch {
4668 1.1 yamaguch uint32_t cnt = 0;
4669 1.1 yamaguch uint32_t cnt1 = 0;
4670 1.1 yamaguch uint32_t reg = 0, reg0 = 0;
4671 1.1 yamaguch uint32_t grst_del;
4672 1.1 yamaguch
4673 1.1 yamaguch /*
4674 1.1 yamaguch * Poll for Global Reset steady state in case of recent GRST.
4675 1.1 yamaguch * The grst delay value is in 100ms units, and we'll wait a
4676 1.1 yamaguch * couple counts longer to be sure we don't just miss the end.
4677 1.1 yamaguch */
4678 1.1 yamaguch grst_del = ixl_rd(sc, I40E_GLGEN_RSTCTL);
4679 1.1 yamaguch grst_del &= I40E_GLGEN_RSTCTL_GRSTDEL_MASK;
4680 1.1 yamaguch grst_del >>= I40E_GLGEN_RSTCTL_GRSTDEL_SHIFT;
4681 1.1 yamaguch
4682 1.1 yamaguch grst_del = grst_del * 20;
4683 1.1 yamaguch
4684 1.1 yamaguch for (cnt = 0; cnt < grst_del; cnt++) {
4685 1.1 yamaguch reg = ixl_rd(sc, I40E_GLGEN_RSTAT);
4686 1.1 yamaguch if (!(reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK))
4687 1.1 yamaguch break;
4688 1.1 yamaguch delaymsec(100);
4689 1.1 yamaguch }
4690 1.1 yamaguch if (reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
4691 1.1 yamaguch aprint_error(", Global reset polling failed to complete\n");
4692 1.1 yamaguch return -1;
4693 1.1 yamaguch }
4694 1.1 yamaguch
4695 1.1 yamaguch /* Now Wait for the FW to be ready */
4696 1.1 yamaguch for (cnt1 = 0; cnt1 < I40E_PF_RESET_WAIT_COUNT; cnt1++) {
4697 1.1 yamaguch reg = ixl_rd(sc, I40E_GLNVM_ULD);
4698 1.1 yamaguch reg &= (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
4699 1.1 yamaguch I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK);
4700 1.1 yamaguch if (reg == (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
4701 1.1 yamaguch I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))
4702 1.1 yamaguch break;
4703 1.1 yamaguch
4704 1.1 yamaguch delaymsec(10);
4705 1.1 yamaguch }
4706 1.1 yamaguch if (!(reg & (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
4707 1.1 yamaguch I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))) {
4708 1.1 yamaguch aprint_error(", wait for FW Reset complete timed out "
4709 1.1 yamaguch "(I40E_GLNVM_ULD = 0x%x)\n", reg);
4710 1.1 yamaguch return -1;
4711 1.1 yamaguch }
4712 1.1 yamaguch
4713 1.1 yamaguch /*
4714 1.1 yamaguch * If there was a Global Reset in progress when we got here,
4715 1.1 yamaguch * we don't need to do the PF Reset
4716 1.1 yamaguch */
4717 1.1 yamaguch if (cnt == 0) {
4718 1.1 yamaguch reg = ixl_rd(sc, I40E_PFGEN_CTRL);
4719 1.1 yamaguch ixl_wr(sc, I40E_PFGEN_CTRL, reg | I40E_PFGEN_CTRL_PFSWR_MASK);
4720 1.1 yamaguch for (cnt = 0; cnt < I40E_PF_RESET_WAIT_COUNT; cnt++) {
4721 1.1 yamaguch reg = ixl_rd(sc, I40E_PFGEN_CTRL);
4722 1.1 yamaguch if (!(reg & I40E_PFGEN_CTRL_PFSWR_MASK))
4723 1.1 yamaguch break;
4724 1.1 yamaguch delaymsec(1);
4725 1.1 yamaguch
4726 1.1 yamaguch reg0 = ixl_rd(sc, I40E_GLGEN_RSTAT);
4727 1.1 yamaguch if (reg0 & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
4728 1.1 yamaguch aprint_error(", Core reset upcoming."
4729 1.1 yamaguch " Skipping PF reset reset request\n");
4730 1.1 yamaguch return -1;
4731 1.1 yamaguch }
4732 1.1 yamaguch }
4733 1.1 yamaguch if (reg & I40E_PFGEN_CTRL_PFSWR_MASK) {
4734 1.1 yamaguch aprint_error(", PF reset polling failed to complete"
4735 1.1 yamaguch "(I40E_PFGEN_CTRL= 0x%x)\n", reg);
4736 1.1 yamaguch return -1;
4737 1.1 yamaguch }
4738 1.1 yamaguch }
4739 1.1 yamaguch
4740 1.1 yamaguch return 0;
4741 1.1 yamaguch }
4742 1.1 yamaguch
4743 1.1 yamaguch static int
4744 1.1 yamaguch ixl_dmamem_alloc(struct ixl_softc *sc, struct ixl_dmamem *ixm,
4745 1.1 yamaguch bus_size_t size, bus_size_t align)
4746 1.1 yamaguch {
4747 1.1 yamaguch ixm->ixm_size = size;
4748 1.1 yamaguch
4749 1.1 yamaguch if (bus_dmamap_create(sc->sc_dmat, ixm->ixm_size, 1,
4750 1.1 yamaguch ixm->ixm_size, 0,
4751 1.1 yamaguch BUS_DMA_WAITOK | BUS_DMA_ALLOCNOW,
4752 1.1 yamaguch &ixm->ixm_map) != 0)
4753 1.1 yamaguch return 1;
4754 1.1 yamaguch if (bus_dmamem_alloc(sc->sc_dmat, ixm->ixm_size,
4755 1.1 yamaguch align, 0, &ixm->ixm_seg, 1, &ixm->ixm_nsegs,
4756 1.1 yamaguch BUS_DMA_WAITOK) != 0)
4757 1.1 yamaguch goto destroy;
4758 1.1 yamaguch if (bus_dmamem_map(sc->sc_dmat, &ixm->ixm_seg, ixm->ixm_nsegs,
4759 1.1 yamaguch ixm->ixm_size, &ixm->ixm_kva, BUS_DMA_WAITOK) != 0)
4760 1.1 yamaguch goto free;
4761 1.1 yamaguch if (bus_dmamap_load(sc->sc_dmat, ixm->ixm_map, ixm->ixm_kva,
4762 1.1 yamaguch ixm->ixm_size, NULL, BUS_DMA_WAITOK) != 0)
4763 1.1 yamaguch goto unmap;
4764 1.1 yamaguch
4765 1.1 yamaguch memset(ixm->ixm_kva, 0, ixm->ixm_size);
4766 1.1 yamaguch
4767 1.1 yamaguch return 0;
4768 1.1 yamaguch unmap:
4769 1.1 yamaguch bus_dmamem_unmap(sc->sc_dmat, ixm->ixm_kva, ixm->ixm_size);
4770 1.1 yamaguch free:
4771 1.1 yamaguch bus_dmamem_free(sc->sc_dmat, &ixm->ixm_seg, 1);
4772 1.1 yamaguch destroy:
4773 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, ixm->ixm_map);
4774 1.1 yamaguch return 1;
4775 1.1 yamaguch }
4776 1.1 yamaguch
4777 1.1 yamaguch static void
4778 1.1 yamaguch ixl_dmamem_free(struct ixl_softc *sc, struct ixl_dmamem *ixm)
4779 1.1 yamaguch {
4780 1.1 yamaguch bus_dmamap_unload(sc->sc_dmat, ixm->ixm_map);
4781 1.1 yamaguch bus_dmamem_unmap(sc->sc_dmat, ixm->ixm_kva, ixm->ixm_size);
4782 1.1 yamaguch bus_dmamem_free(sc->sc_dmat, &ixm->ixm_seg, 1);
4783 1.1 yamaguch bus_dmamap_destroy(sc->sc_dmat, ixm->ixm_map);
4784 1.1 yamaguch }
4785 1.1 yamaguch
4786 1.1 yamaguch static int
4787 1.1 yamaguch ixl_set_macvlan(struct ixl_softc *sc)
4788 1.1 yamaguch {
4789 1.1 yamaguch int error, rv = 0;
4790 1.1 yamaguch
4791 1.1 yamaguch /* remove default mac filter and replace it so we can see vlans */
4792 1.1 yamaguch
4793 1.1 yamaguch error = ixl_remove_macvlan(sc, sc->sc_enaddr, 0, 0);
4794 1.7 yamaguch if (error != 0 && error != ENOENT) {
4795 1.1 yamaguch aprint_debug_dev(sc->sc_dev, "unable to remove macvlan\n");
4796 1.1 yamaguch rv = -1;
4797 1.1 yamaguch }
4798 1.1 yamaguch
4799 1.1 yamaguch error = ixl_remove_macvlan(sc, sc->sc_enaddr, 0,
4800 1.1 yamaguch IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN);
4801 1.7 yamaguch if (error != 0 && error != ENOENT) {
4802 1.1 yamaguch aprint_debug_dev(sc->sc_dev,
4803 1.1 yamaguch "unable to remove macvlan(IGNORE_VLAN)\n");
4804 1.1 yamaguch rv = -1;
4805 1.1 yamaguch }
4806 1.1 yamaguch
4807 1.1 yamaguch error = ixl_add_macvlan(sc, sc->sc_enaddr, 0,
4808 1.1 yamaguch IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN);
4809 1.7 yamaguch if (error != 0) {
4810 1.1 yamaguch aprint_debug_dev(sc->sc_dev, "unable to add mac address\n");
4811 1.1 yamaguch rv = -1;
4812 1.1 yamaguch }
4813 1.1 yamaguch
4814 1.1 yamaguch error = ixl_add_macvlan(sc, etherbroadcastaddr, 0,
4815 1.1 yamaguch IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN);
4816 1.7 yamaguch if (error != 0) {
4817 1.1 yamaguch aprint_debug_dev(sc->sc_dev,
4818 1.1 yamaguch "unable to add broadcast mac address\n");
4819 1.1 yamaguch rv = -1;
4820 1.1 yamaguch }
4821 1.1 yamaguch
4822 1.1 yamaguch return rv;
4823 1.1 yamaguch }
4824 1.1 yamaguch
4825 1.1 yamaguch static int
4826 1.1 yamaguch ixl_ifflags_cb(struct ethercom *ec)
4827 1.1 yamaguch {
4828 1.9 yamaguch struct ifnet *ifp = &ec->ec_if;
4829 1.9 yamaguch struct ixl_softc *sc = ifp->if_softc;
4830 1.9 yamaguch int rv;
4831 1.9 yamaguch
4832 1.9 yamaguch mutex_enter(&sc->sc_cfg_lock);
4833 1.9 yamaguch rv = ixl_iff(sc);
4834 1.9 yamaguch mutex_exit(&sc->sc_cfg_lock);
4835 1.1 yamaguch
4836 1.9 yamaguch return rv;
4837 1.1 yamaguch }
4838 1.1 yamaguch
4839 1.1 yamaguch static int
4840 1.1 yamaguch ixl_set_link_status(struct ixl_softc *sc, const struct ixl_aq_desc *iaq)
4841 1.1 yamaguch {
4842 1.1 yamaguch const struct ixl_aq_link_status *status;
4843 1.1 yamaguch const struct ixl_phy_type *itype;
4844 1.1 yamaguch
4845 1.1 yamaguch uint64_t ifm_active = IFM_ETHER;
4846 1.1 yamaguch uint64_t ifm_status = IFM_AVALID;
4847 1.1 yamaguch int link_state = LINK_STATE_DOWN;
4848 1.1 yamaguch uint64_t baudrate = 0;
4849 1.1 yamaguch
4850 1.1 yamaguch status = (const struct ixl_aq_link_status *)iaq->iaq_param;
4851 1.1 yamaguch if (!ISSET(status->link_info, IXL_AQ_LINK_UP_FUNCTION))
4852 1.1 yamaguch goto done;
4853 1.1 yamaguch
4854 1.1 yamaguch ifm_active |= IFM_FDX;
4855 1.1 yamaguch ifm_status |= IFM_ACTIVE;
4856 1.1 yamaguch link_state = LINK_STATE_UP;
4857 1.1 yamaguch
4858 1.1 yamaguch itype = ixl_search_phy_type(status->phy_type);
4859 1.1 yamaguch if (itype != NULL)
4860 1.1 yamaguch ifm_active |= itype->ifm_type;
4861 1.1 yamaguch
4862 1.1 yamaguch if (ISSET(status->an_info, IXL_AQ_LINK_PAUSE_TX))
4863 1.1 yamaguch ifm_active |= IFM_ETH_TXPAUSE;
4864 1.1 yamaguch if (ISSET(status->an_info, IXL_AQ_LINK_PAUSE_RX))
4865 1.1 yamaguch ifm_active |= IFM_ETH_RXPAUSE;
4866 1.1 yamaguch
4867 1.1 yamaguch baudrate = ixl_search_link_speed(status->link_speed);
4868 1.1 yamaguch
4869 1.1 yamaguch done:
4870 1.1 yamaguch /* NET_ASSERT_LOCKED() except during attach */
4871 1.1 yamaguch sc->sc_media_active = ifm_active;
4872 1.1 yamaguch sc->sc_media_status = ifm_status;
4873 1.1 yamaguch
4874 1.1 yamaguch sc->sc_ec.ec_if.if_baudrate = baudrate;
4875 1.1 yamaguch
4876 1.1 yamaguch return link_state;
4877 1.1 yamaguch }
4878 1.1 yamaguch
4879 1.1 yamaguch static int
4880 1.1 yamaguch ixl_establish_intx(struct ixl_softc *sc)
4881 1.1 yamaguch {
4882 1.1 yamaguch pci_chipset_tag_t pc = sc->sc_pa.pa_pc;
4883 1.1 yamaguch pci_intr_handle_t *intr;
4884 1.1 yamaguch char xnamebuf[32];
4885 1.1 yamaguch char intrbuf[PCI_INTRSTR_LEN];
4886 1.1 yamaguch char const *intrstr;
4887 1.1 yamaguch
4888 1.1 yamaguch KASSERT(sc->sc_nintrs == 1);
4889 1.1 yamaguch
4890 1.1 yamaguch intr = &sc->sc_ihp[0];
4891 1.1 yamaguch
4892 1.1 yamaguch intrstr = pci_intr_string(pc, *intr, intrbuf, sizeof(intrbuf));
4893 1.1 yamaguch snprintf(xnamebuf, sizeof(xnamebuf), "%s:legacy",
4894 1.1 yamaguch device_xname(sc->sc_dev));
4895 1.1 yamaguch
4896 1.1 yamaguch sc->sc_ihs[0] = pci_intr_establish_xname(pc, *intr, IPL_NET, ixl_intr,
4897 1.1 yamaguch sc, xnamebuf);
4898 1.1 yamaguch
4899 1.1 yamaguch if (sc->sc_ihs[0] == NULL) {
4900 1.1 yamaguch aprint_error_dev(sc->sc_dev,
4901 1.1 yamaguch "unable to establish interrupt at %s\n", intrstr);
4902 1.1 yamaguch return -1;
4903 1.1 yamaguch }
4904 1.1 yamaguch
4905 1.1 yamaguch aprint_normal_dev(sc->sc_dev, "interrupting at %s\n", intrstr);
4906 1.1 yamaguch return 0;
4907 1.1 yamaguch }
4908 1.1 yamaguch
4909 1.1 yamaguch static int
4910 1.1 yamaguch ixl_establish_msix(struct ixl_softc *sc)
4911 1.1 yamaguch {
4912 1.1 yamaguch pci_chipset_tag_t pc = sc->sc_pa.pa_pc;
4913 1.1 yamaguch unsigned int vector = 0;
4914 1.1 yamaguch unsigned int i;
4915 1.1 yamaguch char xnamebuf[32];
4916 1.1 yamaguch char intrbuf[PCI_INTRSTR_LEN];
4917 1.1 yamaguch char const *intrstr;
4918 1.1 yamaguch
4919 1.1 yamaguch /* the "other" intr is mapped to vector 0 */
4920 1.1 yamaguch vector = 0;
4921 1.1 yamaguch intrstr = pci_intr_string(pc, sc->sc_ihp[vector],
4922 1.1 yamaguch intrbuf, sizeof(intrbuf));
4923 1.1 yamaguch snprintf(xnamebuf, sizeof(xnamebuf), "%s others",
4924 1.1 yamaguch device_xname(sc->sc_dev));
4925 1.1 yamaguch sc->sc_ihs[vector] = pci_intr_establish_xname(pc,
4926 1.1 yamaguch sc->sc_ihp[vector], IPL_NET, ixl_other_intr,
4927 1.1 yamaguch sc, xnamebuf);
4928 1.1 yamaguch if (sc->sc_ihs[vector] == NULL) {
4929 1.1 yamaguch aprint_error_dev(sc->sc_dev,
4930 1.1 yamaguch "unable to establish interrupt at %s\n", intrstr);
4931 1.1 yamaguch goto fail;
4932 1.1 yamaguch }
4933 1.1 yamaguch vector++;
4934 1.1 yamaguch aprint_normal_dev(sc->sc_dev, "interrupt at %s\n", intrstr);
4935 1.1 yamaguch
4936 1.1 yamaguch sc->sc_msix_vector_queue = vector;
4937 1.1 yamaguch
4938 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
4939 1.1 yamaguch intrstr = pci_intr_string(pc, sc->sc_ihp[vector],
4940 1.1 yamaguch intrbuf, sizeof(intrbuf));
4941 1.1 yamaguch snprintf(xnamebuf, sizeof(xnamebuf), "%s TXRX%d",
4942 1.1 yamaguch device_xname(sc->sc_dev), i);
4943 1.1 yamaguch
4944 1.1 yamaguch sc->sc_ihs[vector] = pci_intr_establish_xname(pc,
4945 1.1 yamaguch sc->sc_ihp[vector], IPL_NET, ixl_queue_intr,
4946 1.1 yamaguch (void *)&sc->sc_qps[i], xnamebuf);
4947 1.1 yamaguch
4948 1.1 yamaguch if (sc->sc_ihs[vector] == NULL) {
4949 1.1 yamaguch aprint_error_dev(sc->sc_dev,
4950 1.1 yamaguch "unable to establish interrupt at %s\n", intrstr);
4951 1.1 yamaguch goto fail;
4952 1.1 yamaguch }
4953 1.1 yamaguch vector++;
4954 1.1 yamaguch aprint_normal_dev(sc->sc_dev,
4955 1.1 yamaguch "interrupt at %s\n", intrstr);
4956 1.1 yamaguch }
4957 1.1 yamaguch
4958 1.1 yamaguch return 0;
4959 1.1 yamaguch fail:
4960 1.1 yamaguch for (i = 0; i < vector; i++) {
4961 1.1 yamaguch pci_intr_disestablish(pc, sc->sc_ihs[i]);
4962 1.1 yamaguch }
4963 1.1 yamaguch
4964 1.1 yamaguch sc->sc_msix_vector_queue = 0;
4965 1.1 yamaguch sc->sc_msix_vector_queue = 0;
4966 1.1 yamaguch
4967 1.1 yamaguch return -1;
4968 1.1 yamaguch }
4969 1.1 yamaguch
4970 1.1 yamaguch static void
4971 1.1 yamaguch ixl_set_affinity_msix(struct ixl_softc *sc)
4972 1.1 yamaguch {
4973 1.1 yamaguch kcpuset_t *affinity;
4974 1.1 yamaguch pci_chipset_tag_t pc = sc->sc_pa.pa_pc;
4975 1.1 yamaguch int affinity_to, r;
4976 1.1 yamaguch unsigned int i, vector;
4977 1.1 yamaguch char intrbuf[PCI_INTRSTR_LEN];
4978 1.1 yamaguch char const *intrstr;
4979 1.1 yamaguch
4980 1.1 yamaguch affinity_to = 0;
4981 1.1 yamaguch kcpuset_create(&affinity, false);
4982 1.1 yamaguch
4983 1.1 yamaguch vector = sc->sc_msix_vector_queue;
4984 1.1 yamaguch
4985 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
4986 1.1 yamaguch affinity_to = i % ncpu;
4987 1.1 yamaguch
4988 1.1 yamaguch kcpuset_zero(affinity);
4989 1.1 yamaguch kcpuset_set(affinity, affinity_to);
4990 1.1 yamaguch
4991 1.1 yamaguch intrstr = pci_intr_string(pc, sc->sc_ihp[vector + i],
4992 1.1 yamaguch intrbuf, sizeof(intrbuf));
4993 1.1 yamaguch r = interrupt_distribute(sc->sc_ihs[vector + i],
4994 1.1 yamaguch affinity, NULL);
4995 1.1 yamaguch if (r == 0) {
4996 1.1 yamaguch aprint_normal_dev(sc->sc_dev,
4997 1.1 yamaguch "for TXRX%u interrupting at %s affinity to %u\n",
4998 1.1 yamaguch i, intrstr, affinity_to);
4999 1.1 yamaguch } else {
5000 1.1 yamaguch aprint_normal_dev(sc->sc_dev,
5001 1.1 yamaguch "for TXRX%u interrupting at %s\n",
5002 1.1 yamaguch i, intrstr);
5003 1.1 yamaguch }
5004 1.1 yamaguch }
5005 1.1 yamaguch
5006 1.1 yamaguch vector = 0; /* vector 0 means "other" interrupt */
5007 1.1 yamaguch affinity_to = (affinity_to + 1) % ncpu;
5008 1.1 yamaguch kcpuset_zero(affinity);
5009 1.1 yamaguch kcpuset_set(affinity, affinity_to);
5010 1.1 yamaguch
5011 1.1 yamaguch intrstr = pci_intr_string(pc, sc->sc_ihp[vector],
5012 1.1 yamaguch intrbuf, sizeof(intrbuf));
5013 1.1 yamaguch r = interrupt_distribute(sc->sc_ihs[vector], affinity, NULL);
5014 1.1 yamaguch if (r == 0) {
5015 1.1 yamaguch aprint_normal_dev(sc->sc_dev,
5016 1.1 yamaguch "for other interrupting at %s affinity to %u\n",
5017 1.1 yamaguch intrstr, affinity_to);
5018 1.1 yamaguch } else {
5019 1.1 yamaguch aprint_normal_dev(sc->sc_dev,
5020 1.1 yamaguch "for other interrupting at %s", intrstr);
5021 1.1 yamaguch }
5022 1.1 yamaguch
5023 1.1 yamaguch kcpuset_destroy(affinity);
5024 1.1 yamaguch }
5025 1.1 yamaguch
5026 1.1 yamaguch static void
5027 1.1 yamaguch ixl_config_queue_intr(struct ixl_softc *sc)
5028 1.1 yamaguch {
5029 1.1 yamaguch unsigned int i, vector;
5030 1.1 yamaguch
5031 1.1 yamaguch if (sc->sc_intrtype == PCI_INTR_TYPE_MSIX) {
5032 1.1 yamaguch vector = sc->sc_msix_vector_queue;
5033 1.1 yamaguch } else {
5034 1.1 yamaguch vector = I40E_INTR_NOTX_INTR;
5035 1.1 yamaguch
5036 1.1 yamaguch ixl_wr(sc, I40E_PFINT_LNKLST0,
5037 1.1 yamaguch (I40E_INTR_NOTX_QUEUE <<
5038 1.1 yamaguch I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT) |
5039 1.1 yamaguch (I40E_QUEUE_TYPE_RX <<
5040 1.1 yamaguch I40E_PFINT_LNKLSTN_FIRSTQ_TYPE_SHIFT));
5041 1.1 yamaguch }
5042 1.1 yamaguch
5043 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs; i++) {
5044 1.1 yamaguch ixl_wr(sc, I40E_PFINT_DYN_CTLN(i), 0);
5045 1.1 yamaguch ixl_flush(sc);
5046 1.1 yamaguch
5047 1.1 yamaguch ixl_wr(sc, I40E_PFINT_LNKLSTN(i),
5048 1.1 yamaguch ((i) << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT) |
5049 1.1 yamaguch (I40E_QUEUE_TYPE_RX <<
5050 1.1 yamaguch I40E_PFINT_LNKLSTN_FIRSTQ_TYPE_SHIFT));
5051 1.1 yamaguch
5052 1.1 yamaguch ixl_wr(sc, I40E_QINT_RQCTL(i),
5053 1.1 yamaguch (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
5054 1.1 yamaguch (I40E_ITR_INDEX_RX <<
5055 1.1 yamaguch I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
5056 1.1 yamaguch (I40E_INTR_NOTX_RX_QUEUE <<
5057 1.1 yamaguch I40E_QINT_RQCTL_MSIX0_INDX_SHIFT) |
5058 1.1 yamaguch (i << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT) |
5059 1.1 yamaguch (I40E_QUEUE_TYPE_TX <<
5060 1.1 yamaguch I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT) |
5061 1.1 yamaguch I40E_QINT_RQCTL_CAUSE_ENA_MASK);
5062 1.1 yamaguch
5063 1.1 yamaguch ixl_wr(sc, I40E_QINT_TQCTL(i),
5064 1.1 yamaguch (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
5065 1.1 yamaguch (I40E_ITR_INDEX_TX <<
5066 1.1 yamaguch I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
5067 1.1 yamaguch (I40E_INTR_NOTX_TX_QUEUE <<
5068 1.1 yamaguch I40E_QINT_TQCTL_MSIX0_INDX_SHIFT) |
5069 1.1 yamaguch (I40E_QUEUE_TYPE_EOL <<
5070 1.1 yamaguch I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT) |
5071 1.1 yamaguch (I40E_QUEUE_TYPE_RX <<
5072 1.1 yamaguch I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT) |
5073 1.1 yamaguch I40E_QINT_TQCTL_CAUSE_ENA_MASK);
5074 1.1 yamaguch
5075 1.1 yamaguch if (sc->sc_intrtype == PCI_INTR_TYPE_MSIX)
5076 1.1 yamaguch vector++;
5077 1.1 yamaguch }
5078 1.1 yamaguch ixl_flush(sc);
5079 1.1 yamaguch
5080 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ITR0(I40E_ITR_INDEX_RX), 0x7a);
5081 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ITR0(I40E_ITR_INDEX_TX), 0x7a);
5082 1.1 yamaguch ixl_flush(sc);
5083 1.1 yamaguch }
5084 1.1 yamaguch
5085 1.1 yamaguch static void
5086 1.1 yamaguch ixl_config_other_intr(struct ixl_softc *sc)
5087 1.1 yamaguch {
5088 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ICR0_ENA, 0);
5089 1.1 yamaguch (void)ixl_rd(sc, I40E_PFINT_ICR0);
5090 1.1 yamaguch
5091 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ICR0_ENA,
5092 1.1 yamaguch I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
5093 1.1 yamaguch I40E_PFINT_ICR0_ENA_GRST_MASK |
5094 1.1 yamaguch I40E_PFINT_ICR0_ENA_ADMINQ_MASK |
5095 1.1 yamaguch I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
5096 1.1 yamaguch I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
5097 1.1 yamaguch I40E_PFINT_ICR0_ENA_VFLR_MASK |
5098 1.1 yamaguch I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK |
5099 1.1 yamaguch I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
5100 1.1 yamaguch I40E_PFINT_ICR0_ENA_LINK_STAT_CHANGE_MASK);
5101 1.1 yamaguch
5102 1.1 yamaguch ixl_wr(sc, I40E_PFINT_LNKLST0, 0x7FF);
5103 1.1 yamaguch ixl_wr(sc, I40E_PFINT_ITR0(I40E_ITR_INDEX_OTHER), 0);
5104 1.1 yamaguch ixl_wr(sc, I40E_PFINT_STAT_CTL0,
5105 1.1 yamaguch (I40E_ITR_INDEX_OTHER <<
5106 1.1 yamaguch I40E_PFINT_STAT_CTL0_OTHER_ITR_INDX_SHIFT));
5107 1.1 yamaguch ixl_flush(sc);
5108 1.1 yamaguch }
5109 1.1 yamaguch
5110 1.1 yamaguch static int
5111 1.1 yamaguch ixl_setup_interrupts(struct ixl_softc *sc)
5112 1.1 yamaguch {
5113 1.1 yamaguch struct pci_attach_args *pa = &sc->sc_pa;
5114 1.1 yamaguch pci_intr_type_t max_type, intr_type;
5115 1.1 yamaguch int counts[PCI_INTR_TYPE_SIZE];
5116 1.1 yamaguch int error;
5117 1.1 yamaguch unsigned int i;
5118 1.1 yamaguch bool retry, nomsix = IXL_NOMSIX;
5119 1.1 yamaguch
5120 1.1 yamaguch memset(counts, 0, sizeof(counts));
5121 1.1 yamaguch max_type = PCI_INTR_TYPE_MSIX;
5122 1.1 yamaguch /* QPs + other interrupt */
5123 1.1 yamaguch counts[PCI_INTR_TYPE_MSIX] = sc->sc_nqueue_pairs_max + 1;
5124 1.1 yamaguch counts[PCI_INTR_TYPE_INTX] = 1;
5125 1.1 yamaguch
5126 1.1 yamaguch if (nomsix)
5127 1.1 yamaguch counts[PCI_INTR_TYPE_MSIX] = 0;
5128 1.1 yamaguch
5129 1.1 yamaguch do {
5130 1.1 yamaguch retry = false;
5131 1.1 yamaguch error = pci_intr_alloc(pa, &sc->sc_ihp, counts, max_type);
5132 1.1 yamaguch if (error != 0) {
5133 1.1 yamaguch aprint_error_dev(sc->sc_dev,
5134 1.1 yamaguch "couldn't map interrupt\n");
5135 1.1 yamaguch break;
5136 1.1 yamaguch }
5137 1.1 yamaguch for (i = 0; i < sc->sc_nintrs; i++) {
5138 1.1 yamaguch pci_intr_setattr(pa->pa_pc, &sc->sc_ihp[i],
5139 1.1 yamaguch PCI_INTR_MPSAFE, true);
5140 1.1 yamaguch }
5141 1.1 yamaguch
5142 1.1 yamaguch intr_type = pci_intr_type(pa->pa_pc, sc->sc_ihp[0]);
5143 1.1 yamaguch sc->sc_nintrs = counts[intr_type];
5144 1.1 yamaguch KASSERT(sc->sc_nintrs > 0);
5145 1.1 yamaguch
5146 1.1 yamaguch sc->sc_ihs = kmem_alloc(sizeof(sc->sc_ihs[0]) * sc->sc_nintrs,
5147 1.1 yamaguch KM_SLEEP);
5148 1.1 yamaguch
5149 1.1 yamaguch if (intr_type == PCI_INTR_TYPE_MSIX) {
5150 1.1 yamaguch error = ixl_establish_msix(sc);
5151 1.1 yamaguch if (error) {
5152 1.1 yamaguch counts[PCI_INTR_TYPE_MSIX] = 0;
5153 1.1 yamaguch retry = true;
5154 1.1 yamaguch } else {
5155 1.1 yamaguch ixl_set_affinity_msix(sc);
5156 1.1 yamaguch }
5157 1.1 yamaguch } else if (intr_type == PCI_INTR_TYPE_INTX) {
5158 1.1 yamaguch error = ixl_establish_intx(sc);
5159 1.1 yamaguch } else {
5160 1.1 yamaguch error = -1;
5161 1.1 yamaguch }
5162 1.1 yamaguch
5163 1.1 yamaguch if (error) {
5164 1.1 yamaguch kmem_free(sc->sc_ihs,
5165 1.1 yamaguch sizeof(sc->sc_ihs[0]) * sc->sc_nintrs);
5166 1.1 yamaguch pci_intr_release(pa->pa_pc, sc->sc_ihp, sc->sc_nintrs);
5167 1.1 yamaguch } else {
5168 1.1 yamaguch sc->sc_intrtype = intr_type;
5169 1.1 yamaguch }
5170 1.1 yamaguch } while (retry);
5171 1.1 yamaguch
5172 1.1 yamaguch return error;
5173 1.1 yamaguch }
5174 1.1 yamaguch
5175 1.1 yamaguch static void
5176 1.1 yamaguch ixl_teardown_interrupts(struct ixl_softc *sc)
5177 1.1 yamaguch {
5178 1.1 yamaguch struct pci_attach_args *pa = &sc->sc_pa;
5179 1.1 yamaguch unsigned int i;
5180 1.1 yamaguch
5181 1.1 yamaguch for (i = 0; i < sc->sc_nintrs; i++) {
5182 1.1 yamaguch pci_intr_disestablish(pa->pa_pc, sc->sc_ihs[i]);
5183 1.1 yamaguch }
5184 1.1 yamaguch
5185 1.1 yamaguch pci_intr_release(pa->pa_pc, sc->sc_ihp, sc->sc_nintrs);
5186 1.1 yamaguch
5187 1.1 yamaguch kmem_free(sc->sc_ihs, sizeof(sc->sc_ihs[0]) * sc->sc_nintrs);
5188 1.1 yamaguch sc->sc_ihs = NULL;
5189 1.1 yamaguch sc->sc_nintrs = 0;
5190 1.1 yamaguch }
5191 1.1 yamaguch
5192 1.1 yamaguch static int
5193 1.1 yamaguch ixl_setup_stats(struct ixl_softc *sc)
5194 1.1 yamaguch {
5195 1.1 yamaguch struct ixl_queue_pair *qp;
5196 1.1 yamaguch struct ixl_tx_ring *txr;
5197 1.1 yamaguch struct ixl_rx_ring *rxr;
5198 1.1 yamaguch unsigned int i;
5199 1.1 yamaguch
5200 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
5201 1.1 yamaguch qp = &sc->sc_qps[i];
5202 1.1 yamaguch txr = qp->qp_txr;
5203 1.1 yamaguch rxr = qp->qp_rxr;
5204 1.1 yamaguch
5205 1.1 yamaguch evcnt_attach_dynamic(&txr->txr_defragged, EVCNT_TYPE_MISC,
5206 1.1 yamaguch NULL, qp->qp_name, "m_defrag successed");
5207 1.1 yamaguch evcnt_attach_dynamic(&txr->txr_defrag_failed, EVCNT_TYPE_MISC,
5208 1.1 yamaguch NULL, qp->qp_name, "m_defrag_failed");
5209 1.1 yamaguch evcnt_attach_dynamic(&txr->txr_pcqdrop, EVCNT_TYPE_MISC,
5210 1.1 yamaguch NULL, qp->qp_name, "Dropped in pcq");
5211 1.1 yamaguch evcnt_attach_dynamic(&txr->txr_transmitdef, EVCNT_TYPE_MISC,
5212 1.1 yamaguch NULL, qp->qp_name, "Deferred transmit");
5213 1.1 yamaguch evcnt_attach_dynamic(&txr->txr_intr, EVCNT_TYPE_INTR,
5214 1.1 yamaguch NULL, qp->qp_name, "Interrupt on queue");
5215 1.1 yamaguch evcnt_attach_dynamic(&txr->txr_defer, EVCNT_TYPE_MISC,
5216 1.1 yamaguch NULL, qp->qp_name, "Handled queue in softint/workqueue");
5217 1.1 yamaguch
5218 1.1 yamaguch evcnt_attach_dynamic(&rxr->rxr_mgethdr_failed, EVCNT_TYPE_MISC,
5219 1.1 yamaguch NULL, qp->qp_name, "MGETHDR failed");
5220 1.1 yamaguch evcnt_attach_dynamic(&rxr->rxr_mgetcl_failed, EVCNT_TYPE_MISC,
5221 1.1 yamaguch NULL, qp->qp_name, "MCLGET failed");
5222 1.1 yamaguch evcnt_attach_dynamic(&rxr->rxr_mbuf_load_failed,
5223 1.1 yamaguch EVCNT_TYPE_MISC, NULL, qp->qp_name,
5224 1.1 yamaguch "bus_dmamap_load_mbuf failed");
5225 1.1 yamaguch evcnt_attach_dynamic(&rxr->rxr_intr, EVCNT_TYPE_INTR,
5226 1.1 yamaguch NULL, qp->qp_name, "Interrupt on queue");
5227 1.1 yamaguch evcnt_attach_dynamic(&rxr->rxr_defer, EVCNT_TYPE_MISC,
5228 1.1 yamaguch NULL, qp->qp_name, "Handled queue in softint/workqueue");
5229 1.1 yamaguch }
5230 1.1 yamaguch
5231 1.1 yamaguch evcnt_attach_dynamic(&sc->sc_event_atq, EVCNT_TYPE_INTR,
5232 1.1 yamaguch NULL, device_xname(sc->sc_dev), "Interrupt for other events");
5233 1.1 yamaguch evcnt_attach_dynamic(&sc->sc_event_link, EVCNT_TYPE_MISC,
5234 1.1 yamaguch NULL, device_xname(sc->sc_dev), "Link status event");
5235 1.1 yamaguch evcnt_attach_dynamic(&sc->sc_event_ecc_err, EVCNT_TYPE_MISC,
5236 1.1 yamaguch NULL, device_xname(sc->sc_dev), "ECC error");
5237 1.1 yamaguch evcnt_attach_dynamic(&sc->sc_event_pci_exception, EVCNT_TYPE_MISC,
5238 1.1 yamaguch NULL, device_xname(sc->sc_dev), "PCI exception");
5239 1.1 yamaguch evcnt_attach_dynamic(&sc->sc_event_crit_err, EVCNT_TYPE_MISC,
5240 1.1 yamaguch NULL, device_xname(sc->sc_dev), "Critical error");
5241 1.1 yamaguch
5242 1.1 yamaguch return 0;
5243 1.1 yamaguch }
5244 1.1 yamaguch
5245 1.1 yamaguch static void
5246 1.1 yamaguch ixl_teardown_stats(struct ixl_softc *sc)
5247 1.1 yamaguch {
5248 1.1 yamaguch struct ixl_tx_ring *txr;
5249 1.1 yamaguch struct ixl_rx_ring *rxr;
5250 1.1 yamaguch unsigned int i;
5251 1.1 yamaguch
5252 1.1 yamaguch for (i = 0; i < sc->sc_nqueue_pairs_max; i++) {
5253 1.1 yamaguch txr = sc->sc_qps[i].qp_txr;
5254 1.1 yamaguch rxr = sc->sc_qps[i].qp_rxr;
5255 1.1 yamaguch
5256 1.1 yamaguch evcnt_detach(&txr->txr_defragged);
5257 1.1 yamaguch evcnt_detach(&txr->txr_defrag_failed);
5258 1.1 yamaguch evcnt_detach(&txr->txr_pcqdrop);
5259 1.1 yamaguch evcnt_detach(&txr->txr_transmitdef);
5260 1.1 yamaguch evcnt_detach(&txr->txr_intr);
5261 1.1 yamaguch evcnt_detach(&txr->txr_defer);
5262 1.1 yamaguch
5263 1.1 yamaguch evcnt_detach(&rxr->rxr_mgethdr_failed);
5264 1.1 yamaguch evcnt_detach(&rxr->rxr_mgetcl_failed);
5265 1.1 yamaguch evcnt_detach(&rxr->rxr_mbuf_load_failed);
5266 1.1 yamaguch evcnt_detach(&rxr->rxr_intr);
5267 1.1 yamaguch evcnt_detach(&rxr->rxr_defer);
5268 1.1 yamaguch }
5269 1.1 yamaguch
5270 1.1 yamaguch evcnt_detach(&sc->sc_event_atq);
5271 1.1 yamaguch evcnt_detach(&sc->sc_event_link);
5272 1.1 yamaguch evcnt_detach(&sc->sc_event_ecc_err);
5273 1.1 yamaguch evcnt_detach(&sc->sc_event_pci_exception);
5274 1.1 yamaguch evcnt_detach(&sc->sc_event_crit_err);
5275 1.1 yamaguch }
5276 1.1 yamaguch
5277 1.1 yamaguch static int
5278 1.1 yamaguch ixl_setup_sysctls(struct ixl_softc *sc)
5279 1.1 yamaguch {
5280 1.1 yamaguch const char *devname;
5281 1.1 yamaguch struct sysctllog **log;
5282 1.1 yamaguch const struct sysctlnode *rnode, *rxnode, *txnode;
5283 1.1 yamaguch int error;
5284 1.1 yamaguch
5285 1.1 yamaguch log = &sc->sc_sysctllog;
5286 1.1 yamaguch devname = device_xname(sc->sc_dev);
5287 1.1 yamaguch
5288 1.1 yamaguch error = sysctl_createv(log, 0, NULL, &rnode,
5289 1.1 yamaguch 0, CTLTYPE_NODE, devname,
5290 1.1 yamaguch SYSCTL_DESCR("ixl information and settings"),
5291 1.1 yamaguch NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
5292 1.1 yamaguch if (error)
5293 1.1 yamaguch goto out;
5294 1.1 yamaguch
5295 1.1 yamaguch error = sysctl_createv(log, 0, &rnode, NULL,
5296 1.1 yamaguch CTLFLAG_READWRITE, CTLTYPE_BOOL, "txrx_workqueue",
5297 1.1 yamaguch SYSCTL_DESCR("Use workqueue for packet processing"),
5298 1.1 yamaguch NULL, 0, &sc->sc_txrx_workqueue, 0, CTL_CREATE, CTL_EOL);
5299 1.1 yamaguch if (error)
5300 1.1 yamaguch goto out;
5301 1.1 yamaguch
5302 1.1 yamaguch error = sysctl_createv(log, 0, &rnode, &rxnode,
5303 1.1 yamaguch 0, CTLTYPE_NODE, "rx",
5304 1.1 yamaguch SYSCTL_DESCR("ixl information and settings for Rx"),
5305 1.1 yamaguch NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL);
5306 1.1 yamaguch if (error)
5307 1.1 yamaguch goto out;
5308 1.1 yamaguch
5309 1.1 yamaguch error = sysctl_createv(log, 0, &rxnode, NULL,
5310 1.1 yamaguch CTLFLAG_READWRITE, CTLTYPE_INT, "intr_process_limit",
5311 1.1 yamaguch SYSCTL_DESCR("max number of Rx packets"
5312 1.1 yamaguch " to process for interrupt processing"),
5313 1.1 yamaguch NULL, 0, &sc->sc_rx_intr_process_limit, 0, CTL_CREATE, CTL_EOL);
5314 1.1 yamaguch if (error)
5315 1.1 yamaguch goto out;
5316 1.1 yamaguch
5317 1.1 yamaguch error = sysctl_createv(log, 0, &rxnode, NULL,
5318 1.1 yamaguch CTLFLAG_READWRITE, CTLTYPE_INT, "process_limit",
5319 1.1 yamaguch SYSCTL_DESCR("max number of Rx packets"
5320 1.1 yamaguch " to process for deferred processing"),
5321 1.1 yamaguch NULL, 0, &sc->sc_rx_process_limit, 0, CTL_CREATE, CTL_EOL);
5322 1.1 yamaguch if (error)
5323 1.1 yamaguch goto out;
5324 1.1 yamaguch
5325 1.1 yamaguch error = sysctl_createv(log, 0, &rnode, &txnode,
5326 1.1 yamaguch 0, CTLTYPE_NODE, "tx",
5327 1.1 yamaguch SYSCTL_DESCR("ixl information and settings for Tx"),
5328 1.1 yamaguch NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL);
5329 1.1 yamaguch if (error)
5330 1.1 yamaguch goto out;
5331 1.1 yamaguch
5332 1.1 yamaguch error = sysctl_createv(log, 0, &txnode, NULL,
5333 1.1 yamaguch CTLFLAG_READWRITE, CTLTYPE_INT, "intr_process_limit",
5334 1.1 yamaguch SYSCTL_DESCR("max number of Tx packets"
5335 1.1 yamaguch " to process for interrupt processing"),
5336 1.1 yamaguch NULL, 0, &sc->sc_tx_intr_process_limit, 0, CTL_CREATE, CTL_EOL);
5337 1.1 yamaguch if (error)
5338 1.1 yamaguch goto out;
5339 1.1 yamaguch
5340 1.1 yamaguch error = sysctl_createv(log, 0, &txnode, NULL,
5341 1.1 yamaguch CTLFLAG_READWRITE, CTLTYPE_INT, "process_limit",
5342 1.1 yamaguch SYSCTL_DESCR("max number of Tx packets"
5343 1.1 yamaguch " to process for deferred processing"),
5344 1.1 yamaguch NULL, 0, &sc->sc_tx_process_limit, 0, CTL_CREATE, CTL_EOL);
5345 1.1 yamaguch if (error)
5346 1.1 yamaguch goto out;
5347 1.1 yamaguch
5348 1.1 yamaguch out:
5349 1.1 yamaguch if (error) {
5350 1.1 yamaguch aprint_error_dev(sc->sc_dev,
5351 1.1 yamaguch "unable to create sysctl node\n");
5352 1.1 yamaguch sysctl_teardown(log);
5353 1.1 yamaguch }
5354 1.1 yamaguch
5355 1.1 yamaguch return error;
5356 1.1 yamaguch }
5357 1.1 yamaguch
5358 1.1 yamaguch static void
5359 1.1 yamaguch ixl_teardown_sysctls(struct ixl_softc *sc)
5360 1.1 yamaguch {
5361 1.1 yamaguch
5362 1.1 yamaguch sysctl_teardown(&sc->sc_sysctllog);
5363 1.1 yamaguch }
5364 1.1 yamaguch
5365 1.1 yamaguch static struct workqueue *
5366 1.1 yamaguch ixl_workq_create(const char *name, pri_t prio, int ipl, int flags)
5367 1.1 yamaguch {
5368 1.1 yamaguch struct workqueue *wq;
5369 1.1 yamaguch int error;
5370 1.1 yamaguch
5371 1.1 yamaguch error = workqueue_create(&wq, name, ixl_workq_work, NULL,
5372 1.1 yamaguch prio, ipl, flags);
5373 1.1 yamaguch
5374 1.1 yamaguch if (error)
5375 1.1 yamaguch return NULL;
5376 1.1 yamaguch
5377 1.1 yamaguch return wq;
5378 1.1 yamaguch }
5379 1.1 yamaguch
5380 1.1 yamaguch static void
5381 1.1 yamaguch ixl_workq_destroy(struct workqueue *wq)
5382 1.1 yamaguch {
5383 1.1 yamaguch
5384 1.1 yamaguch workqueue_destroy(wq);
5385 1.1 yamaguch }
5386 1.1 yamaguch
5387 1.1 yamaguch static void
5388 1.1 yamaguch ixl_work_set(struct ixl_work *work, void (*func)(void *), void *arg)
5389 1.1 yamaguch {
5390 1.1 yamaguch
5391 1.1 yamaguch memset(work, 0, sizeof(*work));
5392 1.1 yamaguch work->ixw_func = func;
5393 1.1 yamaguch work->ixw_arg = arg;
5394 1.1 yamaguch }
5395 1.1 yamaguch
5396 1.1 yamaguch static void
5397 1.1 yamaguch ixl_work_add(struct workqueue *wq, struct ixl_work *work)
5398 1.1 yamaguch {
5399 1.1 yamaguch if (atomic_cas_uint(&work->ixw_added, 0, 1) != 0)
5400 1.1 yamaguch return;
5401 1.1 yamaguch
5402 1.1 yamaguch workqueue_enqueue(wq, &work->ixw_cookie, NULL);
5403 1.1 yamaguch }
5404 1.1 yamaguch
5405 1.1 yamaguch static void
5406 1.1 yamaguch ixl_work_wait(struct workqueue *wq, struct ixl_work *work)
5407 1.1 yamaguch {
5408 1.1 yamaguch
5409 1.1 yamaguch workqueue_wait(wq, &work->ixw_cookie);
5410 1.1 yamaguch }
5411 1.1 yamaguch
5412 1.1 yamaguch static void
5413 1.1 yamaguch ixl_workq_work(struct work *wk, void *context)
5414 1.1 yamaguch {
5415 1.1 yamaguch struct ixl_work *work;
5416 1.1 yamaguch
5417 1.1 yamaguch work = container_of(wk, struct ixl_work, ixw_cookie);
5418 1.1 yamaguch
5419 1.1 yamaguch atomic_swap_uint(&work->ixw_added, 0);
5420 1.1 yamaguch kpreempt_disable();
5421 1.1 yamaguch work->ixw_func(work->ixw_arg);
5422 1.1 yamaguch kpreempt_enable();
5423 1.1 yamaguch }
5424 1.1 yamaguch
5425 1.1 yamaguch static int
5426 1.1 yamaguch ixl_rx_ctl_read(struct ixl_softc *sc, uint32_t reg, uint32_t *rv)
5427 1.1 yamaguch {
5428 1.1 yamaguch struct ixl_aq_desc iaq;
5429 1.1 yamaguch
5430 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
5431 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_RX_CTL_REG_READ);
5432 1.1 yamaguch iaq.iaq_param[1] = htole32(reg);
5433 1.1 yamaguch
5434 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0)
5435 1.1 yamaguch return ETIMEDOUT;
5436 1.1 yamaguch
5437 1.1 yamaguch switch (htole16(iaq.iaq_retval)) {
5438 1.1 yamaguch case IXL_AQ_RC_OK:
5439 1.1 yamaguch /* success */
5440 1.1 yamaguch break;
5441 1.1 yamaguch case IXL_AQ_RC_EACCES:
5442 1.1 yamaguch return EPERM;
5443 1.1 yamaguch case IXL_AQ_RC_EAGAIN:
5444 1.1 yamaguch return EAGAIN;
5445 1.1 yamaguch default:
5446 1.1 yamaguch return EIO;
5447 1.1 yamaguch }
5448 1.1 yamaguch
5449 1.1 yamaguch *rv = htole32(iaq.iaq_param[3]);
5450 1.1 yamaguch return 0;
5451 1.1 yamaguch }
5452 1.1 yamaguch
5453 1.1 yamaguch
5454 1.1 yamaguch
5455 1.1 yamaguch static uint32_t
5456 1.1 yamaguch ixl_rd_rx_csr(struct ixl_softc *sc, uint32_t reg)
5457 1.1 yamaguch {
5458 1.1 yamaguch uint32_t val;
5459 1.1 yamaguch int rv, retry, retry_limit;
5460 1.1 yamaguch
5461 1.1 yamaguch retry_limit = sc->sc_rxctl_atq ? 5 : 0;
5462 1.1 yamaguch
5463 1.1 yamaguch for (retry = 0; retry < retry_limit; retry++) {
5464 1.1 yamaguch rv = ixl_rx_ctl_read(sc, reg, &val);
5465 1.1 yamaguch if (rv == 0)
5466 1.1 yamaguch return val;
5467 1.1 yamaguch else if (rv == EAGAIN)
5468 1.1 yamaguch delaymsec(1);
5469 1.1 yamaguch else
5470 1.1 yamaguch break;
5471 1.1 yamaguch }
5472 1.1 yamaguch
5473 1.1 yamaguch val = ixl_rd(sc, reg);
5474 1.1 yamaguch
5475 1.1 yamaguch return val;
5476 1.1 yamaguch }
5477 1.1 yamaguch
5478 1.1 yamaguch static int
5479 1.1 yamaguch ixl_rx_ctl_write(struct ixl_softc *sc, uint32_t reg, uint32_t value)
5480 1.1 yamaguch {
5481 1.1 yamaguch struct ixl_aq_desc iaq;
5482 1.1 yamaguch
5483 1.1 yamaguch memset(&iaq, 0, sizeof(iaq));
5484 1.1 yamaguch iaq.iaq_opcode = htole16(IXL_AQ_OP_RX_CTL_REG_WRITE);
5485 1.1 yamaguch iaq.iaq_param[1] = htole32(reg);
5486 1.1 yamaguch iaq.iaq_param[3] = htole32(value);
5487 1.1 yamaguch
5488 1.1 yamaguch if (ixl_atq_poll(sc, &iaq, 250) != 0)
5489 1.1 yamaguch return ETIMEDOUT;
5490 1.1 yamaguch
5491 1.1 yamaguch switch (htole16(iaq.iaq_retval)) {
5492 1.1 yamaguch case IXL_AQ_RC_OK:
5493 1.1 yamaguch /* success */
5494 1.1 yamaguch break;
5495 1.1 yamaguch case IXL_AQ_RC_EACCES:
5496 1.1 yamaguch return EPERM;
5497 1.1 yamaguch case IXL_AQ_RC_EAGAIN:
5498 1.1 yamaguch return EAGAIN;
5499 1.1 yamaguch default:
5500 1.1 yamaguch return EIO;
5501 1.1 yamaguch }
5502 1.1 yamaguch
5503 1.1 yamaguch return 0;
5504 1.1 yamaguch }
5505 1.1 yamaguch
5506 1.1 yamaguch static void
5507 1.1 yamaguch ixl_wr_rx_csr(struct ixl_softc *sc, uint32_t reg, uint32_t value)
5508 1.1 yamaguch {
5509 1.1 yamaguch int rv, retry, retry_limit;
5510 1.1 yamaguch
5511 1.1 yamaguch retry_limit = sc->sc_rxctl_atq ? 5 : 0;
5512 1.1 yamaguch
5513 1.1 yamaguch for (retry = 0; retry < retry_limit; retry++) {
5514 1.1 yamaguch rv = ixl_rx_ctl_write(sc, reg, value);
5515 1.1 yamaguch if (rv == 0)
5516 1.1 yamaguch return;
5517 1.1 yamaguch else if (rv == EAGAIN)
5518 1.1 yamaguch delaymsec(1);
5519 1.1 yamaguch else
5520 1.1 yamaguch break;
5521 1.1 yamaguch }
5522 1.1 yamaguch
5523 1.1 yamaguch ixl_wr(sc, reg, value);
5524 1.1 yamaguch }
5525 1.1 yamaguch
5526 1.1 yamaguch MODULE(MODULE_CLASS_DRIVER, if_ixl, "pci");
5527 1.1 yamaguch
5528 1.1 yamaguch #ifdef _MODULE
5529 1.1 yamaguch #include "ioconf.c"
5530 1.1 yamaguch #endif
5531 1.1 yamaguch
5532 1.1 yamaguch static int
5533 1.1 yamaguch if_ixl_modcmd(modcmd_t cmd, void *opaque)
5534 1.1 yamaguch {
5535 1.1 yamaguch int error = 0;
5536 1.1 yamaguch
5537 1.1 yamaguch #ifdef _MODULE
5538 1.1 yamaguch switch (cmd) {
5539 1.1 yamaguch case MODULE_CMD_INIT:
5540 1.1 yamaguch error = config_init_component(cfdriver_ioconf_if_ixl,
5541 1.1 yamaguch cfattach_ioconf_if_ixl, cfdata_ioconf_if_ixl);
5542 1.1 yamaguch break;
5543 1.1 yamaguch case MODULE_CMD_FINI:
5544 1.1 yamaguch error = config_fini_component(cfdriver_ioconf_if_ixl,
5545 1.1 yamaguch cfattach_ioconf_if_ixl, cfdata_ioconf_if_ixl);
5546 1.1 yamaguch break;
5547 1.1 yamaguch default:
5548 1.1 yamaguch error = ENOTTY;
5549 1.1 yamaguch break;
5550 1.1 yamaguch }
5551 1.1 yamaguch #endif
5552 1.1 yamaguch
5553 1.1 yamaguch return error;
5554 1.1 yamaguch }
5555