net/sfc/base: move RxDP config get to EF10 NIC code
[dpdk.git] / drivers / net / sfc / base / medford_nic.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2015-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  */
6
7 #include "efx.h"
8 #include "efx_impl.h"
9
10
11 #if EFSYS_OPT_MEDFORD
12
13 static  __checkReturn   efx_rc_t
14 medford_nic_get_required_pcie_bandwidth(
15         __in            efx_nic_t *enp,
16         __out           uint32_t *bandwidth_mbpsp)
17 {
18         uint32_t port_modes;
19         uint32_t current_mode;
20         uint32_t bandwidth;
21         efx_rc_t rc;
22
23         if ((rc = efx_mcdi_get_port_modes(enp, &port_modes,
24                                     &current_mode)) != 0) {
25                 /* No port mode info available. */
26                 bandwidth = 0;
27                 goto out;
28         }
29
30         if ((rc = ef10_nic_get_port_mode_bandwidth(current_mode,
31                                                     &bandwidth)) != 0)
32                 goto fail1;
33
34 out:
35         *bandwidth_mbpsp = bandwidth;
36
37         return (0);
38
39 fail1:
40         EFSYS_PROBE1(fail1, efx_rc_t, rc);
41
42         return (rc);
43 }
44
45         __checkReturn   efx_rc_t
46 medford_board_cfg(
47         __in            efx_nic_t *enp)
48 {
49         efx_mcdi_iface_t *emip = &(enp->en_mcdi.em_emip);
50         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
51         uint8_t mac_addr[6] = { 0 };
52         uint32_t board_type = 0;
53         ef10_link_state_t els;
54         efx_port_t *epp = &(enp->en_port);
55         uint32_t port;
56         uint32_t pf;
57         uint32_t vf;
58         uint32_t mask;
59         uint32_t sysclk, dpcpu_clk;
60         uint32_t base, nvec;
61         uint32_t end_padding;
62         uint32_t bandwidth;
63         efx_rc_t rc;
64
65         /*
66          * FIXME: Likely to be incomplete and incorrect.
67          * Parts of this should be shared with Huntington.
68          */
69
70         if ((rc = efx_mcdi_get_port_assignment(enp, &port)) != 0)
71                 goto fail1;
72
73         /*
74          * NOTE: The MCDI protocol numbers ports from zero.
75          * The common code MCDI interface numbers ports from one.
76          */
77         emip->emi_port = port + 1;
78
79         if ((rc = ef10_external_port_mapping(enp, port,
80                     &encp->enc_external_port)) != 0)
81                 goto fail2;
82
83         /*
84          * Get PCIe function number from firmware (used for
85          * per-function privilege and dynamic config info).
86          *  - PCIe PF: pf = PF number, vf = 0xffff.
87          *  - PCIe VF: pf = parent PF, vf = VF number.
88          */
89         if ((rc = efx_mcdi_get_function_info(enp, &pf, &vf)) != 0)
90                 goto fail3;
91
92         encp->enc_pf = pf;
93         encp->enc_vf = vf;
94
95         /* MAC address for this function */
96         if (EFX_PCI_FUNCTION_IS_PF(encp)) {
97                 rc = efx_mcdi_get_mac_address_pf(enp, mac_addr);
98 #if EFSYS_OPT_ALLOW_UNCONFIGURED_NIC
99                 /*
100                  * Disable static config checking for Medford NICs, ONLY
101                  * for manufacturing test and setup at the factory, to
102                  * allow the static config to be installed.
103                  */
104 #else /* EFSYS_OPT_ALLOW_UNCONFIGURED_NIC */
105                 if ((rc == 0) && (mac_addr[0] & 0x02)) {
106                         /*
107                          * If the static config does not include a global MAC
108                          * address pool then the board may return a locally
109                          * administered MAC address (this should only happen on
110                          * incorrectly programmed boards).
111                          */
112                         rc = EINVAL;
113                 }
114 #endif /* EFSYS_OPT_ALLOW_UNCONFIGURED_NIC */
115         } else {
116                 rc = efx_mcdi_get_mac_address_vf(enp, mac_addr);
117         }
118         if (rc != 0)
119                 goto fail4;
120
121         EFX_MAC_ADDR_COPY(encp->enc_mac_addr, mac_addr);
122
123         /* Board configuration */
124         rc = efx_mcdi_get_board_cfg(enp, &board_type, NULL, NULL);
125         if (rc != 0) {
126                 /* Unprivileged functions may not be able to read board cfg */
127                 if (rc == EACCES)
128                         board_type = 0;
129                 else
130                         goto fail5;
131         }
132
133         encp->enc_board_type = board_type;
134         encp->enc_clk_mult = 1; /* not used for Medford */
135
136         /* Fill out fields in enp->en_port and enp->en_nic_cfg from MCDI */
137         if ((rc = efx_mcdi_get_phy_cfg(enp)) != 0)
138                 goto fail6;
139
140         /* Obtain the default PHY advertised capabilities */
141         if ((rc = ef10_phy_get_link(enp, &els)) != 0)
142                 goto fail7;
143         epp->ep_default_adv_cap_mask = els.els_adv_cap_mask;
144         epp->ep_adv_cap_mask = els.els_adv_cap_mask;
145
146         /*
147          * Enable firmware workarounds for hardware errata.
148          * Expected responses are:
149          *  - 0 (zero):
150          *      Success: workaround enabled or disabled as requested.
151          *  - MC_CMD_ERR_ENOSYS (reported as ENOTSUP):
152          *      Firmware does not support the MC_CMD_WORKAROUND request.
153          *      (assume that the workaround is not supported).
154          *  - MC_CMD_ERR_ENOENT (reported as ENOENT):
155          *      Firmware does not support the requested workaround.
156          *  - MC_CMD_ERR_EPERM  (reported as EACCES):
157          *      Unprivileged function cannot enable/disable workarounds.
158          *
159          * See efx_mcdi_request_errcode() for MCDI error translations.
160          */
161
162
163         if (EFX_PCI_FUNCTION_IS_VF(encp)) {
164                 /*
165                  * Interrupt testing does not work for VFs. See bug50084.
166                  * FIXME: Does this still  apply to Medford?
167                  */
168                 encp->enc_bug41750_workaround = B_TRUE;
169         }
170
171         /* Chained multicast is always enabled on Medford */
172         encp->enc_bug26807_workaround = B_TRUE;
173
174         /*
175          * If the bug61265 workaround is enabled, then interrupt holdoff timers
176          * cannot be controlled by timer table writes, so MCDI must be used
177          * (timer table writes can still be used for wakeup timers).
178          */
179         rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG61265, B_TRUE,
180             NULL);
181         if ((rc == 0) || (rc == EACCES))
182                 encp->enc_bug61265_workaround = B_TRUE;
183         else if ((rc == ENOTSUP) || (rc == ENOENT))
184                 encp->enc_bug61265_workaround = B_FALSE;
185         else
186                 goto fail8;
187
188         /* Get clock frequencies (in MHz). */
189         if ((rc = efx_mcdi_get_clock(enp, &sysclk, &dpcpu_clk)) != 0)
190                 goto fail9;
191
192         /*
193          * The Medford timer quantum is 1536 dpcpu_clk cycles, documented for
194          * the EV_TMR_VAL field of EV_TIMER_TBL. Scale for MHz and ns units.
195          */
196         encp->enc_evq_timer_quantum_ns = 1536000UL / dpcpu_clk; /* 1536 cycles */
197         encp->enc_evq_timer_max_us = (encp->enc_evq_timer_quantum_ns <<
198                     FRF_CZ_TC_TIMER_VAL_WIDTH) / 1000;
199
200         /* Check capabilities of running datapath firmware */
201         if ((rc = ef10_get_datapath_caps(enp)) != 0)
202                 goto fail10;
203
204         /* Alignment for receive packet DMA buffers */
205         encp->enc_rx_buf_align_start = 1;
206
207         /* Get the RX DMA end padding alignment configuration */
208         if ((rc = efx_mcdi_get_rxdp_config(enp, &end_padding)) != 0) {
209                 if (rc != EACCES)
210                         goto fail11;
211
212                 /* Assume largest tail padding size supported by hardware */
213                 end_padding = 256;
214         }
215         encp->enc_rx_buf_align_end = end_padding;
216
217         /* Alignment for WPTR updates */
218         encp->enc_rx_push_align = EF10_RX_WPTR_ALIGN;
219
220         /*
221          * Maximum number of exclusive RSS contexts which can be allocated. The
222          * hardware supports 64, but 6 are reserved for shared contexts. They
223          * are a global resource so not all may be available.
224          */
225         encp->enc_rx_scale_max_exclusive_contexts = 58;
226
227         encp->enc_tx_dma_desc_size_max = EFX_MASK32(ESF_DZ_RX_KER_BYTE_CNT);
228         /* No boundary crossing limits */
229         encp->enc_tx_dma_desc_boundary = 0;
230
231         /*
232          * Set resource limits for MC_CMD_ALLOC_VIS. Note that we cannot use
233          * MC_CMD_GET_RESOURCE_LIMITS here as that reports the available
234          * resources (allocated to this PCIe function), which is zero until
235          * after we have allocated VIs.
236          */
237         encp->enc_evq_limit = 1024;
238         encp->enc_rxq_limit = EFX_RXQ_LIMIT_TARGET;
239         encp->enc_txq_limit = EFX_TXQ_LIMIT_TARGET;
240
241         /*
242          * The maximum supported transmit queue size is 2048. TXQs with 4096
243          * descriptors are not supported as the top bit is used for vfifo
244          * stuffing.
245          */
246         encp->enc_txq_max_ndescs = 2048;
247
248         encp->enc_buftbl_limit = 0xFFFFFFFF;
249
250         EFX_STATIC_ASSERT(MEDFORD_PIOBUF_NBUFS <= EF10_MAX_PIOBUF_NBUFS);
251         encp->enc_piobuf_limit = MEDFORD_PIOBUF_NBUFS;
252         encp->enc_piobuf_size = MEDFORD_PIOBUF_SIZE;
253         encp->enc_piobuf_min_alloc_size = MEDFORD_MIN_PIO_ALLOC_SIZE;
254
255         /*
256          * Get the current privilege mask. Note that this may be modified
257          * dynamically, so this value is informational only. DO NOT use
258          * the privilege mask to check for sufficient privileges, as that
259          * can result in time-of-check/time-of-use bugs.
260          */
261         if ((rc = ef10_get_privilege_mask(enp, &mask)) != 0)
262                 goto fail12;
263         encp->enc_privilege_mask = mask;
264
265         /* Get interrupt vector limits */
266         if ((rc = efx_mcdi_get_vector_cfg(enp, &base, &nvec, NULL)) != 0) {
267                 if (EFX_PCI_FUNCTION_IS_PF(encp))
268                         goto fail13;
269
270                 /* Ignore error (cannot query vector limits from a VF). */
271                 base = 0;
272                 nvec = 1024;
273         }
274         encp->enc_intr_vec_base = base;
275         encp->enc_intr_limit = nvec;
276
277         /*
278          * Maximum number of bytes into the frame the TCP header can start for
279          * firmware assisted TSO to work.
280          */
281         encp->enc_tx_tso_tcp_header_offset_limit = EF10_TCP_HEADER_OFFSET_LIMIT;
282
283         /*
284          * Medford stores a single global copy of VPD, not per-PF as on
285          * Huntington.
286          */
287         encp->enc_vpd_is_global = B_TRUE;
288
289         rc = medford_nic_get_required_pcie_bandwidth(enp, &bandwidth);
290         if (rc != 0)
291                 goto fail14;
292         encp->enc_required_pcie_bandwidth_mbps = bandwidth;
293         encp->enc_max_pcie_link_gen = EFX_PCIE_LINK_SPEED_GEN3;
294
295         return (0);
296
297 fail14:
298         EFSYS_PROBE(fail14);
299 fail13:
300         EFSYS_PROBE(fail13);
301 fail12:
302         EFSYS_PROBE(fail12);
303 fail11:
304         EFSYS_PROBE(fail11);
305 fail10:
306         EFSYS_PROBE(fail10);
307 fail9:
308         EFSYS_PROBE(fail9);
309 fail8:
310         EFSYS_PROBE(fail8);
311 fail7:
312         EFSYS_PROBE(fail7);
313 fail6:
314         EFSYS_PROBE(fail6);
315 fail5:
316         EFSYS_PROBE(fail5);
317 fail4:
318         EFSYS_PROBE(fail4);
319 fail3:
320         EFSYS_PROBE(fail3);
321 fail2:
322         EFSYS_PROBE(fail2);
323 fail1:
324         EFSYS_PROBE1(fail1, efx_rc_t, rc);
325
326         return (rc);
327 }
328
329 #endif  /* EFSYS_OPT_MEDFORD */