5a4b13d618f30f14f907f82d246a77feae00f056
[dpdk.git] / drivers / net / bnxt / bnxt_cpr.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) Broadcom Limited.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Broadcom Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include "bnxt.h"
35 #include "bnxt_cpr.h"
36 #include "bnxt_hwrm.h"
37 #include "bnxt_ring.h"
38 #include "hsi_struct_def_dpdk.h"
39
40 /*
41  * Async event handling
42  */
43 void bnxt_handle_async_event(struct bnxt *bp __rte_unused,
44                              struct cmpl_base *cmp)
45 {
46         struct hwrm_async_event_cmpl *async_cmp =
47                                 (struct hwrm_async_event_cmpl *)cmp;
48
49         /* TODO: HWRM async events are not defined yet */
50         /* Needs to handle: link events, error events, etc. */
51         switch (async_cmp->event_id) {
52         case 0:
53                 /* Assume LINK_CHANGE == 0 */
54                 RTE_LOG(INFO, PMD, "Link change event\n");
55
56                 /* Can just prompt the update_op routine to do a qcfg
57                  * instead of doing the actual qcfg
58                  */
59                 break;
60         case 1:
61                 break;
62         default:
63                 RTE_LOG(ERR, PMD, "handle_async_event id = 0x%x\n",
64                         async_cmp->event_id);
65                 break;
66         }
67 }
68
69 void bnxt_handle_fwd_req(struct bnxt *bp, struct cmpl_base *cmpl)
70 {
71         struct hwrm_fwd_req_cmpl *fwd_cmpl = (struct hwrm_fwd_req_cmpl *)cmpl;
72         struct input *fwd_cmd;
73         uint16_t logical_vf_id, error_code;
74
75         /* Qualify the fwd request */
76         if (fwd_cmpl->source_id < bp->pf.first_vf_id) {
77                 RTE_LOG(ERR, PMD,
78                         "FWD req's source_id 0x%x > first_vf_id 0x%x\n",
79                         fwd_cmpl->source_id, bp->pf.first_vf_id);
80                 error_code = HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED;
81                 goto reject;
82         } else if (fwd_cmpl->req_len_type >> HWRM_FWD_REQ_CMPL_REQ_LEN_SFT >
83                    128 - sizeof(struct input)) {
84                 RTE_LOG(ERR, PMD,
85                     "FWD req's cmd len 0x%x > 108 bytes allowed\n",
86                     fwd_cmpl->req_len_type >> HWRM_FWD_REQ_CMPL_REQ_LEN_SFT);
87                 error_code = HWRM_ERR_CODE_INVALID_PARAMS;
88                 goto reject;
89         }
90
91         /* Locate VF's forwarded command */
92         logical_vf_id = fwd_cmpl->source_id - bp->pf.first_vf_id;
93         fwd_cmd = (struct input *)((uint8_t *)bp->pf.vf_req_buf +
94                    (logical_vf_id * 128));
95
96         /* Provision the request */
97         switch (fwd_cmd->req_type) {
98         case HWRM_CFA_L2_FILTER_ALLOC:
99         case HWRM_CFA_L2_FILTER_FREE:
100         case HWRM_CFA_L2_FILTER_CFG:
101         case HWRM_CFA_L2_SET_RX_MASK:
102                 break;
103         default:
104                 error_code = HWRM_ERR_CODE_INVALID_PARAMS;
105                 goto reject;
106         }
107
108         /* Forward */
109         fwd_cmd->target_id = fwd_cmpl->source_id;
110         bnxt_hwrm_exec_fwd_resp(bp, fwd_cmd);
111         return;
112
113 reject:
114         /* TODO: Encap the reject error resp into the hwrm_err_iput? */
115         /* Use the error_code for the reject cmd */
116         RTE_LOG(ERR, PMD,
117                 "Error 0x%x found in the forward request\n", error_code);
118 }
119
120 /* For the default completion ring only */
121 void bnxt_free_def_cp_ring(struct bnxt *bp)
122 {
123         struct bnxt_cp_ring_info *cpr = bp->def_cp_ring;
124         struct bnxt_ring *ring = cpr->cp_ring_struct;
125
126         bnxt_free_ring(ring);
127 }
128
129 /* For the default completion ring only */
130 void bnxt_init_def_ring_struct(struct bnxt *bp)
131 {
132         struct bnxt_cp_ring_info *cpr = bp->def_cp_ring;
133         struct bnxt_ring *ring = cpr->cp_ring_struct;
134
135         ring->bd = (void *)cpr->cp_desc_ring;
136         ring->bd_dma = cpr->cp_desc_mapping;
137         ring->ring_size = rte_align32pow2(DEFAULT_CP_RING_SIZE);
138         ring->ring_mask = ring->ring_size - 1;
139         ring->vmem_size = 0;
140         ring->vmem = NULL;
141 }