New upstream version 17.11.5
[deb_dpdk.git] / drivers / net / sfc / base / efx_port.c
1 /*
2  * Copyright (c) 2009-2016 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 "efx.h"
32 #include "efx_impl.h"
33
34         __checkReturn   efx_rc_t
35 efx_port_init(
36         __in            efx_nic_t *enp)
37 {
38         efx_port_t *epp = &(enp->en_port);
39         const efx_phy_ops_t *epop = epp->ep_epop;
40         efx_rc_t rc;
41
42         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
43         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PROBE);
44         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_NIC);
45
46         if (enp->en_mod_flags & EFX_MOD_PORT) {
47                 rc = EINVAL;
48                 goto fail1;
49         }
50
51         enp->en_mod_flags |= EFX_MOD_PORT;
52
53         epp->ep_mac_type = EFX_MAC_INVALID;
54         epp->ep_link_mode = EFX_LINK_UNKNOWN;
55         epp->ep_mac_drain = B_TRUE;
56
57         /* Configure the MAC */
58         if ((rc = efx_mac_select(enp)) != 0)
59                 goto fail1;
60
61         epp->ep_emop->emo_reconfigure(enp);
62
63         /* Pick up current phy capababilities */
64         (void) efx_port_poll(enp, NULL);
65
66         /*
67          * Turn on the PHY if available, otherwise reset it, and
68          * reconfigure it with the current configuration.
69          */
70         if (epop->epo_power != NULL) {
71                 if ((rc = epop->epo_power(enp, B_TRUE)) != 0)
72                         goto fail2;
73         } else {
74                 if ((rc = epop->epo_reset(enp)) != 0)
75                         goto fail2;
76         }
77
78         EFSYS_ASSERT(enp->en_reset_flags & EFX_RESET_PHY);
79         enp->en_reset_flags &= ~EFX_RESET_PHY;
80
81         if ((rc = epop->epo_reconfigure(enp)) != 0)
82                 goto fail3;
83
84         return (0);
85
86 fail3:
87         EFSYS_PROBE(fail3);
88 fail2:
89         EFSYS_PROBE(fail2);
90 fail1:
91         EFSYS_PROBE1(fail1, efx_rc_t, rc);
92
93         enp->en_mod_flags &= ~EFX_MOD_PORT;
94
95         return (rc);
96 }
97
98         __checkReturn   efx_rc_t
99 efx_port_poll(
100         __in            efx_nic_t *enp,
101         __out_opt       efx_link_mode_t *link_modep)
102 {
103         efx_port_t *epp = &(enp->en_port);
104         const efx_mac_ops_t *emop = epp->ep_emop;
105         efx_link_mode_t ignore_link_mode;
106         efx_rc_t rc;
107
108         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
109         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PORT);
110
111         EFSYS_ASSERT(emop != NULL);
112
113         if (link_modep == NULL)
114                 link_modep = &ignore_link_mode;
115
116         if ((rc = emop->emo_poll(enp, link_modep)) != 0)
117                 goto fail1;
118
119         return (0);
120
121 fail1:
122         EFSYS_PROBE1(fail1, efx_rc_t, rc);
123
124         return (rc);
125 }
126
127 #if EFSYS_OPT_LOOPBACK
128
129         __checkReturn   efx_rc_t
130 efx_port_loopback_set(
131         __in            efx_nic_t *enp,
132         __in            efx_link_mode_t link_mode,
133         __in            efx_loopback_type_t loopback_type)
134 {
135         efx_port_t *epp = &(enp->en_port);
136         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
137         const efx_mac_ops_t *emop = epp->ep_emop;
138         efx_rc_t rc;
139
140         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
141         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PORT);
142         EFSYS_ASSERT(emop != NULL);
143
144         EFSYS_ASSERT(link_mode < EFX_LINK_NMODES);
145
146         if (EFX_TEST_QWORD_BIT(encp->enc_loopback_types[link_mode],
147                 (int)loopback_type) == 0) {
148                 rc = ENOTSUP;
149                 goto fail1;
150         }
151
152         if (epp->ep_loopback_type == loopback_type &&
153             epp->ep_loopback_link_mode == link_mode)
154                 return (0);
155
156         if ((rc = emop->emo_loopback_set(enp, link_mode, loopback_type)) != 0)
157                 goto fail2;
158
159         return (0);
160
161 fail2:
162         EFSYS_PROBE(fail2);
163 fail1:
164         EFSYS_PROBE1(fail1, efx_rc_t, rc);
165
166         return (rc);
167 }
168
169 #if EFSYS_OPT_NAMES
170
171 static const char * const __efx_loopback_type_name[] = {
172         "OFF",
173         "DATA",
174         "GMAC",
175         "XGMII",
176         "XGXS",
177         "XAUI",
178         "GMII",
179         "SGMII",
180         "XGBR",
181         "XFI",
182         "XAUI_FAR",
183         "GMII_FAR",
184         "SGMII_FAR",
185         "XFI_FAR",
186         "GPHY",
187         "PHY_XS",
188         "PCS",
189         "PMA_PMD",
190         "XPORT",
191         "XGMII_WS",
192         "XAUI_WS",
193         "XAUI_WS_FAR",
194         "XAUI_WS_NEAR",
195         "GMII_WS",
196         "XFI_WS",
197         "XFI_WS_FAR",
198         "PHYXS_WS",
199         "PMA_INT",
200         "SD_NEAR",
201         "SD_FAR",
202         "PMA_INT_WS",
203         "SD_FEP2_WS",
204         "SD_FEP1_5_WS",
205         "SD_FEP_WS",
206         "SD_FES_WS",
207 };
208
209         __checkReturn   const char *
210 efx_loopback_type_name(
211         __in            efx_nic_t *enp,
212         __in            efx_loopback_type_t type)
213 {
214         EFX_STATIC_ASSERT(EFX_ARRAY_SIZE(__efx_loopback_type_name) ==
215             EFX_LOOPBACK_NTYPES);
216
217         _NOTE(ARGUNUSED(enp))
218         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
219         EFSYS_ASSERT3U(type, <, EFX_LOOPBACK_NTYPES);
220
221         return (__efx_loopback_type_name[type]);
222 }
223
224 #endif  /* EFSYS_OPT_NAMES */
225
226 #endif  /* EFSYS_OPT_LOOPBACK */
227
228                         void
229 efx_port_fini(
230         __in            efx_nic_t *enp)
231 {
232         efx_port_t *epp = &(enp->en_port);
233         const efx_phy_ops_t *epop = epp->ep_epop;
234
235         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
236         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PROBE);
237         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_NIC);
238         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PORT);
239
240         EFSYS_ASSERT(epp->ep_mac_drain);
241
242         epp->ep_emop = NULL;
243         epp->ep_mac_type = EFX_MAC_INVALID;
244         epp->ep_mac_drain = B_FALSE;
245
246         /* Turn off the PHY */
247         if (epop->epo_power != NULL)
248                 (void) epop->epo_power(enp, B_FALSE);
249
250         enp->en_mod_flags &= ~EFX_MOD_PORT;
251 }