Merge branch 'work.lookup' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_txrx.c
1 /*
2  * Copyright (c) 2015, Mellanox Technologies. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #include <linux/irq.h>
34 #include "en.h"
35
36 static inline bool mlx5e_channel_no_affinity_change(struct mlx5e_channel *c)
37 {
38         int current_cpu = smp_processor_id();
39         const struct cpumask *aff;
40         struct irq_data *idata;
41
42         idata = irq_desc_get_irq_data(c->irq_desc);
43         aff = irq_data_get_affinity_mask(idata);
44         return cpumask_test_cpu(current_cpu, aff);
45 }
46
47 static void mlx5e_handle_tx_dim(struct mlx5e_txqsq *sq)
48 {
49         struct mlx5e_sq_stats *stats = sq->stats;
50         struct net_dim_sample dim_sample;
51
52         if (unlikely(!test_bit(MLX5E_SQ_STATE_AM, &sq->state)))
53                 return;
54
55         net_dim_sample(sq->cq.event_ctr, stats->packets, stats->bytes,
56                        &dim_sample);
57         net_dim(&sq->dim, dim_sample);
58 }
59
60 static void mlx5e_handle_rx_dim(struct mlx5e_rq *rq)
61 {
62         struct mlx5e_rq_stats *stats = rq->stats;
63         struct net_dim_sample dim_sample;
64
65         if (unlikely(!test_bit(MLX5E_RQ_STATE_AM, &rq->state)))
66                 return;
67
68         net_dim_sample(rq->cq.event_ctr, stats->packets, stats->bytes,
69                        &dim_sample);
70         net_dim(&rq->dim, dim_sample);
71 }
72
73 int mlx5e_napi_poll(struct napi_struct *napi, int budget)
74 {
75         struct mlx5e_channel *c = container_of(napi, struct mlx5e_channel,
76                                                napi);
77         bool busy = false;
78         int work_done = 0;
79         int i;
80
81         for (i = 0; i < c->num_tc; i++)
82                 busy |= mlx5e_poll_tx_cq(&c->sq[i].cq, budget);
83
84         if (c->xdp)
85                 busy |= mlx5e_poll_xdpsq_cq(&c->rq.xdpsq.cq);
86
87         if (likely(budget)) { /* budget=0 means: don't poll rx rings */
88                 work_done = mlx5e_poll_rx_cq(&c->rq.cq, budget);
89                 busy |= work_done == budget;
90         }
91
92         busy |= c->rq.post_wqes(&c->rq);
93
94         if (busy) {
95                 if (likely(mlx5e_channel_no_affinity_change(c)))
96                         return budget;
97                 if (budget && work_done == budget)
98                         work_done--;
99         }
100
101         if (unlikely(!napi_complete_done(napi, work_done)))
102                 return work_done;
103
104         for (i = 0; i < c->num_tc; i++) {
105                 mlx5e_handle_tx_dim(&c->sq[i]);
106                 mlx5e_cq_arm(&c->sq[i].cq);
107         }
108
109         mlx5e_handle_rx_dim(&c->rq);
110
111         mlx5e_cq_arm(&c->rq.cq);
112         mlx5e_cq_arm(&c->icosq.cq);
113
114         return work_done;
115 }
116
117 void mlx5e_completion_event(struct mlx5_core_cq *mcq)
118 {
119         struct mlx5e_cq *cq = container_of(mcq, struct mlx5e_cq, mcq);
120
121         cq->event_ctr++;
122         napi_schedule(cq->napi);
123 }
124
125 void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event)
126 {
127         struct mlx5e_cq *cq = container_of(mcq, struct mlx5e_cq, mcq);
128         struct mlx5e_channel *c = cq->channel;
129         struct net_device *netdev = c->netdev;
130
131         netdev_err(netdev, "%s: cqn=0x%.6x event=0x%.2x\n",
132                    __func__, mcq->cqn, event);
133 }