net/sfc/base: import loopback control
[dpdk.git] / drivers / net / sfc / base / efx_mon.c
1 /*
2  * Copyright (c) 2007-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 #if EFSYS_OPT_NAMES
35
36 static const char * const __efx_mon_name[] = {
37         "",
38         "sfx90x0",
39         "sfx91x0",
40         "sfx92x0"
41 };
42
43                 const char *
44 efx_mon_name(
45         __in    efx_nic_t *enp)
46 {
47         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
48
49         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
50
51         EFSYS_ASSERT(encp->enc_mon_type != EFX_MON_INVALID);
52         EFSYS_ASSERT3U(encp->enc_mon_type, <, EFX_MON_NTYPES);
53         return (__efx_mon_name[encp->enc_mon_type]);
54 }
55
56 #endif  /* EFSYS_OPT_NAMES */
57
58
59         __checkReturn   efx_rc_t
60 efx_mon_init(
61         __in            efx_nic_t *enp)
62 {
63         efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
64         efx_mon_t *emp = &(enp->en_mon);
65         const efx_mon_ops_t *emop;
66         efx_rc_t rc;
67
68         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
69         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PROBE);
70
71         if (enp->en_mod_flags & EFX_MOD_MON) {
72                 rc = EINVAL;
73                 goto fail1;
74         }
75
76         enp->en_mod_flags |= EFX_MOD_MON;
77
78         emp->em_type = encp->enc_mon_type;
79
80         EFSYS_ASSERT(encp->enc_mon_type != EFX_MON_INVALID);
81         switch (emp->em_type) {
82         default:
83                 rc = ENOTSUP;
84                 goto fail2;
85         }
86
87         emp->em_emop = emop;
88         return (0);
89
90 fail2:
91         EFSYS_PROBE(fail2);
92
93         emp->em_type = EFX_MON_INVALID;
94
95         enp->en_mod_flags &= ~EFX_MOD_MON;
96
97 fail1:
98         EFSYS_PROBE1(fail1, efx_rc_t, rc);
99
100         return (rc);
101 }
102
103                 void
104 efx_mon_fini(
105         __in    efx_nic_t *enp)
106 {
107         efx_mon_t *emp = &(enp->en_mon);
108
109         EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
110         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_PROBE);
111         EFSYS_ASSERT3U(enp->en_mod_flags, &, EFX_MOD_MON);
112
113         emp->em_emop = NULL;
114
115         emp->em_type = EFX_MON_INVALID;
116
117         enp->en_mod_flags &= ~EFX_MOD_MON;
118 }