net/sfc/base: move privilege config to ef10 NIC board config
[dpdk.git] / drivers / net / sfc / base / hunt_nic.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2012-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  */
6
7 #include "efx.h"
8 #include "efx_impl.h"
9 #if EFSYS_OPT_MON_MCDI
10 #include "mcdi_mon.h"
11 #endif
12
13 #if EFSYS_OPT_HUNTINGTON
14
15 #include "ef10_tlv_layout.h"
16
17 static  __checkReturn   efx_rc_t
18 hunt_nic_get_required_pcie_bandwidth(
19         __in            efx_nic_t *enp,
20         __out           uint32_t *bandwidth_mbpsp)
21 {
22         uint32_t port_modes;
23         uint32_t max_port_mode;
24         uint32_t bandwidth;
25         efx_rc_t rc;
26
27         /*
28          * On Huntington, the firmware may not give us the current port mode, so
29          * we need to go by the set of available port modes and assume the most
30          * capable mode is in use.
31          */
32
33         if ((rc = efx_mcdi_get_port_modes(enp, &port_modes, NULL)) != 0) {
34                 /* No port mode info available */
35                 bandwidth = 0;
36                 goto out;
37         }
38
39         if (port_modes & (1 << TLV_PORT_MODE_40G_40G)) {
40                 /*
41                  * This needs the full PCIe bandwidth (and could use
42                  * more) - roughly 64 Gbit/s for 8 lanes of Gen3.
43                  */
44                 if ((rc = efx_nic_calculate_pcie_link_bandwidth(8,
45                             EFX_PCIE_LINK_SPEED_GEN3, &bandwidth)) != 0)
46                         goto fail1;
47         } else {
48                 if (port_modes & (1 << TLV_PORT_MODE_40G)) {
49                         max_port_mode = TLV_PORT_MODE_40G;
50                 } else if (port_modes & (1 << TLV_PORT_MODE_10G_10G_10G_10G)) {
51                         max_port_mode = TLV_PORT_MODE_10G_10G_10G_10G;
52                 } else {
53                         /* Assume two 10G ports */
54                         max_port_mode = TLV_PORT_MODE_10G_10G;
55                 }
56
57                 if ((rc = ef10_nic_get_port_mode_bandwidth(max_port_mode,
58                                                             &bandwidth)) != 0)
59                         goto fail2;
60         }
61
62 out:
63         *bandwidth_mbpsp = bandwidth;
64
65         return (0);
66
67 fail2:
68         EFSYS_PROBE(fail2);
69 fail1:
70         EFSYS_PROBE1(fail1, efx_rc_t, rc);
71
72         return (rc);
73 }
74
75         __checkReturn   efx_rc_t
76 hunt_board_cfg(
77         __in            efx_nic_t *enp)
78 {
79         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
80         efx_port_t *epp = &(enp->en_port);
81         uint32_t flags;
82         uint32_t sysclk, dpcpu_clk;
83         uint32_t bandwidth;
84         efx_rc_t rc;
85
86         /* Huntington has a fixed 8Kbyte VI window size */
87         EFX_STATIC_ASSERT(ER_DZ_EVQ_RPTR_REG_STEP       == 8192);
88         EFX_STATIC_ASSERT(ER_DZ_EVQ_TMR_REG_STEP        == 8192);
89         EFX_STATIC_ASSERT(ER_DZ_RX_DESC_UPD_REG_STEP    == 8192);
90         EFX_STATIC_ASSERT(ER_DZ_TX_DESC_UPD_REG_STEP    == 8192);
91         EFX_STATIC_ASSERT(ER_DZ_TX_PIOBUF_STEP          == 8192);
92
93         EFX_STATIC_ASSERT(1U << EFX_VI_WINDOW_SHIFT_8K  == 8192);
94         encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_8K;
95
96         /*
97          * Enable firmware workarounds for hardware errata.
98          * Expected responses are:
99          *  - 0 (zero):
100          *      Success: workaround enabled or disabled as requested.
101          *  - MC_CMD_ERR_ENOSYS (reported as ENOTSUP):
102          *      Firmware does not support the MC_CMD_WORKAROUND request.
103          *      (assume that the workaround is not supported).
104          *  - MC_CMD_ERR_ENOENT (reported as ENOENT):
105          *      Firmware does not support the requested workaround.
106          *  - MC_CMD_ERR_EPERM  (reported as EACCES):
107          *      Unprivileged function cannot enable/disable workarounds.
108          *
109          * See efx_mcdi_request_errcode() for MCDI error translations.
110          */
111
112         /*
113          * If the bug35388 workaround is enabled, then use an indirect access
114          * method to avoid unsafe EVQ writes.
115          */
116         rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG35388, B_TRUE,
117             NULL);
118         if ((rc == 0) || (rc == EACCES))
119                 encp->enc_bug35388_workaround = B_TRUE;
120         else if ((rc == ENOTSUP) || (rc == ENOENT))
121                 encp->enc_bug35388_workaround = B_FALSE;
122         else
123                 goto fail1;
124
125         /*
126          * If the bug41750 workaround is enabled, then do not test interrupts,
127          * as the test will fail (seen with Greenport controllers).
128          */
129         rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG41750, B_TRUE,
130             NULL);
131         if (rc == 0) {
132                 encp->enc_bug41750_workaround = B_TRUE;
133         } else if (rc == EACCES) {
134                 /* Assume a controller with 40G ports needs the workaround. */
135                 if (epp->ep_default_adv_cap_mask & EFX_PHY_CAP_40000FDX)
136                         encp->enc_bug41750_workaround = B_TRUE;
137                 else
138                         encp->enc_bug41750_workaround = B_FALSE;
139         } else if ((rc == ENOTSUP) || (rc == ENOENT)) {
140                 encp->enc_bug41750_workaround = B_FALSE;
141         } else {
142                 goto fail2;
143         }
144         if (EFX_PCI_FUNCTION_IS_VF(encp)) {
145                 /* Interrupt testing does not work for VFs. See bug50084. */
146                 encp->enc_bug41750_workaround = B_TRUE;
147         }
148
149         /*
150          * If the bug26807 workaround is enabled, then firmware has enabled
151          * support for chained multicast filters. Firmware will reset (FLR)
152          * functions which have filters in the hardware filter table when the
153          * workaround is enabled/disabled.
154          *
155          * We must recheck if the workaround is enabled after inserting the
156          * first hardware filter, in case it has been changed since this check.
157          */
158         rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG26807,
159             B_TRUE, &flags);
160         if (rc == 0) {
161                 encp->enc_bug26807_workaround = B_TRUE;
162                 if (flags & (1 << MC_CMD_WORKAROUND_EXT_OUT_FLR_DONE_LBN)) {
163                         /*
164                          * Other functions had installed filters before the
165                          * workaround was enabled, and they have been reset
166                          * by firmware.
167                          */
168                         EFSYS_PROBE(bug26807_workaround_flr_done);
169                         /* FIXME: bump MC warm boot count ? */
170                 }
171         } else if (rc == EACCES) {
172                 /*
173                  * Unprivileged functions cannot enable the workaround in older
174                  * firmware.
175                  */
176                 encp->enc_bug26807_workaround = B_FALSE;
177         } else if ((rc == ENOTSUP) || (rc == ENOENT)) {
178                 encp->enc_bug26807_workaround = B_FALSE;
179         } else {
180                 goto fail3;
181         }
182
183         /* Get clock frequencies (in MHz). */
184         if ((rc = efx_mcdi_get_clock(enp, &sysclk, &dpcpu_clk)) != 0)
185                 goto fail4;
186
187         /*
188          * The Huntington timer quantum is 1536 sysclk cycles, documented for
189          * the EV_TMR_VAL field of EV_TIMER_TBL. Scale for MHz and ns units.
190          */
191         encp->enc_evq_timer_quantum_ns = 1536000UL / sysclk; /* 1536 cycles */
192         if (encp->enc_bug35388_workaround) {
193                 encp->enc_evq_timer_max_us = (encp->enc_evq_timer_quantum_ns <<
194                 ERF_DD_EVQ_IND_TIMER_VAL_WIDTH) / 1000;
195         } else {
196                 encp->enc_evq_timer_max_us = (encp->enc_evq_timer_quantum_ns <<
197                 FRF_CZ_TC_TIMER_VAL_WIDTH) / 1000;
198         }
199
200         encp->enc_bug61265_workaround = B_FALSE; /* Medford only */
201
202         /* Alignment for receive packet DMA buffers */
203         encp->enc_rx_buf_align_start = 1;
204         encp->enc_rx_buf_align_end = 64; /* RX DMA end padding */
205
206         /*
207          * The workaround for bug35388 uses the top bit of transmit queue
208          * descriptor writes, preventing the use of 4096 descriptor TXQs.
209          */
210         encp->enc_txq_max_ndescs = encp->enc_bug35388_workaround ? 2048 : 4096;
211
212         EFX_STATIC_ASSERT(HUNT_PIOBUF_NBUFS <= EF10_MAX_PIOBUF_NBUFS);
213         encp->enc_piobuf_limit = HUNT_PIOBUF_NBUFS;
214         encp->enc_piobuf_size = HUNT_PIOBUF_SIZE;
215         encp->enc_piobuf_min_alloc_size = HUNT_MIN_PIO_ALLOC_SIZE;
216
217         if ((rc = hunt_nic_get_required_pcie_bandwidth(enp, &bandwidth)) != 0)
218                 goto fail5;
219         encp->enc_required_pcie_bandwidth_mbps = bandwidth;
220
221         /* All Huntington devices have a PCIe Gen3, 8 lane connector */
222         encp->enc_max_pcie_link_gen = EFX_PCIE_LINK_SPEED_GEN3;
223
224         return (0);
225
226 fail5:
227         EFSYS_PROBE(fail5);
228 fail4:
229         EFSYS_PROBE(fail4);
230 fail3:
231         EFSYS_PROBE(fail3);
232 fail2:
233         EFSYS_PROBE(fail2);
234 fail1:
235         EFSYS_PROBE1(fail1, efx_rc_t, rc);
236
237         return (rc);
238 }
239
240
241 #endif  /* EFSYS_OPT_HUNTINGTON */