]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/sfxge/common/medford_nic.c
MFC r294079
[FreeBSD/FreeBSD.git] / sys / dev / sfxge / common / medford_nic.c
1 /*-
2  * Copyright (c) 2015 Solarflare Communications Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
24  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * The views and conclusions contained in the software and documentation are
27  * those of the authors and should not be interpreted as representing official
28  * policies, either expressed or implied, of the FreeBSD Project.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include "efx.h"
35 #include "efx_impl.h"
36 #include "mcdi_mon.h"
37
38 #if EFSYS_OPT_MEDFORD
39
40 #include "ef10_tlv_layout.h"
41
42         __checkReturn   efx_rc_t
43 medford_board_cfg(
44         __in            efx_nic_t *enp)
45 {
46         efx_mcdi_iface_t *emip = &(enp->en_mcdi.em_emip);
47         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
48         uint8_t mac_addr[6] = { 0 };
49         uint32_t board_type = 0;
50         ef10_link_state_t els;
51         efx_port_t *epp = &(enp->en_port);
52         uint32_t port;
53         uint32_t pf;
54         uint32_t vf;
55         uint32_t mask;
56         uint32_t flags;
57         uint32_t sysclk;
58         uint32_t base, nvec;
59         efx_rc_t rc;
60
61         /*
62          * FIXME: Likely to be incomplete and incorrect.
63          * Parts of this should be shared with Huntington.
64          */
65
66         if ((rc = efx_mcdi_get_port_assignment(enp, &port)) != 0)
67                 goto fail1;
68
69         /*
70          * NOTE: The MCDI protocol numbers ports from zero.
71          * The common code MCDI interface numbers ports from one.
72          */
73         emip->emi_port = port + 1;
74
75         if ((rc = ef10_external_port_mapping(enp, port,
76                     &encp->enc_external_port)) != 0)
77                 goto fail2;
78
79         /*
80          * Get PCIe function number from firmware (used for
81          * per-function privilege and dynamic config info).
82          *  - PCIe PF: pf = PF number, vf = 0xffff.
83          *  - PCIe VF: pf = parent PF, vf = VF number.
84          */
85         if ((rc = efx_mcdi_get_function_info(enp, &pf, &vf)) != 0)
86                 goto fail3;
87
88         encp->enc_pf = pf;
89         encp->enc_vf = vf;
90
91         /* MAC address for this function */
92         if (EFX_PCI_FUNCTION_IS_PF(encp)) {
93                 rc = efx_mcdi_get_mac_address_pf(enp, mac_addr);
94                 if ((rc == 0) && (mac_addr[0] & 0x02)) {
95                         /*
96                          * If the static config does not include a global MAC
97                          * address pool then the board may return a locally
98                          * administered MAC address (this should only happen on
99                          * incorrectly programmed boards).
100                          */
101                         rc = EINVAL;
102                 }
103         } else {
104                 rc = efx_mcdi_get_mac_address_vf(enp, mac_addr);
105         }
106         if (rc != 0)
107                 goto fail4;
108
109         EFX_MAC_ADDR_COPY(encp->enc_mac_addr, mac_addr);
110
111         /* Board configuration */
112         rc = efx_mcdi_get_board_cfg(enp, &board_type, NULL, NULL);
113         if (rc != 0) {
114                 /* Unprivileged functions may not be able to read board cfg */
115                 if (rc == EACCES)
116                         board_type = 0;
117                 else
118                         goto fail5;
119         }
120
121         encp->enc_board_type = board_type;
122         encp->enc_clk_mult = 1; /* not used for Medford */
123
124         /* Fill out fields in enp->en_port and enp->en_nic_cfg from MCDI */
125         if ((rc = efx_mcdi_get_phy_cfg(enp)) != 0)
126                 goto fail6;
127
128         /* Obtain the default PHY advertised capabilities */
129         if ((rc = hunt_phy_get_link(enp, &els)) != 0)
130                 goto fail7;
131         epp->ep_default_adv_cap_mask = els.els_adv_cap_mask;
132         epp->ep_adv_cap_mask = els.els_adv_cap_mask;
133
134         if (EFX_PCI_FUNCTION_IS_VF(encp)) {
135                 /*
136                  * Interrupt testing does not work for VFs. See bug50084.
137                  * FIXME: Does this still  apply to Medford?
138                  */
139                 encp->enc_bug41750_workaround = B_TRUE;
140         }
141
142         /* Chained multicast is always enabled on Medford */
143         encp->enc_bug26807_workaround = B_TRUE;
144
145         /* Get sysclk frequency (in MHz). */
146         if ((rc = efx_mcdi_get_clock(enp, &sysclk)) != 0)
147                 goto fail8;
148
149         /*
150          * The timer quantum is 1536 sysclk cycles, documented for the
151          * EV_TMR_VAL field of EV_TIMER_TBL. Scale for MHz and ns units.
152          */
153         encp->enc_evq_timer_quantum_ns = 1536000UL / sysclk; /* 1536 cycles */
154         encp->enc_evq_timer_max_us = (encp->enc_evq_timer_quantum_ns <<
155                     FRF_CZ_TC_TIMER_VAL_WIDTH) / 1000;
156
157         /* Check capabilities of running datapath firmware */
158         if ((rc = ef10_get_datapath_caps(enp)) != 0)
159             goto fail9;
160
161         /* Alignment for receive packet DMA buffers */
162         encp->enc_rx_buf_align_start = 1;
163
164         /* FIXME: RX DMA end padding is configurable on Medford */
165         encp->enc_rx_buf_align_end = 64;
166
167         /* Alignment for WPTR updates */
168         encp->enc_rx_push_align = EF10_RX_WPTR_ALIGN;
169
170         /*
171          * Set resource limits for MC_CMD_ALLOC_VIS. Note that we cannot use
172          * MC_CMD_GET_RESOURCE_LIMITS here as that reports the available
173          * resources (allocated to this PCIe function), which is zero until
174          * after we have allocated VIs.
175          */
176         encp->enc_evq_limit = 1024;
177         encp->enc_rxq_limit = EFX_RXQ_LIMIT_TARGET;
178         encp->enc_txq_limit = EFX_TXQ_LIMIT_TARGET;
179
180         encp->enc_buftbl_limit = 0xFFFFFFFF;
181
182         encp->enc_piobuf_limit = MEDFORD_PIOBUF_NBUFS;
183         encp->enc_piobuf_size = MEDFORD_PIOBUF_SIZE;
184         encp->enc_piobuf_min_alloc_size = MEDFORD_MIN_PIO_ALLOC_SIZE;
185
186         /*
187          * Get the current privilege mask. Note that this may be modified
188          * dynamically, so this value is informational only. DO NOT use
189          * the privilege mask to check for sufficient privileges, as that
190          * can result in time-of-check/time-of-use bugs.
191          */
192         if ((rc = ef10_get_privilege_mask(enp, &mask)) != 0)
193                 goto fail10;
194         encp->enc_privilege_mask = mask;
195
196         /* Get interrupt vector limits */
197         if ((rc = efx_mcdi_get_vector_cfg(enp, &base, &nvec, NULL)) != 0) {
198                 if (EFX_PCI_FUNCTION_IS_PF(encp))
199                         goto fail11;
200
201                 /* Ignore error (cannot query vector limits from a VF). */
202                 base = 0;
203                 nvec = 1024;
204         }
205         encp->enc_intr_vec_base = base;
206         encp->enc_intr_limit = nvec;
207
208         /*
209          * Maximum number of bytes into the frame the TCP header can start for
210          * firmware assisted TSO to work.
211          */
212         encp->enc_tx_tso_tcp_header_offset_limit = EF10_TCP_HEADER_OFFSET_LIMIT;
213
214         /*
215          * Medford stores a single global copy of VPD, not per-PF as on
216          * Huntington.
217          */
218         encp->enc_vpd_is_global = B_TRUE;
219
220         return (0);
221
222 fail11:
223         EFSYS_PROBE(fail11);
224 fail10:
225         EFSYS_PROBE(fail10);
226 fail9:
227         EFSYS_PROBE(fail9);
228 fail8:
229         EFSYS_PROBE(fail8);
230 fail7:
231         EFSYS_PROBE(fail7);
232 fail6:
233         EFSYS_PROBE(fail6);
234 fail5:
235         EFSYS_PROBE(fail5);
236 fail4:
237         EFSYS_PROBE(fail4);
238 fail3:
239         EFSYS_PROBE(fail3);
240 fail2:
241         EFSYS_PROBE(fail2);
242 fail1:
243         EFSYS_PROBE1(fail1, efx_rc_t, rc);
244
245         return (rc);
246 }
247
248 #endif  /* EFSYS_OPT_MEDFORD */