47cda7e521ed6ce5a1c87e35093c26ea93bef6a5
[deb_dpdk.git] / drivers / net / bnxt / bnxt_irq.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2014-2015 Broadcom Corporation.
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 <inttypes.h>
35
36 #include <rte_malloc.h>
37
38 #include "bnxt.h"
39 #include "bnxt_cpr.h"
40 #include "bnxt_irq.h"
41 #include "bnxt_ring.h"
42 #include "hsi_struct_def_dpdk.h"
43
44 /*
45  * Interrupts
46  */
47
48 static void bnxt_int_handler(void *param)
49 {
50         struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
51         struct bnxt *bp = (struct bnxt *)eth_dev->data->dev_private;
52         struct bnxt_cp_ring_info *cpr = bp->def_cp_ring;
53         uint32_t raw_cons = cpr->cp_raw_cons;
54         uint32_t cons;
55         struct cmpl_base *cmp;
56
57         while (1) {
58                 cons = RING_CMP(cpr->cp_ring_struct, raw_cons);
59                 cmp = &cpr->cp_desc_ring[cons];
60
61                 if (!CMP_VALID(cmp, raw_cons, cpr->cp_ring_struct))
62                         break;
63
64                 switch (CMP_TYPE(cmp)) {
65                 case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT:
66                         /* Handle any async event */
67                         bnxt_handle_async_event(bp, cmp);
68                         break;
69                 case CMPL_BASE_TYPE_HWRM_FWD_REQ:
70                         /* Handle HWRM forwarded responses */
71                         bnxt_handle_fwd_req(bp, cmp);
72                         break;
73                 default:
74                         /* Ignore any other events */
75                         if (cmp->type & rte_cpu_to_le_16(0x01)) {
76                                 if (!CMP_VALID(cmp, raw_cons,
77                                                cpr->cp_ring_struct))
78                                         goto no_more;
79                         }
80                         RTE_LOG(INFO, PMD,
81                                 "Ignoring %02x completion\n", CMP_TYPE(cmp));
82                         break;
83                 }
84                 raw_cons = NEXT_RAW_CMP(raw_cons);
85
86         };
87 no_more:
88         cpr->cp_raw_cons = raw_cons;
89         B_CP_DB_REARM(cpr, cpr->cp_raw_cons);
90 }
91
92 void bnxt_free_int(struct bnxt *bp)
93 {
94         struct bnxt_irq *irq;
95
96         irq = bp->irq_tbl;
97         if (irq) {
98                 if (irq->requested) {
99                         rte_intr_disable(&bp->pdev->intr_handle);
100                         rte_intr_callback_unregister(&bp->pdev->intr_handle,
101                                                      irq->handler,
102                                                      (void *)bp->eth_dev);
103                         irq->requested = 0;
104                 }
105                 rte_free((void *)bp->irq_tbl);
106                 bp->irq_tbl = NULL;
107         }
108 }
109
110 void bnxt_disable_int(struct bnxt *bp)
111 {
112         struct bnxt_cp_ring_info *cpr = bp->def_cp_ring;
113
114         /* Only the default completion ring */
115         if (cpr != NULL && cpr->cp_doorbell != NULL)
116                 B_CP_DB_DISARM(cpr);
117 }
118
119 void bnxt_enable_int(struct bnxt *bp)
120 {
121         struct bnxt_cp_ring_info *cpr = bp->def_cp_ring;
122
123         B_CP_DB_ARM(cpr);
124 }
125
126 int bnxt_setup_int(struct bnxt *bp)
127 {
128         uint16_t total_vecs;
129         const int len = sizeof(bp->irq_tbl[0].name);
130         int i, rc = 0;
131
132         /* DPDK host only supports 1 MSI-X vector */
133         total_vecs = 1;
134         bp->irq_tbl = rte_calloc("bnxt_irq_tbl", total_vecs,
135                                  sizeof(struct bnxt_irq), 0);
136         if (bp->irq_tbl) {
137                 for (i = 0; i < total_vecs; i++) {
138                         bp->irq_tbl[i].vector = i;
139                         snprintf(bp->irq_tbl[i].name, len,
140                                  "%s-%d", bp->eth_dev->device->name, i);
141                         bp->irq_tbl[i].handler = bnxt_int_handler;
142                 }
143         } else {
144                 rc = -ENOMEM;
145                 goto setup_exit;
146         }
147         return 0;
148
149 setup_exit:
150         RTE_LOG(ERR, PMD, "bnxt_irq_tbl setup failed\n");
151         return rc;
152 }
153
154 int bnxt_request_int(struct bnxt *bp)
155 {
156         int rc = 0;
157
158         struct bnxt_irq *irq = bp->irq_tbl;
159
160         rte_intr_callback_register(&bp->pdev->intr_handle, irq->handler,
161                                    (void *)bp->eth_dev);
162         rte_intr_enable(&bp->pdev->intr_handle);
163
164         irq->requested = 1;
165         return rc;
166 }