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