forked from Xilinx/open-nic-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onic_lib.c
266 lines (224 loc) · 6.75 KB
/
onic_lib.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
* Copyright (c) 2020 Xilinx, Inc.
* All rights reserved.
*
* This source code is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* The full GNU General Public License is included in this distribution in
* the file called "COPYING".
*/
#include <linux/pci.h>
#include "onic_lib.h"
#include "onic.h"
#define ONIC_MAX_IRQ_NAME 32
extern int onic_poll(struct napi_struct *napi, int budget);
static irqreturn_t onic_q_handler(int irq, void *dev_id)
{
struct onic_q_vector *vec = dev_id;
struct onic_private *priv = vec->priv;
u16 qid = vec->vid;
struct onic_rx_queue *rxq = priv->rx_queue[qid];
bool debug = 0;
if (debug) dev_info(&priv->pdev->dev, "queue irq");
//napi_schedule(&rxq->napi);
napi_schedule_irqoff(&rxq->napi);
return IRQ_HANDLED;
}
static irqreturn_t onic_user_handler(int irq, void *dev_id)
{
struct onic_private *priv = dev_id;
dev_info(&priv->pdev->dev, "user irq");
return IRQ_WAKE_THREAD;
}
static irqreturn_t onic_user_thread_fn(int irq, void *dev_id)
{
struct onic_private *priv = dev_id;
dev_info(&priv->pdev->dev,
"User IRQ (BH) fired on Funtion#%05x: vector=%d\n",
PCI_FUNC(priv->pdev->devfn), irq);
return IRQ_HANDLED;
}
static irqreturn_t onic_error_handler(int irq, void *dev_id)
{
return IRQ_WAKE_THREAD;
}
static irqreturn_t onic_error_thread_fn(int irq, void *dev_id)
{
struct onic_private *priv = dev_id;
dev_err(&priv->pdev->dev,
"Error IRQ (BH) fired on Funtion#%05x: vector=%d\n",
PCI_FUNC(priv->pdev->devfn), irq);
return IRQ_HANDLED;
}
/**
* onic_init_q_vector - clear a queue vector
* @priv: pointer to driver private data
* @vid: vector ID
**/
static void onic_clear_q_vector(struct onic_private *priv, u16 vid)
{
struct onic_q_vector *vec = priv->q_vector[vid];
if (!vec)
return;
free_irq(pci_irq_vector(priv->pdev, vid), vec);
kfree(vec);
}
/**
* onic_init_q_vector - initialize a queue vector
* @priv: pointer to driver private data
* @vid: vector ID
*
* This function does the following: allocate coherent DMA region for interrupt
* aggregation ring, register NAPI instances, and initialize relevant QDMA
* interrupt registers. Return 0 on success, negative on failure
**/
static int onic_init_q_vector(struct onic_private *priv, u16 vid)
{
struct pci_dev *pdev = priv->pdev;
struct onic_q_vector *vec;
char* name = (char*)vmalloc(sizeof(char)*ONIC_MAX_IRQ_NAME);
int rv;
vec = kzalloc(sizeof(struct onic_q_vector), GFP_KERNEL);
if (!vec)
return -ENOMEM;
vec->priv = priv;
vec->vid = vid;
snprintf(name, ONIC_MAX_IRQ_NAME, "%s-%d", priv->netdev->name, vid);
rv = request_irq(pci_irq_vector(pdev, vid), onic_q_handler,
0, name, vec);
if (rv < 0) {
dev_err(&pdev->dev, "Failed to setup queue vector %s", name);
return rv;
}
/* setup affinity mask and node */
/* cpu = vid % num_online_cpus(); */
/* cpumask_set_cpu(cpu, &vec->affinity_mask); */
/* vec->numa_node = node; */
dev_info(&pdev->dev, "Setup IRQ vector %d with name %s",
pci_irq_vector(pdev, vid), name);
priv->q_vector[vid] = vec;
return 0;
}
/**
* onic_acquire_msix_vectors - acquire MSI-X vectors
* @priv: pointer to driver private data
*
* Attempt to acquire a suitable range of MSI-X vector interrupts. Return 0 on
* success, and negative on error.
*
* For every PF, a minimum of 2 vectors are required for proper operation, one
* for queue interrupt and one for user interreupt. The master PF requires one
* additional vector for global error interrupt.
**/
static int onic_acquire_msix_vectors(struct onic_private *priv)
{
int vectors, non_q_vectors;
vectors = ONIC_MAX_QUEUES;
non_q_vectors = 1;
if (test_bit(ONIC_FLAG_MASTER_PF, priv->flags))
non_q_vectors++;
vectors += non_q_vectors;
vectors = pci_alloc_irq_vectors(priv->pdev, non_q_vectors + 1, vectors,
PCI_IRQ_MSIX);
if (vectors < 0) {
dev_err(&priv->pdev->dev,
"Failed to allocate vectors in the range [%d, %d]",
non_q_vectors + 1, vectors);
return vectors;
}
vectors -= non_q_vectors;
priv->num_q_vectors = vectors;
dev_info(&priv->pdev->dev, "Allocated %d queue vectors\n",
priv->num_q_vectors);
return 0;
}
/**
* onic_set_num_queues - calculate the number of active queues
* @priv: pointer to driver private data
*
* The number of active queues equals to either the number of queue vectors, or
* the real number of queues in the associated net device, whichever is smaller.
**/
static void onic_set_num_queues(struct onic_private *priv)
{
struct net_device *dev = priv->netdev;
priv->num_tx_queues =
min_t(u16, priv->num_q_vectors, dev->real_num_tx_queues);
priv->num_rx_queues =
min_t(u16, priv->num_q_vectors, dev->real_num_rx_queues);
}
int onic_init_capacity(struct onic_private *priv)
{
int rv;
rv = onic_acquire_msix_vectors(priv);
if (rv < 0)
return rv;
onic_set_num_queues(priv);
return 0;
}
void onic_clear_capacity(struct onic_private *priv)
{
priv->num_tx_queues = 0;
priv->num_rx_queues = 0;
priv->num_q_vectors = 0;
pci_free_irq_vectors(priv->pdev);
}
int onic_init_interrupt(struct onic_private *priv)
{
struct pci_dev *pdev = priv->pdev;
int vid, rv;
for (vid = 0; vid < priv->num_q_vectors; ++vid) {
rv = onic_init_q_vector(priv, vid);
if (rv < 0)
goto clear_interrupt;
}
rv = request_threaded_irq(pci_irq_vector(pdev, vid),
onic_user_handler, onic_user_thread_fn,
0, "onic-user", priv);
if (rv < 0) {
dev_err(&pdev->dev, "Failed to setup user interrupt");
goto clear_interrupt;
}
set_bit(ONIC_USER_INTR, priv->state);
if (!test_bit(ONIC_FLAG_MASTER_PF, priv->flags))
return 0;
vid++;
rv = request_threaded_irq(pci_irq_vector(pdev, vid),
onic_error_handler, onic_error_thread_fn,
0, "onic-error", priv);
if (rv < 0) {
dev_err(&pdev->dev, "Failed to setup error interrupt");
goto clear_interrupt;
}
onic_qdma_init_error_interrupt(priv->hw.qdma, vid);
set_bit(ONIC_ERROR_INTR, priv->state);
return 0;
clear_interrupt:
onic_clear_interrupt(priv);
return rv;
}
void onic_clear_interrupt(struct onic_private *priv)
{
u8 master_pf = test_bit(ONIC_FLAG_MASTER_PF, priv->flags);
int vid = (master_pf) ?
priv->num_q_vectors + 1 :
priv->num_q_vectors;
if (master_pf) {
if (test_bit(ONIC_ERROR_INTR, priv->state)) {
free_irq(pci_irq_vector(priv->pdev, vid), priv);
onic_qdma_clear_error_interrupt(priv->hw.qdma);
}
vid--;
}
if (test_bit(ONIC_USER_INTR, priv->state))
free_irq(pci_irq_vector(priv->pdev, vid), priv);
while (vid--)
onic_clear_q_vector(priv, vid);
}