net/sfc/base: move privilege config to ef10 NIC board config
[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_nic_cfg_t *encp = &(enp->en_nic_cfg);
50         uint32_t sysclk, dpcpu_clk;
51         uint32_t end_padding;
52         uint32_t bandwidth;
53         efx_rc_t rc;
54
55         /*
56          * FIXME: Likely to be incomplete and incorrect.
57          * Parts of this should be shared with Huntington.
58          */
59
60         /* Medford has a fixed 8Kbyte VI window size */
61         EFX_STATIC_ASSERT(ER_DZ_EVQ_RPTR_REG_STEP       == 8192);
62         EFX_STATIC_ASSERT(ER_DZ_EVQ_TMR_REG_STEP        == 8192);
63         EFX_STATIC_ASSERT(ER_DZ_RX_DESC_UPD_REG_STEP    == 8192);
64         EFX_STATIC_ASSERT(ER_DZ_TX_DESC_UPD_REG_STEP    == 8192);
65         EFX_STATIC_ASSERT(ER_DZ_TX_PIOBUF_STEP          == 8192);
66
67         EFX_STATIC_ASSERT(1U << EFX_VI_WINDOW_SHIFT_8K  == 8192);
68         encp->enc_vi_window_shift = EFX_VI_WINDOW_SHIFT_8K;
69
70         /*
71          * Enable firmware workarounds for hardware errata.
72          * Expected responses are:
73          *  - 0 (zero):
74          *      Success: workaround enabled or disabled as requested.
75          *  - MC_CMD_ERR_ENOSYS (reported as ENOTSUP):
76          *      Firmware does not support the MC_CMD_WORKAROUND request.
77          *      (assume that the workaround is not supported).
78          *  - MC_CMD_ERR_ENOENT (reported as ENOENT):
79          *      Firmware does not support the requested workaround.
80          *  - MC_CMD_ERR_EPERM  (reported as EACCES):
81          *      Unprivileged function cannot enable/disable workarounds.
82          *
83          * See efx_mcdi_request_errcode() for MCDI error translations.
84          */
85
86
87         if (EFX_PCI_FUNCTION_IS_VF(encp)) {
88                 /*
89                  * Interrupt testing does not work for VFs. See bug50084 and
90                  * bug71432 comment 21.
91                  */
92                 encp->enc_bug41750_workaround = B_TRUE;
93         }
94
95         /* Chained multicast is always enabled on Medford */
96         encp->enc_bug26807_workaround = B_TRUE;
97
98         /*
99          * If the bug61265 workaround is enabled, then interrupt holdoff timers
100          * cannot be controlled by timer table writes, so MCDI must be used
101          * (timer table writes can still be used for wakeup timers).
102          */
103         rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG61265, B_TRUE,
104             NULL);
105         if ((rc == 0) || (rc == EACCES))
106                 encp->enc_bug61265_workaround = B_TRUE;
107         else if ((rc == ENOTSUP) || (rc == ENOENT))
108                 encp->enc_bug61265_workaround = B_FALSE;
109         else
110                 goto fail1;
111
112         /* Get clock frequencies (in MHz). */
113         if ((rc = efx_mcdi_get_clock(enp, &sysclk, &dpcpu_clk)) != 0)
114                 goto fail2;
115
116         /*
117          * The Medford timer quantum is 1536 dpcpu_clk cycles, documented for
118          * the EV_TMR_VAL field of EV_TIMER_TBL. Scale for MHz and ns units.
119          */
120         encp->enc_evq_timer_quantum_ns = 1536000UL / dpcpu_clk; /* 1536 cycles */
121         encp->enc_evq_timer_max_us = (encp->enc_evq_timer_quantum_ns <<
122                     FRF_CZ_TC_TIMER_VAL_WIDTH) / 1000;
123
124         /* Alignment for receive packet DMA buffers */
125         encp->enc_rx_buf_align_start = 1;
126
127         /* Get the RX DMA end padding alignment configuration */
128         if ((rc = efx_mcdi_get_rxdp_config(enp, &end_padding)) != 0) {
129                 if (rc != EACCES)
130                         goto fail3;
131
132                 /* Assume largest tail padding size supported by hardware */
133                 end_padding = 256;
134         }
135         encp->enc_rx_buf_align_end = end_padding;
136
137         /*
138          * The maximum supported transmit queue size is 2048. TXQs with 4096
139          * descriptors are not supported as the top bit is used for vfifo
140          * stuffing.
141          */
142         encp->enc_txq_max_ndescs = 2048;
143
144         EFX_STATIC_ASSERT(MEDFORD_PIOBUF_NBUFS <= EF10_MAX_PIOBUF_NBUFS);
145         encp->enc_piobuf_limit = MEDFORD_PIOBUF_NBUFS;
146         encp->enc_piobuf_size = MEDFORD_PIOBUF_SIZE;
147         encp->enc_piobuf_min_alloc_size = MEDFORD_MIN_PIO_ALLOC_SIZE;
148
149         /*
150          * Medford stores a single global copy of VPD, not per-PF as on
151          * Huntington.
152          */
153         encp->enc_vpd_is_global = B_TRUE;
154
155         rc = medford_nic_get_required_pcie_bandwidth(enp, &bandwidth);
156         if (rc != 0)
157                 goto fail4;
158         encp->enc_required_pcie_bandwidth_mbps = bandwidth;
159         encp->enc_max_pcie_link_gen = EFX_PCIE_LINK_SPEED_GEN3;
160
161         return (0);
162
163 fail4:
164         EFSYS_PROBE(fail4);
165 fail3:
166         EFSYS_PROBE(fail3);
167 fail2:
168         EFSYS_PROBE(fail2);
169 fail1:
170         EFSYS_PROBE1(fail1, efx_rc_t, rc);
171
172         return (rc);
173 }
174
175 #endif  /* EFSYS_OPT_MEDFORD */