]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/dev/qlnx/qlnxe/ecore_dcbx.h
MFC r316485
[FreeBSD/stable/10.git] / sys / dev / qlnx / qlnxe / ecore_dcbx.h
1 /*
2  * Copyright (c) 2017-2018 Cavium, 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
7  *  are met:
8  *
9  *  1. Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  *  2. Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  *
15  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  *  POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  *
29  */
30
31
32 #ifndef __ECORE_DCBX_H__
33 #define __ECORE_DCBX_H__
34
35 #include "ecore.h"
36 #include "ecore_mcp.h"
37 #include "mcp_public.h"
38 #include "reg_addr.h"
39 #include "ecore_hw.h"
40 #include "ecore_hsi_common.h"
41 #include "ecore_dcbx_api.h"
42
43 struct ecore_dcbx_info {
44         struct lldp_status_params_s lldp_remote[LLDP_MAX_LLDP_AGENTS];
45         struct lldp_config_params_s lldp_local[LLDP_MAX_LLDP_AGENTS];
46         struct dcbx_local_params local_admin;
47         struct ecore_dcbx_results results;
48         struct dcb_dscp_map dscp_map;
49         bool dscp_nig_update;
50         struct dcbx_mib operational;
51         struct dcbx_mib remote;
52         struct ecore_dcbx_set set;
53         struct ecore_dcbx_get get;
54         u8 dcbx_cap;
55         u16 iwarp_port;
56 };
57
58 struct ecore_dcbx_mib_meta_data {
59         struct lldp_config_params_s *lldp_local;
60         struct lldp_status_params_s *lldp_remote;
61         struct dcbx_local_params *local_admin;
62         struct dcb_dscp_map *dscp_map;
63         struct dcbx_mib *mib;
64         osal_size_t size;
65         u32 addr;
66 };
67
68 /* ECORE local interface routines */
69 enum _ecore_status_t
70 ecore_dcbx_mib_update_event(struct ecore_hwfn *, struct ecore_ptt *,
71                             enum ecore_mib_read_type);
72
73 enum _ecore_status_t ecore_dcbx_read_lldp_params(struct ecore_hwfn *,
74                                                  struct ecore_ptt *);
75 enum _ecore_status_t ecore_dcbx_info_alloc(struct ecore_hwfn *p_hwfn);
76 void ecore_dcbx_info_free(struct ecore_hwfn *);
77 void ecore_dcbx_set_pf_update_params(struct ecore_dcbx_results *p_src,
78                                      struct pf_update_ramrod_data *p_dest);
79
80 #endif /* __ECORE_DCBX_H__ */