Imported Upstream version 16.07-rc1
[deb_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 <rte_malloc.h>
35
36 #include "bnxt.h"
37 #include "bnxt_cpr.h"
38 #include "bnxt_hwrm.h"
39 #include "bnxt_ring.h"
40 #include "hsi_struct_def_dpdk.h"
41
42 /*
43  * Async event handling
44  */
45 void bnxt_handle_async_event(struct bnxt *bp __rte_unused,
46                              struct cmpl_base *cmp)
47 {
48         struct hwrm_async_event_cmpl *async_cmp =
49                                 (struct hwrm_async_event_cmpl *)cmp;
50
51         /* TODO: HWRM async events are not defined yet */
52         /* Needs to handle: link events, error events, etc. */
53         switch (async_cmp->event_id) {
54         case 0:
55                 /* Assume LINK_CHANGE == 0 */
56                 RTE_LOG(INFO, PMD, "Link change event\n");
57
58                 /* Can just prompt the update_op routine to do a qcfg
59                  * instead of doing the actual qcfg
60                  */
61                 break;
62         case 1:
63                 break;
64         default:
65                 RTE_LOG(ERR, PMD, "handle_async_event id = 0x%x\n",
66                         async_cmp->event_id);
67                 break;
68         }
69 }
70
71 void bnxt_handle_fwd_req(struct bnxt *bp, struct cmpl_base *cmpl)
72 {
73         struct hwrm_fwd_req_cmpl *fwd_cmpl = (struct hwrm_fwd_req_cmpl *)cmpl;
74         struct input *fwd_cmd;
75         uint16_t logical_vf_id, error_code;
76
77         /* Qualify the fwd request */
78         if (fwd_cmpl->source_id < bp->pf.first_vf_id) {
79                 RTE_LOG(ERR, PMD,
80                         "FWD req's source_id 0x%x > first_vf_id 0x%x\n",
81                         fwd_cmpl->source_id, bp->pf.first_vf_id);
82                 error_code = HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED;
83                 goto reject;
84         } else if (fwd_cmpl->req_len_type >> HWRM_FWD_REQ_CMPL_REQ_LEN_SFT >
85                    128 - sizeof(struct input)) {
86                 RTE_LOG(ERR, PMD,
87                     "FWD req's cmd len 0x%x > 108 bytes allowed\n",
88                     fwd_cmpl->req_len_type >> HWRM_FWD_REQ_CMPL_REQ_LEN_SFT);
89                 error_code = HWRM_ERR_CODE_INVALID_PARAMS;
90                 goto reject;
91         }
92
93         /* Locate VF's forwarded command */
94         logical_vf_id = fwd_cmpl->source_id - bp->pf.first_vf_id;
95         fwd_cmd = (struct input *)((uint8_t *)bp->pf.vf_req_buf +
96                    (logical_vf_id * 128));
97
98         /* Provision the request */
99         switch (fwd_cmd->req_type) {
100         case HWRM_CFA_L2_FILTER_ALLOC:
101         case HWRM_CFA_L2_FILTER_FREE:
102         case HWRM_CFA_L2_FILTER_CFG:
103         case HWRM_CFA_L2_SET_RX_MASK:
104                 break;
105         default:
106                 error_code = HWRM_ERR_CODE_INVALID_PARAMS;
107                 goto reject;
108         }
109
110         /* Forward */
111         fwd_cmd->target_id = fwd_cmpl->source_id;
112         bnxt_hwrm_exec_fwd_resp(bp, fwd_cmd);
113         return;
114
115 reject:
116         /* TODO: Encap the reject error resp into the hwrm_err_iput? */
117         /* Use the error_code for the reject cmd */
118         RTE_LOG(ERR, PMD,
119                 "Error 0x%x found in the forward request\n", error_code);
120 }
121
122 /* For the default completion ring only */
123 void bnxt_free_def_cp_ring(struct bnxt *bp)
124 {
125         struct bnxt_cp_ring_info *cpr = bp->def_cp_ring;
126
127         bnxt_free_ring(cpr->cp_ring_struct);
128         rte_free(cpr->cp_ring_struct);
129         rte_free(cpr);
130 }
131
132 /* For the default completion ring only */
133 int bnxt_init_def_ring_struct(struct bnxt *bp, unsigned int socket_id)
134 {
135         struct bnxt_cp_ring_info *cpr;
136         struct bnxt_ring *ring;
137
138         cpr = rte_zmalloc_socket("cpr",
139                                  sizeof(struct bnxt_cp_ring_info),
140                                  RTE_CACHE_LINE_SIZE, socket_id);
141         if (cpr == NULL)
142                 return -ENOMEM;
143         bp->def_cp_ring = cpr;
144
145         ring = rte_zmalloc_socket("bnxt_cp_ring_struct",
146                                   sizeof(struct bnxt_ring),
147                                   RTE_CACHE_LINE_SIZE, socket_id);
148         if (ring == NULL)
149                 return -ENOMEM;
150         cpr->cp_ring_struct = ring;
151         ring->bd = (void *)cpr->cp_desc_ring;
152         ring->bd_dma = cpr->cp_desc_mapping;
153         ring->ring_size = rte_align32pow2(DEFAULT_CP_RING_SIZE);
154         ring->ring_mask = ring->ring_size - 1;
155         ring->vmem_size = 0;
156         ring->vmem = NULL;
157
158         return 0;
159 }