Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Cavium, Inc. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of version 2 of the GNU General Public License |
| 6 | * as published by the Free Software Foundation. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/pci.h> |
| 10 | #include <linux/netdevice.h> |
| 11 | #include <linux/ip.h> |
| 12 | #include <linux/etherdevice.h> |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 13 | #include <linux/iommu.h> |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 14 | #include <net/ip.h> |
| 15 | #include <net/tso.h> |
| 16 | |
| 17 | #include "nic_reg.h" |
| 18 | #include "nic.h" |
| 19 | #include "q_struct.h" |
| 20 | #include "nicvf_queues.h" |
| 21 | |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 22 | static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry, |
| 23 | int size, u64 data); |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 24 | static void nicvf_get_page(struct nicvf *nic) |
| 25 | { |
| 26 | if (!nic->rb_pageref || !nic->rb_page) |
| 27 | return; |
| 28 | |
Joonsoo Kim | 6d061f9 | 2016-05-19 17:10:46 -0700 | [diff] [blame] | 29 | page_ref_add(nic->rb_page, nic->rb_pageref); |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 30 | nic->rb_pageref = 0; |
| 31 | } |
| 32 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 33 | /* Poll a register for a specific value */ |
| 34 | static int nicvf_poll_reg(struct nicvf *nic, int qidx, |
| 35 | u64 reg, int bit_pos, int bits, int val) |
| 36 | { |
| 37 | u64 bit_mask; |
| 38 | u64 reg_val; |
| 39 | int timeout = 10; |
| 40 | |
| 41 | bit_mask = (1ULL << bits) - 1; |
| 42 | bit_mask = (bit_mask << bit_pos); |
| 43 | |
| 44 | while (timeout) { |
| 45 | reg_val = nicvf_queue_reg_read(nic, reg, qidx); |
| 46 | if (((reg_val & bit_mask) >> bit_pos) == val) |
| 47 | return 0; |
| 48 | usleep_range(1000, 2000); |
| 49 | timeout--; |
| 50 | } |
| 51 | netdev_err(nic->netdev, "Poll on reg 0x%llx failed\n", reg); |
| 52 | return 1; |
| 53 | } |
| 54 | |
| 55 | /* Allocate memory for a queue's descriptors */ |
| 56 | static int nicvf_alloc_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem, |
| 57 | int q_len, int desc_size, int align_bytes) |
| 58 | { |
| 59 | dmem->q_len = q_len; |
| 60 | dmem->size = (desc_size * q_len) + align_bytes; |
| 61 | /* Save address, need it while freeing */ |
| 62 | dmem->unalign_base = dma_zalloc_coherent(&nic->pdev->dev, dmem->size, |
| 63 | &dmem->dma, GFP_KERNEL); |
| 64 | if (!dmem->unalign_base) |
| 65 | return -ENOMEM; |
| 66 | |
| 67 | /* Align memory address for 'align_bytes' */ |
| 68 | dmem->phys_base = NICVF_ALIGNED_ADDR((u64)dmem->dma, align_bytes); |
Aleksey Makarov | 39a0dd0 | 2015-06-02 11:00:25 -0700 | [diff] [blame] | 69 | dmem->base = dmem->unalign_base + (dmem->phys_base - dmem->dma); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | /* Free queue's descriptor memory */ |
| 74 | static void nicvf_free_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem) |
| 75 | { |
| 76 | if (!dmem) |
| 77 | return; |
| 78 | |
| 79 | dma_free_coherent(&nic->pdev->dev, dmem->size, |
| 80 | dmem->unalign_base, dmem->dma); |
| 81 | dmem->unalign_base = NULL; |
| 82 | dmem->base = NULL; |
| 83 | } |
| 84 | |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 85 | /* Allocate a new page or recycle one if possible |
| 86 | * |
| 87 | * We cannot optimize dma mapping here, since |
| 88 | * 1. It's only one RBDR ring for 8 Rx queues. |
| 89 | * 2. CQE_RX gives address of the buffer where pkt has been DMA'ed |
| 90 | * and not idx into RBDR ring, so can't refer to saved info. |
| 91 | * 3. There are multiple receive buffers per page |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 92 | */ |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 93 | static struct pgcache *nicvf_alloc_page(struct nicvf *nic, |
| 94 | struct rbdr *rbdr, gfp_t gfp) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 95 | { |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 96 | struct page *page = NULL; |
| 97 | struct pgcache *pgcache, *next; |
| 98 | |
| 99 | /* Check if page is already allocated */ |
| 100 | pgcache = &rbdr->pgcache[rbdr->pgidx]; |
| 101 | page = pgcache->page; |
| 102 | /* Check if page can be recycled */ |
| 103 | if (page && (page_ref_count(page) != 1)) |
| 104 | page = NULL; |
| 105 | |
| 106 | if (!page) { |
| 107 | page = alloc_pages(gfp | __GFP_COMP | __GFP_NOWARN, 0); |
| 108 | if (!page) |
| 109 | return NULL; |
| 110 | |
| 111 | this_cpu_inc(nic->pnicvf->drv_stats->page_alloc); |
| 112 | |
| 113 | /* Check for space */ |
| 114 | if (rbdr->pgalloc >= rbdr->pgcnt) { |
| 115 | /* Page can still be used */ |
| 116 | nic->rb_page = page; |
| 117 | return NULL; |
| 118 | } |
| 119 | |
| 120 | /* Save the page in page cache */ |
| 121 | pgcache->page = page; |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 122 | pgcache->dma_addr = 0; |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 123 | rbdr->pgalloc++; |
| 124 | } |
| 125 | |
| 126 | /* Take extra page reference for recycling */ |
| 127 | page_ref_add(page, 1); |
| 128 | |
| 129 | rbdr->pgidx++; |
| 130 | rbdr->pgidx &= (rbdr->pgcnt - 1); |
| 131 | |
| 132 | /* Prefetch refcount of next page in page cache */ |
| 133 | next = &rbdr->pgcache[rbdr->pgidx]; |
| 134 | page = next->page; |
| 135 | if (page) |
| 136 | prefetch(&page->_refcount); |
| 137 | |
| 138 | return pgcache; |
| 139 | } |
| 140 | |
| 141 | /* Allocate buffer for packet reception */ |
| 142 | static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, struct rbdr *rbdr, |
Sunil Goutham | 927987f | 2017-05-02 18:36:53 +0530 | [diff] [blame] | 143 | gfp_t gfp, u32 buf_len, u64 *rbuf) |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 144 | { |
| 145 | struct pgcache *pgcache = NULL; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 146 | |
Sunil Goutham | 05c773f | 2017-05-02 18:36:54 +0530 | [diff] [blame] | 147 | /* Check if request can be accomodated in previous allocated page. |
| 148 | * But in XDP mode only one buffer per page is permitted. |
| 149 | */ |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 150 | if (!rbdr->is_xdp && nic->rb_page && |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 151 | ((nic->rb_page_offset + buf_len) <= PAGE_SIZE)) { |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 152 | nic->rb_pageref++; |
| 153 | goto ret; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 156 | nicvf_get_page(nic); |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 157 | nic->rb_page = NULL; |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 158 | |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 159 | /* Get new page, either recycled or new one */ |
| 160 | pgcache = nicvf_alloc_page(nic, rbdr, gfp); |
| 161 | if (!pgcache && !nic->rb_page) { |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 162 | this_cpu_inc(nic->pnicvf->drv_stats->rcv_buffer_alloc_failures); |
| 163 | return -ENOMEM; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 164 | } |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 165 | |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 166 | nic->rb_page_offset = 0; |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 167 | /* Check if it's recycled */ |
| 168 | if (pgcache) |
| 169 | nic->rb_page = pgcache->page; |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 170 | ret: |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 171 | if (rbdr->is_xdp && pgcache && pgcache->dma_addr) { |
| 172 | *rbuf = pgcache->dma_addr; |
| 173 | } else { |
| 174 | /* HW will ensure data coherency, CPU sync not required */ |
| 175 | *rbuf = (u64)dma_map_page_attrs(&nic->pdev->dev, nic->rb_page, |
| 176 | nic->rb_page_offset, buf_len, |
| 177 | DMA_FROM_DEVICE, |
| 178 | DMA_ATTR_SKIP_CPU_SYNC); |
| 179 | if (dma_mapping_error(&nic->pdev->dev, (dma_addr_t)*rbuf)) { |
| 180 | if (!nic->rb_page_offset) |
| 181 | __free_pages(nic->rb_page, 0); |
| 182 | nic->rb_page = NULL; |
| 183 | return -ENOMEM; |
| 184 | } |
| 185 | if (pgcache) |
| 186 | pgcache->dma_addr = *rbuf; |
| 187 | nic->rb_page_offset += buf_len; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 188 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 189 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
Sunil Goutham | 668dda0 | 2015-12-07 10:30:33 +0530 | [diff] [blame] | 193 | /* Build skb around receive buffer */ |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 194 | static struct sk_buff *nicvf_rb_ptr_to_skb(struct nicvf *nic, |
| 195 | u64 rb_ptr, int len) |
| 196 | { |
Sunil Goutham | 668dda0 | 2015-12-07 10:30:33 +0530 | [diff] [blame] | 197 | void *data; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 198 | struct sk_buff *skb; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 199 | |
Sunil Goutham | 668dda0 | 2015-12-07 10:30:33 +0530 | [diff] [blame] | 200 | data = phys_to_virt(rb_ptr); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 201 | |
| 202 | /* Now build an skb to give to stack */ |
Sunil Goutham | 668dda0 | 2015-12-07 10:30:33 +0530 | [diff] [blame] | 203 | skb = build_skb(data, RCV_FRAG_LEN); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 204 | if (!skb) { |
Sunil Goutham | 668dda0 | 2015-12-07 10:30:33 +0530 | [diff] [blame] | 205 | put_page(virt_to_page(data)); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 206 | return NULL; |
| 207 | } |
| 208 | |
Sunil Goutham | 668dda0 | 2015-12-07 10:30:33 +0530 | [diff] [blame] | 209 | prefetch(skb->data); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 210 | return skb; |
| 211 | } |
| 212 | |
| 213 | /* Allocate RBDR ring and populate receive buffers */ |
| 214 | static int nicvf_init_rbdr(struct nicvf *nic, struct rbdr *rbdr, |
| 215 | int ring_len, int buf_size) |
| 216 | { |
| 217 | int idx; |
Sunil Goutham | 927987f | 2017-05-02 18:36:53 +0530 | [diff] [blame] | 218 | u64 rbuf; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 219 | struct rbdr_entry_t *desc; |
| 220 | int err; |
| 221 | |
| 222 | err = nicvf_alloc_q_desc_mem(nic, &rbdr->dmem, ring_len, |
| 223 | sizeof(struct rbdr_entry_t), |
| 224 | NICVF_RCV_BUF_ALIGN_BYTES); |
| 225 | if (err) |
| 226 | return err; |
| 227 | |
| 228 | rbdr->desc = rbdr->dmem.base; |
| 229 | /* Buffer size has to be in multiples of 128 bytes */ |
| 230 | rbdr->dma_size = buf_size; |
| 231 | rbdr->enable = true; |
| 232 | rbdr->thresh = RBDR_THRESH; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 233 | rbdr->head = 0; |
| 234 | rbdr->tail = 0; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 235 | |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 236 | /* Initialize page recycling stuff. |
| 237 | * |
| 238 | * Can't use single buffer per page especially with 64K pages. |
| 239 | * On embedded platforms i.e 81xx/83xx available memory itself |
| 240 | * is low and minimum ring size of RBDR is 8K, that takes away |
| 241 | * lots of memory. |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 242 | * |
| 243 | * But for XDP it has to be a single buffer per page. |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 244 | */ |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 245 | if (!nic->pnicvf->xdp_prog) { |
| 246 | rbdr->pgcnt = ring_len / (PAGE_SIZE / buf_size); |
| 247 | rbdr->is_xdp = false; |
| 248 | } else { |
| 249 | rbdr->pgcnt = ring_len; |
| 250 | rbdr->is_xdp = true; |
| 251 | } |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 252 | rbdr->pgcnt = roundup_pow_of_two(rbdr->pgcnt); |
| 253 | rbdr->pgcache = kzalloc(sizeof(*rbdr->pgcache) * |
| 254 | rbdr->pgcnt, GFP_KERNEL); |
| 255 | if (!rbdr->pgcache) |
| 256 | return -ENOMEM; |
| 257 | rbdr->pgidx = 0; |
| 258 | rbdr->pgalloc = 0; |
| 259 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 260 | nic->rb_page = NULL; |
| 261 | for (idx = 0; idx < ring_len; idx++) { |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 262 | err = nicvf_alloc_rcv_buffer(nic, rbdr, GFP_KERNEL, |
| 263 | RCV_FRAG_LEN, &rbuf); |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 264 | if (err) { |
| 265 | /* To free already allocated and mapped ones */ |
| 266 | rbdr->tail = idx - 1; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 267 | return err; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 268 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 269 | |
| 270 | desc = GET_RBDR_DESC(rbdr, idx); |
Sunil Goutham | 927987f | 2017-05-02 18:36:53 +0530 | [diff] [blame] | 271 | desc->buf_addr = rbuf & ~(NICVF_RCV_BUF_ALIGN_BYTES - 1); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 272 | } |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 273 | |
| 274 | nicvf_get_page(nic); |
| 275 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 276 | return 0; |
| 277 | } |
| 278 | |
| 279 | /* Free RBDR ring and its receive buffers */ |
| 280 | static void nicvf_free_rbdr(struct nicvf *nic, struct rbdr *rbdr) |
| 281 | { |
| 282 | int head, tail; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 283 | u64 buf_addr, phys_addr; |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 284 | struct pgcache *pgcache; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 285 | struct rbdr_entry_t *desc; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 286 | |
| 287 | if (!rbdr) |
| 288 | return; |
| 289 | |
| 290 | rbdr->enable = false; |
| 291 | if (!rbdr->dmem.base) |
| 292 | return; |
| 293 | |
| 294 | head = rbdr->head; |
| 295 | tail = rbdr->tail; |
| 296 | |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 297 | /* Release page references */ |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 298 | while (head != tail) { |
| 299 | desc = GET_RBDR_DESC(rbdr, head); |
Sunil Goutham | 5e848e4 | 2017-05-02 18:36:51 +0530 | [diff] [blame] | 300 | buf_addr = desc->buf_addr; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 301 | phys_addr = nicvf_iova_to_phys(nic, buf_addr); |
| 302 | dma_unmap_page_attrs(&nic->pdev->dev, buf_addr, RCV_FRAG_LEN, |
| 303 | DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC); |
| 304 | if (phys_addr) |
| 305 | put_page(virt_to_page(phys_to_virt(phys_addr))); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 306 | head++; |
| 307 | head &= (rbdr->dmem.q_len - 1); |
| 308 | } |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 309 | /* Release buffer of tail desc */ |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 310 | desc = GET_RBDR_DESC(rbdr, tail); |
Sunil Goutham | 5e848e4 | 2017-05-02 18:36:51 +0530 | [diff] [blame] | 311 | buf_addr = desc->buf_addr; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 312 | phys_addr = nicvf_iova_to_phys(nic, buf_addr); |
| 313 | dma_unmap_page_attrs(&nic->pdev->dev, buf_addr, RCV_FRAG_LEN, |
| 314 | DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC); |
| 315 | if (phys_addr) |
| 316 | put_page(virt_to_page(phys_to_virt(phys_addr))); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 317 | |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 318 | /* Sync page cache info */ |
| 319 | smp_rmb(); |
| 320 | |
| 321 | /* Release additional page references held for recycling */ |
| 322 | head = 0; |
| 323 | while (head < rbdr->pgcnt) { |
| 324 | pgcache = &rbdr->pgcache[head]; |
| 325 | if (pgcache->page && page_ref_count(pgcache->page) != 0) |
| 326 | put_page(pgcache->page); |
| 327 | head++; |
| 328 | } |
| 329 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 330 | /* Free RBDR ring */ |
| 331 | nicvf_free_q_desc_mem(nic, &rbdr->dmem); |
| 332 | } |
| 333 | |
| 334 | /* Refill receive buffer descriptors with new buffers. |
| 335 | */ |
Aleksey Makarov | fd7ec06 | 2015-06-02 11:00:23 -0700 | [diff] [blame] | 336 | static void nicvf_refill_rbdr(struct nicvf *nic, gfp_t gfp) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 337 | { |
| 338 | struct queue_set *qs = nic->qs; |
| 339 | int rbdr_idx = qs->rbdr_cnt; |
| 340 | int tail, qcount; |
| 341 | int refill_rb_cnt; |
| 342 | struct rbdr *rbdr; |
| 343 | struct rbdr_entry_t *desc; |
Sunil Goutham | 927987f | 2017-05-02 18:36:53 +0530 | [diff] [blame] | 344 | u64 rbuf; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 345 | int new_rb = 0; |
| 346 | |
| 347 | refill: |
| 348 | if (!rbdr_idx) |
| 349 | return; |
| 350 | rbdr_idx--; |
| 351 | rbdr = &qs->rbdr[rbdr_idx]; |
| 352 | /* Check if it's enabled */ |
| 353 | if (!rbdr->enable) |
| 354 | goto next_rbdr; |
| 355 | |
| 356 | /* Get no of desc's to be refilled */ |
| 357 | qcount = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_STATUS0, rbdr_idx); |
| 358 | qcount &= 0x7FFFF; |
| 359 | /* Doorbell can be ringed with a max of ring size minus 1 */ |
| 360 | if (qcount >= (qs->rbdr_len - 1)) |
| 361 | goto next_rbdr; |
| 362 | else |
| 363 | refill_rb_cnt = qs->rbdr_len - qcount - 1; |
| 364 | |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 365 | /* Sync page cache info */ |
| 366 | smp_rmb(); |
| 367 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 368 | /* Start filling descs from tail */ |
| 369 | tail = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_TAIL, rbdr_idx) >> 3; |
| 370 | while (refill_rb_cnt) { |
| 371 | tail++; |
| 372 | tail &= (rbdr->dmem.q_len - 1); |
| 373 | |
Sunil Goutham | 5836b44 | 2017-05-02 18:36:50 +0530 | [diff] [blame] | 374 | if (nicvf_alloc_rcv_buffer(nic, rbdr, gfp, RCV_FRAG_LEN, &rbuf)) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 375 | break; |
| 376 | |
| 377 | desc = GET_RBDR_DESC(rbdr, tail); |
Sunil Goutham | 927987f | 2017-05-02 18:36:53 +0530 | [diff] [blame] | 378 | desc->buf_addr = rbuf & ~(NICVF_RCV_BUF_ALIGN_BYTES - 1); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 379 | refill_rb_cnt--; |
| 380 | new_rb++; |
| 381 | } |
| 382 | |
Sunil Goutham | 5c2e26f | 2016-03-14 16:36:14 +0530 | [diff] [blame] | 383 | nicvf_get_page(nic); |
| 384 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 385 | /* make sure all memory stores are done before ringing doorbell */ |
| 386 | smp_wmb(); |
| 387 | |
| 388 | /* Check if buffer allocation failed */ |
| 389 | if (refill_rb_cnt) |
| 390 | nic->rb_alloc_fail = true; |
| 391 | else |
| 392 | nic->rb_alloc_fail = false; |
| 393 | |
| 394 | /* Notify HW */ |
| 395 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_DOOR, |
| 396 | rbdr_idx, new_rb); |
| 397 | next_rbdr: |
| 398 | /* Re-enable RBDR interrupts only if buffer allocation is success */ |
Sunil Goutham | c94acf8 | 2016-11-15 17:38:29 +0530 | [diff] [blame] | 399 | if (!nic->rb_alloc_fail && rbdr->enable && |
| 400 | netif_running(nic->pnicvf->netdev)) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 401 | nicvf_enable_intr(nic, NICVF_INTR_RBDR, rbdr_idx); |
| 402 | |
| 403 | if (rbdr_idx) |
| 404 | goto refill; |
| 405 | } |
| 406 | |
| 407 | /* Alloc rcv buffers in non-atomic mode for better success */ |
| 408 | void nicvf_rbdr_work(struct work_struct *work) |
| 409 | { |
| 410 | struct nicvf *nic = container_of(work, struct nicvf, rbdr_work.work); |
| 411 | |
| 412 | nicvf_refill_rbdr(nic, GFP_KERNEL); |
| 413 | if (nic->rb_alloc_fail) |
| 414 | schedule_delayed_work(&nic->rbdr_work, msecs_to_jiffies(10)); |
| 415 | else |
| 416 | nic->rb_work_scheduled = false; |
| 417 | } |
| 418 | |
| 419 | /* In Softirq context, alloc rcv buffers in atomic mode */ |
| 420 | void nicvf_rbdr_task(unsigned long data) |
| 421 | { |
| 422 | struct nicvf *nic = (struct nicvf *)data; |
| 423 | |
| 424 | nicvf_refill_rbdr(nic, GFP_ATOMIC); |
| 425 | if (nic->rb_alloc_fail) { |
| 426 | nic->rb_work_scheduled = true; |
| 427 | schedule_delayed_work(&nic->rbdr_work, msecs_to_jiffies(10)); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | /* Initialize completion queue */ |
| 432 | static int nicvf_init_cmp_queue(struct nicvf *nic, |
| 433 | struct cmp_queue *cq, int q_len) |
| 434 | { |
| 435 | int err; |
| 436 | |
| 437 | err = nicvf_alloc_q_desc_mem(nic, &cq->dmem, q_len, CMP_QUEUE_DESC_SIZE, |
| 438 | NICVF_CQ_BASE_ALIGN_BYTES); |
| 439 | if (err) |
| 440 | return err; |
| 441 | |
| 442 | cq->desc = cq->dmem.base; |
Sunil Goutham | b9687b4 | 2015-12-10 13:25:20 +0530 | [diff] [blame] | 443 | cq->thresh = pass1_silicon(nic->pdev) ? 0 : CMP_QUEUE_CQE_THRESH; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 444 | nic->cq_coalesce_usecs = (CMP_QUEUE_TIMER_THRESH * 0.05) - 1; |
| 445 | |
| 446 | return 0; |
| 447 | } |
| 448 | |
| 449 | static void nicvf_free_cmp_queue(struct nicvf *nic, struct cmp_queue *cq) |
| 450 | { |
| 451 | if (!cq) |
| 452 | return; |
| 453 | if (!cq->dmem.base) |
| 454 | return; |
| 455 | |
| 456 | nicvf_free_q_desc_mem(nic, &cq->dmem); |
| 457 | } |
| 458 | |
| 459 | /* Initialize transmit queue */ |
| 460 | static int nicvf_init_snd_queue(struct nicvf *nic, |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 461 | struct snd_queue *sq, int q_len, int qidx) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 462 | { |
| 463 | int err; |
| 464 | |
| 465 | err = nicvf_alloc_q_desc_mem(nic, &sq->dmem, q_len, SND_QUEUE_DESC_SIZE, |
| 466 | NICVF_SQ_BASE_ALIGN_BYTES); |
| 467 | if (err) |
| 468 | return err; |
| 469 | |
| 470 | sq->desc = sq->dmem.base; |
Aleksey Makarov | 86ace69 | 2015-06-02 11:00:27 -0700 | [diff] [blame] | 471 | sq->skbuff = kcalloc(q_len, sizeof(u64), GFP_KERNEL); |
Aleksey Makarov | fa1a6c9 | 2015-06-02 11:00:26 -0700 | [diff] [blame] | 472 | if (!sq->skbuff) |
| 473 | return -ENOMEM; |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 474 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 475 | sq->head = 0; |
| 476 | sq->tail = 0; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 477 | sq->thresh = SND_QUEUE_THRESH; |
| 478 | |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 479 | /* Check if this SQ is a XDP TX queue */ |
| 480 | if (nic->sqs_mode) |
| 481 | qidx += ((nic->sqs_id + 1) * MAX_SND_QUEUES_PER_QS); |
| 482 | if (qidx < nic->pnicvf->xdp_tx_queues) { |
| 483 | /* Alloc memory to save page pointers for XDP_TX */ |
| 484 | sq->xdp_page = kcalloc(q_len, sizeof(u64), GFP_KERNEL); |
| 485 | if (!sq->xdp_page) |
| 486 | return -ENOMEM; |
| 487 | sq->xdp_desc_cnt = 0; |
| 488 | sq->xdp_free_cnt = q_len - 1; |
| 489 | sq->is_xdp = true; |
| 490 | } else { |
| 491 | sq->xdp_page = NULL; |
| 492 | sq->xdp_desc_cnt = 0; |
| 493 | sq->xdp_free_cnt = 0; |
| 494 | sq->is_xdp = false; |
| 495 | |
| 496 | atomic_set(&sq->free_cnt, q_len - 1); |
| 497 | |
| 498 | /* Preallocate memory for TSO segment's header */ |
| 499 | sq->tso_hdrs = dma_alloc_coherent(&nic->pdev->dev, |
| 500 | q_len * TSO_HEADER_SIZE, |
| 501 | &sq->tso_hdrs_phys, |
| 502 | GFP_KERNEL); |
| 503 | if (!sq->tso_hdrs) |
| 504 | return -ENOMEM; |
| 505 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 506 | |
| 507 | return 0; |
| 508 | } |
| 509 | |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 510 | void nicvf_unmap_sndq_buffers(struct nicvf *nic, struct snd_queue *sq, |
| 511 | int hdr_sqe, u8 subdesc_cnt) |
| 512 | { |
| 513 | u8 idx; |
| 514 | struct sq_gather_subdesc *gather; |
| 515 | |
| 516 | /* Unmap DMA mapped skb data buffers */ |
| 517 | for (idx = 0; idx < subdesc_cnt; idx++) { |
| 518 | hdr_sqe++; |
| 519 | hdr_sqe &= (sq->dmem.q_len - 1); |
| 520 | gather = (struct sq_gather_subdesc *)GET_SQ_DESC(sq, hdr_sqe); |
| 521 | /* HW will ensure data coherency, CPU sync not required */ |
| 522 | dma_unmap_page_attrs(&nic->pdev->dev, gather->addr, |
| 523 | gather->size, DMA_TO_DEVICE, |
| 524 | DMA_ATTR_SKIP_CPU_SYNC); |
| 525 | } |
| 526 | } |
| 527 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 528 | static void nicvf_free_snd_queue(struct nicvf *nic, struct snd_queue *sq) |
| 529 | { |
Sunil Goutham | c94acf8 | 2016-11-15 17:38:29 +0530 | [diff] [blame] | 530 | struct sk_buff *skb; |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 531 | struct page *page; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 532 | struct sq_hdr_subdesc *hdr; |
| 533 | struct sq_hdr_subdesc *tso_sqe; |
Sunil Goutham | c94acf8 | 2016-11-15 17:38:29 +0530 | [diff] [blame] | 534 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 535 | if (!sq) |
| 536 | return; |
| 537 | if (!sq->dmem.base) |
| 538 | return; |
| 539 | |
| 540 | if (sq->tso_hdrs) |
Sunil Goutham | 143ceb0 | 2015-07-29 16:49:37 +0300 | [diff] [blame] | 541 | dma_free_coherent(&nic->pdev->dev, |
| 542 | sq->dmem.q_len * TSO_HEADER_SIZE, |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 543 | sq->tso_hdrs, sq->tso_hdrs_phys); |
| 544 | |
Sunil Goutham | c94acf8 | 2016-11-15 17:38:29 +0530 | [diff] [blame] | 545 | /* Free pending skbs in the queue */ |
| 546 | smp_rmb(); |
| 547 | while (sq->head != sq->tail) { |
| 548 | skb = (struct sk_buff *)sq->skbuff[sq->head]; |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 549 | if (!skb || !sq->xdp_page) |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 550 | goto next; |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 551 | |
| 552 | page = (struct page *)sq->xdp_page[sq->head]; |
| 553 | if (!page) |
| 554 | goto next; |
| 555 | else |
| 556 | put_page(page); |
| 557 | |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 558 | hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, sq->head); |
| 559 | /* Check for dummy descriptor used for HW TSO offload on 88xx */ |
| 560 | if (hdr->dont_send) { |
| 561 | /* Get actual TSO descriptors and unmap them */ |
| 562 | tso_sqe = |
| 563 | (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, hdr->rsvd2); |
| 564 | nicvf_unmap_sndq_buffers(nic, sq, hdr->rsvd2, |
| 565 | tso_sqe->subdesc_cnt); |
| 566 | } else { |
| 567 | nicvf_unmap_sndq_buffers(nic, sq, sq->head, |
| 568 | hdr->subdesc_cnt); |
| 569 | } |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 570 | if (skb) |
| 571 | dev_kfree_skb_any(skb); |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 572 | next: |
Sunil Goutham | c94acf8 | 2016-11-15 17:38:29 +0530 | [diff] [blame] | 573 | sq->head++; |
| 574 | sq->head &= (sq->dmem.q_len - 1); |
| 575 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 576 | kfree(sq->skbuff); |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 577 | kfree(sq->xdp_page); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 578 | nicvf_free_q_desc_mem(nic, &sq->dmem); |
| 579 | } |
| 580 | |
| 581 | static void nicvf_reclaim_snd_queue(struct nicvf *nic, |
| 582 | struct queue_set *qs, int qidx) |
| 583 | { |
| 584 | /* Disable send queue */ |
| 585 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, 0); |
| 586 | /* Check if SQ is stopped */ |
| 587 | if (nicvf_poll_reg(nic, qidx, NIC_QSET_SQ_0_7_STATUS, 21, 1, 0x01)) |
| 588 | return; |
| 589 | /* Reset send queue */ |
| 590 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, NICVF_SQ_RESET); |
| 591 | } |
| 592 | |
| 593 | static void nicvf_reclaim_rcv_queue(struct nicvf *nic, |
| 594 | struct queue_set *qs, int qidx) |
| 595 | { |
| 596 | union nic_mbx mbx = {}; |
| 597 | |
| 598 | /* Make sure all packets in the pipeline are written back into mem */ |
| 599 | mbx.msg.msg = NIC_MBOX_MSG_RQ_SW_SYNC; |
| 600 | nicvf_send_msg_to_pf(nic, &mbx); |
| 601 | } |
| 602 | |
| 603 | static void nicvf_reclaim_cmp_queue(struct nicvf *nic, |
| 604 | struct queue_set *qs, int qidx) |
| 605 | { |
| 606 | /* Disable timer threshold (doesn't get reset upon CQ reset */ |
| 607 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG2, qidx, 0); |
| 608 | /* Disable completion queue */ |
| 609 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, 0); |
| 610 | /* Reset completion queue */ |
| 611 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, NICVF_CQ_RESET); |
| 612 | } |
| 613 | |
| 614 | static void nicvf_reclaim_rbdr(struct nicvf *nic, |
| 615 | struct rbdr *rbdr, int qidx) |
| 616 | { |
| 617 | u64 tmp, fifo_state; |
| 618 | int timeout = 10; |
| 619 | |
| 620 | /* Save head and tail pointers for feeing up buffers */ |
| 621 | rbdr->head = nicvf_queue_reg_read(nic, |
| 622 | NIC_QSET_RBDR_0_1_HEAD, |
| 623 | qidx) >> 3; |
| 624 | rbdr->tail = nicvf_queue_reg_read(nic, |
| 625 | NIC_QSET_RBDR_0_1_TAIL, |
| 626 | qidx) >> 3; |
| 627 | |
| 628 | /* If RBDR FIFO is in 'FAIL' state then do a reset first |
| 629 | * before relaiming. |
| 630 | */ |
| 631 | fifo_state = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_STATUS0, qidx); |
| 632 | if (((fifo_state >> 62) & 0x03) == 0x3) |
| 633 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, |
| 634 | qidx, NICVF_RBDR_RESET); |
| 635 | |
| 636 | /* Disable RBDR */ |
| 637 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, qidx, 0); |
| 638 | if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x00)) |
| 639 | return; |
| 640 | while (1) { |
| 641 | tmp = nicvf_queue_reg_read(nic, |
| 642 | NIC_QSET_RBDR_0_1_PREFETCH_STATUS, |
| 643 | qidx); |
| 644 | if ((tmp & 0xFFFFFFFF) == ((tmp >> 32) & 0xFFFFFFFF)) |
| 645 | break; |
| 646 | usleep_range(1000, 2000); |
| 647 | timeout--; |
| 648 | if (!timeout) { |
| 649 | netdev_err(nic->netdev, |
| 650 | "Failed polling on prefetch status\n"); |
| 651 | return; |
| 652 | } |
| 653 | } |
| 654 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, |
| 655 | qidx, NICVF_RBDR_RESET); |
| 656 | |
| 657 | if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x02)) |
| 658 | return; |
| 659 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, qidx, 0x00); |
| 660 | if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x00)) |
| 661 | return; |
| 662 | } |
| 663 | |
Sunil Goutham | aa2e259 | 2015-08-30 12:29:13 +0300 | [diff] [blame] | 664 | void nicvf_config_vlan_stripping(struct nicvf *nic, netdev_features_t features) |
| 665 | { |
| 666 | u64 rq_cfg; |
| 667 | int sqs; |
| 668 | |
| 669 | rq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_RQ_GEN_CFG, 0); |
| 670 | |
| 671 | /* Enable first VLAN stripping */ |
| 672 | if (features & NETIF_F_HW_VLAN_CTAG_RX) |
| 673 | rq_cfg |= (1ULL << 25); |
| 674 | else |
| 675 | rq_cfg &= ~(1ULL << 25); |
| 676 | nicvf_queue_reg_write(nic, NIC_QSET_RQ_GEN_CFG, 0, rq_cfg); |
| 677 | |
| 678 | /* Configure Secondary Qsets, if any */ |
| 679 | for (sqs = 0; sqs < nic->sqs_count; sqs++) |
| 680 | if (nic->snicvf[sqs]) |
| 681 | nicvf_queue_reg_write(nic->snicvf[sqs], |
| 682 | NIC_QSET_RQ_GEN_CFG, 0, rq_cfg); |
| 683 | } |
| 684 | |
Jerin Jacob | 3458c40 | 2016-08-12 16:51:39 +0530 | [diff] [blame] | 685 | static void nicvf_reset_rcv_queue_stats(struct nicvf *nic) |
| 686 | { |
| 687 | union nic_mbx mbx = {}; |
| 688 | |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 689 | /* Reset all RQ/SQ and VF stats */ |
Jerin Jacob | 3458c40 | 2016-08-12 16:51:39 +0530 | [diff] [blame] | 690 | mbx.reset_stat.msg = NIC_MBOX_MSG_RESET_STAT_COUNTER; |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 691 | mbx.reset_stat.rx_stat_mask = 0x3FFF; |
| 692 | mbx.reset_stat.tx_stat_mask = 0x1F; |
Jerin Jacob | 3458c40 | 2016-08-12 16:51:39 +0530 | [diff] [blame] | 693 | mbx.reset_stat.rq_stat_mask = 0xFFFF; |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 694 | mbx.reset_stat.sq_stat_mask = 0xFFFF; |
Jerin Jacob | 3458c40 | 2016-08-12 16:51:39 +0530 | [diff] [blame] | 695 | nicvf_send_msg_to_pf(nic, &mbx); |
| 696 | } |
| 697 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 698 | /* Configures receive queue */ |
| 699 | static void nicvf_rcv_queue_config(struct nicvf *nic, struct queue_set *qs, |
| 700 | int qidx, bool enable) |
| 701 | { |
| 702 | union nic_mbx mbx = {}; |
| 703 | struct rcv_queue *rq; |
| 704 | struct rq_cfg rq_cfg; |
| 705 | |
| 706 | rq = &qs->rq[qidx]; |
| 707 | rq->enable = enable; |
| 708 | |
| 709 | /* Disable receive queue */ |
| 710 | nicvf_queue_reg_write(nic, NIC_QSET_RQ_0_7_CFG, qidx, 0); |
| 711 | |
| 712 | if (!rq->enable) { |
| 713 | nicvf_reclaim_rcv_queue(nic, qs, qidx); |
| 714 | return; |
| 715 | } |
| 716 | |
| 717 | rq->cq_qs = qs->vnic_id; |
| 718 | rq->cq_idx = qidx; |
| 719 | rq->start_rbdr_qs = qs->vnic_id; |
| 720 | rq->start_qs_rbdr_idx = qs->rbdr_cnt - 1; |
| 721 | rq->cont_rbdr_qs = qs->vnic_id; |
| 722 | rq->cont_qs_rbdr_idx = qs->rbdr_cnt - 1; |
| 723 | /* all writes of RBDR data to be loaded into L2 Cache as well*/ |
| 724 | rq->caching = 1; |
| 725 | |
| 726 | /* Send a mailbox msg to PF to config RQ */ |
| 727 | mbx.rq.msg = NIC_MBOX_MSG_RQ_CFG; |
| 728 | mbx.rq.qs_num = qs->vnic_id; |
| 729 | mbx.rq.rq_num = qidx; |
| 730 | mbx.rq.cfg = (rq->caching << 26) | (rq->cq_qs << 19) | |
| 731 | (rq->cq_idx << 16) | (rq->cont_rbdr_qs << 9) | |
| 732 | (rq->cont_qs_rbdr_idx << 8) | |
| 733 | (rq->start_rbdr_qs << 1) | (rq->start_qs_rbdr_idx); |
| 734 | nicvf_send_msg_to_pf(nic, &mbx); |
| 735 | |
| 736 | mbx.rq.msg = NIC_MBOX_MSG_RQ_BP_CFG; |
Sunil Goutham | d5b2d7a | 2016-11-24 14:48:02 +0530 | [diff] [blame] | 737 | mbx.rq.cfg = BIT_ULL(63) | BIT_ULL(62) | |
| 738 | (RQ_PASS_RBDR_LVL << 16) | (RQ_PASS_CQ_LVL << 8) | |
| 739 | (qs->vnic_id << 0); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 740 | nicvf_send_msg_to_pf(nic, &mbx); |
| 741 | |
| 742 | /* RQ drop config |
| 743 | * Enable CQ drop to reserve sufficient CQEs for all tx packets |
| 744 | */ |
| 745 | mbx.rq.msg = NIC_MBOX_MSG_RQ_DROP_CFG; |
Sunil Goutham | d5b2d7a | 2016-11-24 14:48:02 +0530 | [diff] [blame] | 746 | mbx.rq.cfg = BIT_ULL(63) | BIT_ULL(62) | |
| 747 | (RQ_PASS_RBDR_LVL << 40) | (RQ_DROP_RBDR_LVL << 32) | |
| 748 | (RQ_PASS_CQ_LVL << 16) | (RQ_DROP_CQ_LVL << 8); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 749 | nicvf_send_msg_to_pf(nic, &mbx); |
| 750 | |
Sunil Goutham | cadcf95 | 2016-11-15 17:37:54 +0530 | [diff] [blame] | 751 | if (!nic->sqs_mode && (qidx == 0)) { |
Thanneeru Srinivasulu | 36fa35d | 2017-03-07 18:09:11 +0530 | [diff] [blame] | 752 | /* Enable checking L3/L4 length and TCP/UDP checksums |
| 753 | * Also allow IPv6 pkts with zero UDP checksum. |
| 754 | */ |
Sunil Goutham | cadcf95 | 2016-11-15 17:37:54 +0530 | [diff] [blame] | 755 | nicvf_queue_reg_write(nic, NIC_QSET_RQ_GEN_CFG, 0, |
Thanneeru Srinivasulu | 36fa35d | 2017-03-07 18:09:11 +0530 | [diff] [blame] | 756 | (BIT(24) | BIT(23) | BIT(21) | BIT(20))); |
Sunil Goutham | aa2e259 | 2015-08-30 12:29:13 +0300 | [diff] [blame] | 757 | nicvf_config_vlan_stripping(nic, nic->netdev->features); |
Sunil Goutham | cadcf95 | 2016-11-15 17:37:54 +0530 | [diff] [blame] | 758 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 759 | |
| 760 | /* Enable Receive queue */ |
xypron.glpk@gmx.de | 161de2c | 2016-05-09 00:46:18 +0200 | [diff] [blame] | 761 | memset(&rq_cfg, 0, sizeof(struct rq_cfg)); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 762 | rq_cfg.ena = 1; |
| 763 | rq_cfg.tcp_ena = 0; |
| 764 | nicvf_queue_reg_write(nic, NIC_QSET_RQ_0_7_CFG, qidx, *(u64 *)&rq_cfg); |
| 765 | } |
| 766 | |
| 767 | /* Configures completion queue */ |
| 768 | void nicvf_cmp_queue_config(struct nicvf *nic, struct queue_set *qs, |
| 769 | int qidx, bool enable) |
| 770 | { |
| 771 | struct cmp_queue *cq; |
| 772 | struct cq_cfg cq_cfg; |
| 773 | |
| 774 | cq = &qs->cq[qidx]; |
| 775 | cq->enable = enable; |
| 776 | |
| 777 | if (!cq->enable) { |
| 778 | nicvf_reclaim_cmp_queue(nic, qs, qidx); |
| 779 | return; |
| 780 | } |
| 781 | |
| 782 | /* Reset completion queue */ |
| 783 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, NICVF_CQ_RESET); |
| 784 | |
| 785 | if (!cq->enable) |
| 786 | return; |
| 787 | |
| 788 | spin_lock_init(&cq->lock); |
| 789 | /* Set completion queue base address */ |
| 790 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_BASE, |
| 791 | qidx, (u64)(cq->dmem.phys_base)); |
| 792 | |
| 793 | /* Enable Completion queue */ |
xypron.glpk@gmx.de | 161de2c | 2016-05-09 00:46:18 +0200 | [diff] [blame] | 794 | memset(&cq_cfg, 0, sizeof(struct cq_cfg)); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 795 | cq_cfg.ena = 1; |
| 796 | cq_cfg.reset = 0; |
| 797 | cq_cfg.caching = 0; |
Sunil Goutham | fff4ffd | 2017-01-25 17:36:23 +0530 | [diff] [blame] | 798 | cq_cfg.qsize = ilog2(qs->cq_len >> 10); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 799 | cq_cfg.avg_con = 0; |
| 800 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, *(u64 *)&cq_cfg); |
| 801 | |
| 802 | /* Set threshold value for interrupt generation */ |
| 803 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_THRESH, qidx, cq->thresh); |
| 804 | nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG2, |
Sunil Goutham | 006394a | 2015-12-02 15:36:15 +0530 | [diff] [blame] | 805 | qidx, CMP_QUEUE_TIMER_THRESH); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 806 | } |
| 807 | |
| 808 | /* Configures transmit queue */ |
| 809 | static void nicvf_snd_queue_config(struct nicvf *nic, struct queue_set *qs, |
| 810 | int qidx, bool enable) |
| 811 | { |
| 812 | union nic_mbx mbx = {}; |
| 813 | struct snd_queue *sq; |
| 814 | struct sq_cfg sq_cfg; |
| 815 | |
| 816 | sq = &qs->sq[qidx]; |
| 817 | sq->enable = enable; |
| 818 | |
| 819 | if (!sq->enable) { |
| 820 | nicvf_reclaim_snd_queue(nic, qs, qidx); |
| 821 | return; |
| 822 | } |
| 823 | |
| 824 | /* Reset send queue */ |
| 825 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, NICVF_SQ_RESET); |
| 826 | |
| 827 | sq->cq_qs = qs->vnic_id; |
| 828 | sq->cq_idx = qidx; |
| 829 | |
| 830 | /* Send a mailbox msg to PF to config SQ */ |
| 831 | mbx.sq.msg = NIC_MBOX_MSG_SQ_CFG; |
| 832 | mbx.sq.qs_num = qs->vnic_id; |
| 833 | mbx.sq.sq_num = qidx; |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 834 | mbx.sq.sqs_mode = nic->sqs_mode; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 835 | mbx.sq.cfg = (sq->cq_qs << 3) | sq->cq_idx; |
| 836 | nicvf_send_msg_to_pf(nic, &mbx); |
| 837 | |
| 838 | /* Set queue base address */ |
| 839 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_BASE, |
| 840 | qidx, (u64)(sq->dmem.phys_base)); |
| 841 | |
| 842 | /* Enable send queue & set queue size */ |
xypron.glpk@gmx.de | 161de2c | 2016-05-09 00:46:18 +0200 | [diff] [blame] | 843 | memset(&sq_cfg, 0, sizeof(struct sq_cfg)); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 844 | sq_cfg.ena = 1; |
| 845 | sq_cfg.reset = 0; |
| 846 | sq_cfg.ldwb = 0; |
Sunil Goutham | fff4ffd | 2017-01-25 17:36:23 +0530 | [diff] [blame] | 847 | sq_cfg.qsize = ilog2(qs->sq_len >> 10); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 848 | sq_cfg.tstmp_bgx_intf = 0; |
Sunil Goutham | fff4ffd | 2017-01-25 17:36:23 +0530 | [diff] [blame] | 849 | /* CQ's level at which HW will stop processing SQEs to avoid |
| 850 | * transmitting a pkt with no space in CQ to post CQE_TX. |
| 851 | */ |
| 852 | sq_cfg.cq_limit = (CMP_QUEUE_PIPELINE_RSVD * 256) / qs->cq_len; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 853 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, *(u64 *)&sq_cfg); |
| 854 | |
| 855 | /* Set threshold value for interrupt generation */ |
| 856 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_THRESH, qidx, sq->thresh); |
| 857 | |
| 858 | /* Set queue:cpu affinity for better load distribution */ |
| 859 | if (cpu_online(qidx)) { |
| 860 | cpumask_set_cpu(qidx, &sq->affinity_mask); |
| 861 | netif_set_xps_queue(nic->netdev, |
| 862 | &sq->affinity_mask, qidx); |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | /* Configures receive buffer descriptor ring */ |
| 867 | static void nicvf_rbdr_config(struct nicvf *nic, struct queue_set *qs, |
| 868 | int qidx, bool enable) |
| 869 | { |
| 870 | struct rbdr *rbdr; |
| 871 | struct rbdr_cfg rbdr_cfg; |
| 872 | |
| 873 | rbdr = &qs->rbdr[qidx]; |
| 874 | nicvf_reclaim_rbdr(nic, rbdr, qidx); |
| 875 | if (!enable) |
| 876 | return; |
| 877 | |
| 878 | /* Set descriptor base address */ |
| 879 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_BASE, |
| 880 | qidx, (u64)(rbdr->dmem.phys_base)); |
| 881 | |
| 882 | /* Enable RBDR & set queue size */ |
| 883 | /* Buffer size should be in multiples of 128 bytes */ |
xypron.glpk@gmx.de | 161de2c | 2016-05-09 00:46:18 +0200 | [diff] [blame] | 884 | memset(&rbdr_cfg, 0, sizeof(struct rbdr_cfg)); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 885 | rbdr_cfg.ena = 1; |
| 886 | rbdr_cfg.reset = 0; |
| 887 | rbdr_cfg.ldwb = 0; |
| 888 | rbdr_cfg.qsize = RBDR_SIZE; |
| 889 | rbdr_cfg.avg_con = 0; |
| 890 | rbdr_cfg.lines = rbdr->dma_size / 128; |
| 891 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, |
| 892 | qidx, *(u64 *)&rbdr_cfg); |
| 893 | |
| 894 | /* Notify HW */ |
| 895 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_DOOR, |
| 896 | qidx, qs->rbdr_len - 1); |
| 897 | |
| 898 | /* Set threshold value for interrupt generation */ |
| 899 | nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_THRESH, |
| 900 | qidx, rbdr->thresh - 1); |
| 901 | } |
| 902 | |
| 903 | /* Requests PF to assign and enable Qset */ |
| 904 | void nicvf_qset_config(struct nicvf *nic, bool enable) |
| 905 | { |
| 906 | union nic_mbx mbx = {}; |
| 907 | struct queue_set *qs = nic->qs; |
| 908 | struct qs_cfg *qs_cfg; |
| 909 | |
| 910 | if (!qs) { |
| 911 | netdev_warn(nic->netdev, |
| 912 | "Qset is still not allocated, don't init queues\n"); |
| 913 | return; |
| 914 | } |
| 915 | |
| 916 | qs->enable = enable; |
| 917 | qs->vnic_id = nic->vf_id; |
| 918 | |
| 919 | /* Send a mailbox msg to PF to config Qset */ |
| 920 | mbx.qs.msg = NIC_MBOX_MSG_QS_CFG; |
| 921 | mbx.qs.num = qs->vnic_id; |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 922 | mbx.qs.sqs_count = nic->sqs_count; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 923 | |
| 924 | mbx.qs.cfg = 0; |
| 925 | qs_cfg = (struct qs_cfg *)&mbx.qs.cfg; |
| 926 | if (qs->enable) { |
| 927 | qs_cfg->ena = 1; |
| 928 | #ifdef __BIG_ENDIAN |
| 929 | qs_cfg->be = 1; |
| 930 | #endif |
| 931 | qs_cfg->vnic = qs->vnic_id; |
| 932 | } |
| 933 | nicvf_send_msg_to_pf(nic, &mbx); |
| 934 | } |
| 935 | |
| 936 | static void nicvf_free_resources(struct nicvf *nic) |
| 937 | { |
| 938 | int qidx; |
| 939 | struct queue_set *qs = nic->qs; |
| 940 | |
| 941 | /* Free receive buffer descriptor ring */ |
| 942 | for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) |
| 943 | nicvf_free_rbdr(nic, &qs->rbdr[qidx]); |
| 944 | |
| 945 | /* Free completion queue */ |
| 946 | for (qidx = 0; qidx < qs->cq_cnt; qidx++) |
| 947 | nicvf_free_cmp_queue(nic, &qs->cq[qidx]); |
| 948 | |
| 949 | /* Free send queue */ |
| 950 | for (qidx = 0; qidx < qs->sq_cnt; qidx++) |
| 951 | nicvf_free_snd_queue(nic, &qs->sq[qidx]); |
| 952 | } |
| 953 | |
| 954 | static int nicvf_alloc_resources(struct nicvf *nic) |
| 955 | { |
| 956 | int qidx; |
| 957 | struct queue_set *qs = nic->qs; |
| 958 | |
| 959 | /* Alloc receive buffer descriptor ring */ |
| 960 | for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) { |
| 961 | if (nicvf_init_rbdr(nic, &qs->rbdr[qidx], qs->rbdr_len, |
| 962 | DMA_BUFFER_LEN)) |
| 963 | goto alloc_fail; |
| 964 | } |
| 965 | |
| 966 | /* Alloc send queue */ |
| 967 | for (qidx = 0; qidx < qs->sq_cnt; qidx++) { |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 968 | if (nicvf_init_snd_queue(nic, &qs->sq[qidx], qs->sq_len, qidx)) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 969 | goto alloc_fail; |
| 970 | } |
| 971 | |
| 972 | /* Alloc completion queue */ |
| 973 | for (qidx = 0; qidx < qs->cq_cnt; qidx++) { |
| 974 | if (nicvf_init_cmp_queue(nic, &qs->cq[qidx], qs->cq_len)) |
| 975 | goto alloc_fail; |
| 976 | } |
| 977 | |
| 978 | return 0; |
| 979 | alloc_fail: |
| 980 | nicvf_free_resources(nic); |
| 981 | return -ENOMEM; |
| 982 | } |
| 983 | |
| 984 | int nicvf_set_qset_resources(struct nicvf *nic) |
| 985 | { |
| 986 | struct queue_set *qs; |
| 987 | |
| 988 | qs = devm_kzalloc(&nic->pdev->dev, sizeof(*qs), GFP_KERNEL); |
| 989 | if (!qs) |
| 990 | return -ENOMEM; |
| 991 | nic->qs = qs; |
| 992 | |
| 993 | /* Set count of each queue */ |
Sunil Goutham | 3a397eb | 2016-08-12 16:51:27 +0530 | [diff] [blame] | 994 | qs->rbdr_cnt = DEFAULT_RBDR_CNT; |
| 995 | qs->rq_cnt = min_t(u8, MAX_RCV_QUEUES_PER_QS, num_online_cpus()); |
| 996 | qs->sq_cnt = min_t(u8, MAX_SND_QUEUES_PER_QS, num_online_cpus()); |
| 997 | qs->cq_cnt = max_t(u8, qs->rq_cnt, qs->sq_cnt); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 998 | |
| 999 | /* Set queue lengths */ |
| 1000 | qs->rbdr_len = RCV_BUF_COUNT; |
| 1001 | qs->sq_len = SND_QUEUE_LEN; |
| 1002 | qs->cq_len = CMP_QUEUE_LEN; |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 1003 | |
| 1004 | nic->rx_queues = qs->rq_cnt; |
| 1005 | nic->tx_queues = qs->sq_cnt; |
Sunil Goutham | 05c773f | 2017-05-02 18:36:54 +0530 | [diff] [blame] | 1006 | nic->xdp_tx_queues = 0; |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 1007 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1008 | return 0; |
| 1009 | } |
| 1010 | |
| 1011 | int nicvf_config_data_transfer(struct nicvf *nic, bool enable) |
| 1012 | { |
| 1013 | bool disable = false; |
| 1014 | struct queue_set *qs = nic->qs; |
Sunil Goutham | fff4ffd | 2017-01-25 17:36:23 +0530 | [diff] [blame] | 1015 | struct queue_set *pqs = nic->pnicvf->qs; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1016 | int qidx; |
| 1017 | |
| 1018 | if (!qs) |
| 1019 | return 0; |
| 1020 | |
Sunil Goutham | fff4ffd | 2017-01-25 17:36:23 +0530 | [diff] [blame] | 1021 | /* Take primary VF's queue lengths. |
| 1022 | * This is needed to take queue lengths set from ethtool |
| 1023 | * into consideration. |
| 1024 | */ |
| 1025 | if (nic->sqs_mode && pqs) { |
| 1026 | qs->cq_len = pqs->cq_len; |
| 1027 | qs->sq_len = pqs->sq_len; |
| 1028 | } |
| 1029 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1030 | if (enable) { |
| 1031 | if (nicvf_alloc_resources(nic)) |
| 1032 | return -ENOMEM; |
| 1033 | |
| 1034 | for (qidx = 0; qidx < qs->sq_cnt; qidx++) |
| 1035 | nicvf_snd_queue_config(nic, qs, qidx, enable); |
| 1036 | for (qidx = 0; qidx < qs->cq_cnt; qidx++) |
| 1037 | nicvf_cmp_queue_config(nic, qs, qidx, enable); |
| 1038 | for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) |
| 1039 | nicvf_rbdr_config(nic, qs, qidx, enable); |
| 1040 | for (qidx = 0; qidx < qs->rq_cnt; qidx++) |
| 1041 | nicvf_rcv_queue_config(nic, qs, qidx, enable); |
| 1042 | } else { |
| 1043 | for (qidx = 0; qidx < qs->rq_cnt; qidx++) |
| 1044 | nicvf_rcv_queue_config(nic, qs, qidx, disable); |
| 1045 | for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) |
| 1046 | nicvf_rbdr_config(nic, qs, qidx, disable); |
| 1047 | for (qidx = 0; qidx < qs->sq_cnt; qidx++) |
| 1048 | nicvf_snd_queue_config(nic, qs, qidx, disable); |
| 1049 | for (qidx = 0; qidx < qs->cq_cnt; qidx++) |
| 1050 | nicvf_cmp_queue_config(nic, qs, qidx, disable); |
| 1051 | |
| 1052 | nicvf_free_resources(nic); |
| 1053 | } |
| 1054 | |
Jerin Jacob | 3458c40 | 2016-08-12 16:51:39 +0530 | [diff] [blame] | 1055 | /* Reset RXQ's stats. |
| 1056 | * SQ's stats will get reset automatically once SQ is reset. |
| 1057 | */ |
| 1058 | nicvf_reset_rcv_queue_stats(nic); |
| 1059 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1060 | return 0; |
| 1061 | } |
| 1062 | |
| 1063 | /* Get a free desc from SQ |
| 1064 | * returns descriptor ponter & descriptor number |
| 1065 | */ |
| 1066 | static inline int nicvf_get_sq_desc(struct snd_queue *sq, int desc_cnt) |
| 1067 | { |
| 1068 | int qentry; |
| 1069 | |
| 1070 | qentry = sq->tail; |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 1071 | if (!sq->is_xdp) |
| 1072 | atomic_sub(desc_cnt, &sq->free_cnt); |
| 1073 | else |
| 1074 | sq->xdp_free_cnt -= desc_cnt; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1075 | sq->tail += desc_cnt; |
| 1076 | sq->tail &= (sq->dmem.q_len - 1); |
| 1077 | |
| 1078 | return qentry; |
| 1079 | } |
| 1080 | |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1081 | /* Rollback to previous tail pointer when descriptors not used */ |
| 1082 | static inline void nicvf_rollback_sq_desc(struct snd_queue *sq, |
| 1083 | int qentry, int desc_cnt) |
| 1084 | { |
| 1085 | sq->tail = qentry; |
| 1086 | atomic_add(desc_cnt, &sq->free_cnt); |
| 1087 | } |
| 1088 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1089 | /* Free descriptor back to SQ for future use */ |
| 1090 | void nicvf_put_sq_desc(struct snd_queue *sq, int desc_cnt) |
| 1091 | { |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 1092 | if (!sq->is_xdp) |
| 1093 | atomic_add(desc_cnt, &sq->free_cnt); |
| 1094 | else |
| 1095 | sq->xdp_free_cnt += desc_cnt; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1096 | sq->head += desc_cnt; |
| 1097 | sq->head &= (sq->dmem.q_len - 1); |
| 1098 | } |
| 1099 | |
| 1100 | static inline int nicvf_get_nxt_sqentry(struct snd_queue *sq, int qentry) |
| 1101 | { |
| 1102 | qentry++; |
| 1103 | qentry &= (sq->dmem.q_len - 1); |
| 1104 | return qentry; |
| 1105 | } |
| 1106 | |
| 1107 | void nicvf_sq_enable(struct nicvf *nic, struct snd_queue *sq, int qidx) |
| 1108 | { |
| 1109 | u64 sq_cfg; |
| 1110 | |
| 1111 | sq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_CFG, qidx); |
| 1112 | sq_cfg |= NICVF_SQ_EN; |
| 1113 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, sq_cfg); |
| 1114 | /* Ring doorbell so that H/W restarts processing SQEs */ |
| 1115 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR, qidx, 0); |
| 1116 | } |
| 1117 | |
| 1118 | void nicvf_sq_disable(struct nicvf *nic, int qidx) |
| 1119 | { |
| 1120 | u64 sq_cfg; |
| 1121 | |
| 1122 | sq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_CFG, qidx); |
| 1123 | sq_cfg &= ~NICVF_SQ_EN; |
| 1124 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, sq_cfg); |
| 1125 | } |
| 1126 | |
| 1127 | void nicvf_sq_free_used_descs(struct net_device *netdev, struct snd_queue *sq, |
| 1128 | int qidx) |
| 1129 | { |
| 1130 | u64 head, tail; |
| 1131 | struct sk_buff *skb; |
| 1132 | struct nicvf *nic = netdev_priv(netdev); |
| 1133 | struct sq_hdr_subdesc *hdr; |
| 1134 | |
| 1135 | head = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_HEAD, qidx) >> 4; |
| 1136 | tail = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_TAIL, qidx) >> 4; |
| 1137 | while (sq->head != head) { |
| 1138 | hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, sq->head); |
| 1139 | if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER) { |
| 1140 | nicvf_put_sq_desc(sq, 1); |
| 1141 | continue; |
| 1142 | } |
| 1143 | skb = (struct sk_buff *)sq->skbuff[sq->head]; |
Sunil Goutham | 143ceb0 | 2015-07-29 16:49:37 +0300 | [diff] [blame] | 1144 | if (skb) |
| 1145 | dev_kfree_skb_any(skb); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1146 | atomic64_add(1, (atomic64_t *)&netdev->stats.tx_packets); |
| 1147 | atomic64_add(hdr->tot_len, |
| 1148 | (atomic64_t *)&netdev->stats.tx_bytes); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1149 | nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1); |
| 1150 | } |
| 1151 | } |
| 1152 | |
Sunil Goutham | 16f2bcc | 2017-05-02 18:36:56 +0530 | [diff] [blame^] | 1153 | /* XDP Transmit APIs */ |
| 1154 | void nicvf_xdp_sq_doorbell(struct nicvf *nic, |
| 1155 | struct snd_queue *sq, int sq_num) |
| 1156 | { |
| 1157 | if (!sq->xdp_desc_cnt) |
| 1158 | return; |
| 1159 | |
| 1160 | /* make sure all memory stores are done before ringing doorbell */ |
| 1161 | wmb(); |
| 1162 | |
| 1163 | /* Inform HW to xmit all TSO segments */ |
| 1164 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR, |
| 1165 | sq_num, sq->xdp_desc_cnt); |
| 1166 | sq->xdp_desc_cnt = 0; |
| 1167 | } |
| 1168 | |
| 1169 | static inline void |
| 1170 | nicvf_xdp_sq_add_hdr_subdesc(struct snd_queue *sq, int qentry, |
| 1171 | int subdesc_cnt, u64 data, int len) |
| 1172 | { |
| 1173 | struct sq_hdr_subdesc *hdr; |
| 1174 | |
| 1175 | hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry); |
| 1176 | memset(hdr, 0, SND_QUEUE_DESC_SIZE); |
| 1177 | hdr->subdesc_type = SQ_DESC_TYPE_HEADER; |
| 1178 | hdr->subdesc_cnt = subdesc_cnt; |
| 1179 | hdr->tot_len = len; |
| 1180 | hdr->post_cqe = 1; |
| 1181 | sq->xdp_page[qentry] = (u64)virt_to_page((void *)data); |
| 1182 | } |
| 1183 | |
| 1184 | int nicvf_xdp_sq_append_pkt(struct nicvf *nic, struct snd_queue *sq, |
| 1185 | u64 bufaddr, u64 dma_addr, u16 len) |
| 1186 | { |
| 1187 | int subdesc_cnt = MIN_SQ_DESC_PER_PKT_XMIT; |
| 1188 | int qentry; |
| 1189 | |
| 1190 | if (subdesc_cnt > sq->xdp_free_cnt) |
| 1191 | return 0; |
| 1192 | |
| 1193 | qentry = nicvf_get_sq_desc(sq, subdesc_cnt); |
| 1194 | |
| 1195 | nicvf_xdp_sq_add_hdr_subdesc(sq, qentry, subdesc_cnt - 1, bufaddr, len); |
| 1196 | |
| 1197 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1198 | nicvf_sq_add_gather_subdesc(sq, qentry, len, dma_addr); |
| 1199 | |
| 1200 | sq->xdp_desc_cnt += subdesc_cnt; |
| 1201 | |
| 1202 | return 1; |
| 1203 | } |
| 1204 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1205 | /* Calculate no of SQ subdescriptors needed to transmit all |
| 1206 | * segments of this TSO packet. |
| 1207 | * Taken from 'Tilera network driver' with a minor modification. |
| 1208 | */ |
| 1209 | static int nicvf_tso_count_subdescs(struct sk_buff *skb) |
| 1210 | { |
| 1211 | struct skb_shared_info *sh = skb_shinfo(skb); |
| 1212 | unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb); |
| 1213 | unsigned int data_len = skb->len - sh_len; |
| 1214 | unsigned int p_len = sh->gso_size; |
| 1215 | long f_id = -1; /* id of the current fragment */ |
| 1216 | long f_size = skb_headlen(skb) - sh_len; /* current fragment size */ |
| 1217 | long f_used = 0; /* bytes used from the current fragment */ |
| 1218 | long n; /* size of the current piece of payload */ |
| 1219 | int num_edescs = 0; |
| 1220 | int segment; |
| 1221 | |
| 1222 | for (segment = 0; segment < sh->gso_segs; segment++) { |
| 1223 | unsigned int p_used = 0; |
| 1224 | |
| 1225 | /* One edesc for header and for each piece of the payload. */ |
| 1226 | for (num_edescs++; p_used < p_len; num_edescs++) { |
| 1227 | /* Advance as needed. */ |
| 1228 | while (f_used >= f_size) { |
| 1229 | f_id++; |
| 1230 | f_size = skb_frag_size(&sh->frags[f_id]); |
| 1231 | f_used = 0; |
| 1232 | } |
| 1233 | |
| 1234 | /* Use bytes from the current fragment. */ |
| 1235 | n = p_len - p_used; |
| 1236 | if (n > f_size - f_used) |
| 1237 | n = f_size - f_used; |
| 1238 | f_used += n; |
| 1239 | p_used += n; |
| 1240 | } |
| 1241 | |
| 1242 | /* The last segment may be less than gso_size. */ |
| 1243 | data_len -= p_len; |
| 1244 | if (data_len < p_len) |
| 1245 | p_len = data_len; |
| 1246 | } |
| 1247 | |
| 1248 | /* '+ gso_segs' for SQ_HDR_SUDESCs for each segment */ |
| 1249 | return num_edescs + sh->gso_segs; |
| 1250 | } |
| 1251 | |
Sunil Goutham | 7ceb8a1 | 2016-08-30 11:36:27 +0530 | [diff] [blame] | 1252 | #define POST_CQE_DESC_COUNT 2 |
| 1253 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1254 | /* Get the number of SQ descriptors needed to xmit this skb */ |
| 1255 | static int nicvf_sq_subdesc_required(struct nicvf *nic, struct sk_buff *skb) |
| 1256 | { |
| 1257 | int subdesc_cnt = MIN_SQ_DESC_PER_PKT_XMIT; |
| 1258 | |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1259 | if (skb_shinfo(skb)->gso_size && !nic->hw_tso) { |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1260 | subdesc_cnt = nicvf_tso_count_subdescs(skb); |
| 1261 | return subdesc_cnt; |
| 1262 | } |
| 1263 | |
Sunil Goutham | 7ceb8a1 | 2016-08-30 11:36:27 +0530 | [diff] [blame] | 1264 | /* Dummy descriptors to get TSO pkt completion notification */ |
| 1265 | if (nic->t88 && nic->hw_tso && skb_shinfo(skb)->gso_size) |
| 1266 | subdesc_cnt += POST_CQE_DESC_COUNT; |
| 1267 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1268 | if (skb_shinfo(skb)->nr_frags) |
| 1269 | subdesc_cnt += skb_shinfo(skb)->nr_frags; |
| 1270 | |
| 1271 | return subdesc_cnt; |
| 1272 | } |
| 1273 | |
| 1274 | /* Add SQ HEADER subdescriptor. |
| 1275 | * First subdescriptor for every send descriptor. |
| 1276 | */ |
| 1277 | static inline void |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1278 | nicvf_sq_add_hdr_subdesc(struct nicvf *nic, struct snd_queue *sq, int qentry, |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1279 | int subdesc_cnt, struct sk_buff *skb, int len) |
| 1280 | { |
| 1281 | int proto; |
| 1282 | struct sq_hdr_subdesc *hdr; |
Thanneeru Srinivasulu | 3a9024f | 2017-04-06 16:12:26 +0530 | [diff] [blame] | 1283 | union { |
| 1284 | struct iphdr *v4; |
| 1285 | struct ipv6hdr *v6; |
| 1286 | unsigned char *hdr; |
| 1287 | } ip; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1288 | |
Thanneeru Srinivasulu | 3a9024f | 2017-04-06 16:12:26 +0530 | [diff] [blame] | 1289 | ip.hdr = skb_network_header(skb); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1290 | hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1291 | memset(hdr, 0, SND_QUEUE_DESC_SIZE); |
| 1292 | hdr->subdesc_type = SQ_DESC_TYPE_HEADER; |
Sunil Goutham | 7ceb8a1 | 2016-08-30 11:36:27 +0530 | [diff] [blame] | 1293 | |
| 1294 | if (nic->t88 && nic->hw_tso && skb_shinfo(skb)->gso_size) { |
| 1295 | /* post_cqe = 0, to avoid HW posting a CQE for every TSO |
| 1296 | * segment transmitted on 88xx. |
| 1297 | */ |
| 1298 | hdr->subdesc_cnt = subdesc_cnt - POST_CQE_DESC_COUNT; |
| 1299 | } else { |
| 1300 | sq->skbuff[qentry] = (u64)skb; |
| 1301 | /* Enable notification via CQE after processing SQE */ |
| 1302 | hdr->post_cqe = 1; |
| 1303 | /* No of subdescriptors following this */ |
| 1304 | hdr->subdesc_cnt = subdesc_cnt; |
| 1305 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1306 | hdr->tot_len = len; |
| 1307 | |
| 1308 | /* Offload checksum calculation to HW */ |
| 1309 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1310 | hdr->csum_l3 = 1; /* Enable IP csum calculation */ |
| 1311 | hdr->l3_offset = skb_network_offset(skb); |
| 1312 | hdr->l4_offset = skb_transport_offset(skb); |
| 1313 | |
Thanneeru Srinivasulu | 3a9024f | 2017-04-06 16:12:26 +0530 | [diff] [blame] | 1314 | proto = (ip.v4->version == 4) ? ip.v4->protocol : |
| 1315 | ip.v6->nexthdr; |
| 1316 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1317 | switch (proto) { |
| 1318 | case IPPROTO_TCP: |
| 1319 | hdr->csum_l4 = SEND_L4_CSUM_TCP; |
| 1320 | break; |
| 1321 | case IPPROTO_UDP: |
| 1322 | hdr->csum_l4 = SEND_L4_CSUM_UDP; |
| 1323 | break; |
| 1324 | case IPPROTO_SCTP: |
| 1325 | hdr->csum_l4 = SEND_L4_CSUM_SCTP; |
| 1326 | break; |
| 1327 | } |
| 1328 | } |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1329 | |
| 1330 | if (nic->hw_tso && skb_shinfo(skb)->gso_size) { |
| 1331 | hdr->tso = 1; |
| 1332 | hdr->tso_start = skb_transport_offset(skb) + tcp_hdrlen(skb); |
| 1333 | hdr->tso_max_paysize = skb_shinfo(skb)->gso_size; |
| 1334 | /* For non-tunneled pkts, point this to L2 ethertype */ |
| 1335 | hdr->inner_l3_offset = skb_network_offset(skb) - 2; |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1336 | this_cpu_inc(nic->pnicvf->drv_stats->tx_tso); |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1337 | } |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | /* SQ GATHER subdescriptor |
| 1341 | * Must follow HDR descriptor |
| 1342 | */ |
| 1343 | static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry, |
| 1344 | int size, u64 data) |
| 1345 | { |
| 1346 | struct sq_gather_subdesc *gather; |
| 1347 | |
| 1348 | qentry &= (sq->dmem.q_len - 1); |
| 1349 | gather = (struct sq_gather_subdesc *)GET_SQ_DESC(sq, qentry); |
| 1350 | |
| 1351 | memset(gather, 0, SND_QUEUE_DESC_SIZE); |
| 1352 | gather->subdesc_type = SQ_DESC_TYPE_GATHER; |
Sunil Goutham | 4b561c1 | 2015-07-29 16:49:36 +0300 | [diff] [blame] | 1353 | gather->ld_type = NIC_SEND_LD_TYPE_E_LDD; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1354 | gather->size = size; |
| 1355 | gather->addr = data; |
| 1356 | } |
| 1357 | |
Sunil Goutham | 7ceb8a1 | 2016-08-30 11:36:27 +0530 | [diff] [blame] | 1358 | /* Add HDR + IMMEDIATE subdescriptors right after descriptors of a TSO |
| 1359 | * packet so that a CQE is posted as a notifation for transmission of |
| 1360 | * TSO packet. |
| 1361 | */ |
| 1362 | static inline void nicvf_sq_add_cqe_subdesc(struct snd_queue *sq, int qentry, |
| 1363 | int tso_sqe, struct sk_buff *skb) |
| 1364 | { |
| 1365 | struct sq_imm_subdesc *imm; |
| 1366 | struct sq_hdr_subdesc *hdr; |
| 1367 | |
| 1368 | sq->skbuff[qentry] = (u64)skb; |
| 1369 | |
| 1370 | hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry); |
| 1371 | memset(hdr, 0, SND_QUEUE_DESC_SIZE); |
| 1372 | hdr->subdesc_type = SQ_DESC_TYPE_HEADER; |
| 1373 | /* Enable notification via CQE after processing SQE */ |
| 1374 | hdr->post_cqe = 1; |
| 1375 | /* There is no packet to transmit here */ |
| 1376 | hdr->dont_send = 1; |
| 1377 | hdr->subdesc_cnt = POST_CQE_DESC_COUNT - 1; |
| 1378 | hdr->tot_len = 1; |
| 1379 | /* Actual TSO header SQE index, needed for cleanup */ |
| 1380 | hdr->rsvd2 = tso_sqe; |
| 1381 | |
| 1382 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1383 | imm = (struct sq_imm_subdesc *)GET_SQ_DESC(sq, qentry); |
| 1384 | memset(imm, 0, SND_QUEUE_DESC_SIZE); |
| 1385 | imm->subdesc_type = SQ_DESC_TYPE_IMMEDIATE; |
| 1386 | imm->len = 1; |
| 1387 | } |
| 1388 | |
Sunil Goutham | 2c204c2 | 2016-09-23 14:42:28 +0530 | [diff] [blame] | 1389 | static inline void nicvf_sq_doorbell(struct nicvf *nic, struct sk_buff *skb, |
| 1390 | int sq_num, int desc_cnt) |
| 1391 | { |
| 1392 | struct netdev_queue *txq; |
| 1393 | |
| 1394 | txq = netdev_get_tx_queue(nic->pnicvf->netdev, |
| 1395 | skb_get_queue_mapping(skb)); |
| 1396 | |
| 1397 | netdev_tx_sent_queue(txq, skb->len); |
| 1398 | |
| 1399 | /* make sure all memory stores are done before ringing doorbell */ |
| 1400 | smp_wmb(); |
| 1401 | |
| 1402 | /* Inform HW to xmit all TSO segments */ |
| 1403 | nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR, |
| 1404 | sq_num, desc_cnt); |
| 1405 | } |
| 1406 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1407 | /* Segment a TSO packet into 'gso_size' segments and append |
| 1408 | * them to SQ for transfer |
| 1409 | */ |
| 1410 | static int nicvf_sq_append_tso(struct nicvf *nic, struct snd_queue *sq, |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 1411 | int sq_num, int qentry, struct sk_buff *skb) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1412 | { |
| 1413 | struct tso_t tso; |
| 1414 | int seg_subdescs = 0, desc_cnt = 0; |
| 1415 | int seg_len, total_len, data_left; |
| 1416 | int hdr_qentry = qentry; |
| 1417 | int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb); |
| 1418 | |
| 1419 | tso_start(skb, &tso); |
| 1420 | total_len = skb->len - hdr_len; |
| 1421 | while (total_len > 0) { |
| 1422 | char *hdr; |
| 1423 | |
| 1424 | /* Save Qentry for adding HDR_SUBDESC at the end */ |
| 1425 | hdr_qentry = qentry; |
| 1426 | |
| 1427 | data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len); |
| 1428 | total_len -= data_left; |
| 1429 | |
| 1430 | /* Add segment's header */ |
| 1431 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1432 | hdr = sq->tso_hdrs + qentry * TSO_HEADER_SIZE; |
| 1433 | tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0); |
| 1434 | nicvf_sq_add_gather_subdesc(sq, qentry, hdr_len, |
| 1435 | sq->tso_hdrs_phys + |
| 1436 | qentry * TSO_HEADER_SIZE); |
| 1437 | /* HDR_SUDESC + GATHER */ |
| 1438 | seg_subdescs = 2; |
| 1439 | seg_len = hdr_len; |
| 1440 | |
| 1441 | /* Add segment's payload fragments */ |
| 1442 | while (data_left > 0) { |
| 1443 | int size; |
| 1444 | |
| 1445 | size = min_t(int, tso.size, data_left); |
| 1446 | |
| 1447 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1448 | nicvf_sq_add_gather_subdesc(sq, qentry, size, |
| 1449 | virt_to_phys(tso.data)); |
| 1450 | seg_subdescs++; |
| 1451 | seg_len += size; |
| 1452 | |
| 1453 | data_left -= size; |
| 1454 | tso_build_data(skb, &tso, size); |
| 1455 | } |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1456 | nicvf_sq_add_hdr_subdesc(nic, sq, hdr_qentry, |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1457 | seg_subdescs - 1, skb, seg_len); |
Sunil Goutham | 143ceb0 | 2015-07-29 16:49:37 +0300 | [diff] [blame] | 1458 | sq->skbuff[hdr_qentry] = (u64)NULL; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1459 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1460 | |
| 1461 | desc_cnt += seg_subdescs; |
| 1462 | } |
| 1463 | /* Save SKB in the last segment for freeing */ |
| 1464 | sq->skbuff[hdr_qentry] = (u64)skb; |
| 1465 | |
Sunil Goutham | 2c204c2 | 2016-09-23 14:42:28 +0530 | [diff] [blame] | 1466 | nicvf_sq_doorbell(nic, skb, sq_num, desc_cnt); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1467 | |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1468 | this_cpu_inc(nic->pnicvf->drv_stats->tx_tso); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1469 | return 1; |
| 1470 | } |
| 1471 | |
| 1472 | /* Append an skb to a SQ for packet transfer. */ |
Sunil Goutham | bd3ad7d | 2016-12-01 18:24:28 +0530 | [diff] [blame] | 1473 | int nicvf_sq_append_skb(struct nicvf *nic, struct snd_queue *sq, |
| 1474 | struct sk_buff *skb, u8 sq_num) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1475 | { |
| 1476 | int i, size; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1477 | int subdesc_cnt, hdr_sqe = 0; |
Sunil Goutham | bd3ad7d | 2016-12-01 18:24:28 +0530 | [diff] [blame] | 1478 | int qentry; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1479 | u64 dma_addr; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1480 | |
| 1481 | subdesc_cnt = nicvf_sq_subdesc_required(nic, skb); |
| 1482 | if (subdesc_cnt > atomic_read(&sq->free_cnt)) |
| 1483 | goto append_fail; |
| 1484 | |
| 1485 | qentry = nicvf_get_sq_desc(sq, subdesc_cnt); |
| 1486 | |
| 1487 | /* Check if its a TSO packet */ |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1488 | if (skb_shinfo(skb)->gso_size && !nic->hw_tso) |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 1489 | return nicvf_sq_append_tso(nic, sq, sq_num, qentry, skb); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1490 | |
| 1491 | /* Add SQ header subdesc */ |
Sunil Goutham | 40fb5f8 | 2015-12-10 13:25:19 +0530 | [diff] [blame] | 1492 | nicvf_sq_add_hdr_subdesc(nic, sq, qentry, subdesc_cnt - 1, |
| 1493 | skb, skb->len); |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1494 | hdr_sqe = qentry; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1495 | |
| 1496 | /* Add SQ gather subdescs */ |
| 1497 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1498 | size = skb_is_nonlinear(skb) ? skb_headlen(skb) : skb->len; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1499 | /* HW will ensure data coherency, CPU sync not required */ |
| 1500 | dma_addr = dma_map_page_attrs(&nic->pdev->dev, virt_to_page(skb->data), |
| 1501 | offset_in_page(skb->data), size, |
| 1502 | DMA_TO_DEVICE, DMA_ATTR_SKIP_CPU_SYNC); |
| 1503 | if (dma_mapping_error(&nic->pdev->dev, dma_addr)) { |
| 1504 | nicvf_rollback_sq_desc(sq, qentry, subdesc_cnt); |
| 1505 | return 0; |
| 1506 | } |
| 1507 | |
| 1508 | nicvf_sq_add_gather_subdesc(sq, qentry, size, dma_addr); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1509 | |
| 1510 | /* Check for scattered buffer */ |
| 1511 | if (!skb_is_nonlinear(skb)) |
| 1512 | goto doorbell; |
| 1513 | |
| 1514 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
| 1515 | const struct skb_frag_struct *frag; |
| 1516 | |
| 1517 | frag = &skb_shinfo(skb)->frags[i]; |
| 1518 | |
| 1519 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
| 1520 | size = skb_frag_size(frag); |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1521 | dma_addr = dma_map_page_attrs(&nic->pdev->dev, |
| 1522 | skb_frag_page(frag), |
| 1523 | frag->page_offset, size, |
| 1524 | DMA_TO_DEVICE, |
| 1525 | DMA_ATTR_SKIP_CPU_SYNC); |
| 1526 | if (dma_mapping_error(&nic->pdev->dev, dma_addr)) { |
| 1527 | /* Free entire chain of mapped buffers |
| 1528 | * here 'i' = frags mapped + above mapped skb->data |
| 1529 | */ |
| 1530 | nicvf_unmap_sndq_buffers(nic, sq, hdr_sqe, i); |
| 1531 | nicvf_rollback_sq_desc(sq, qentry, subdesc_cnt); |
| 1532 | return 0; |
| 1533 | } |
| 1534 | nicvf_sq_add_gather_subdesc(sq, qentry, size, dma_addr); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
| 1537 | doorbell: |
Sunil Goutham | 7ceb8a1 | 2016-08-30 11:36:27 +0530 | [diff] [blame] | 1538 | if (nic->t88 && skb_shinfo(skb)->gso_size) { |
| 1539 | qentry = nicvf_get_nxt_sqentry(sq, qentry); |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1540 | nicvf_sq_add_cqe_subdesc(sq, qentry, hdr_sqe, skb); |
Sunil Goutham | 7ceb8a1 | 2016-08-30 11:36:27 +0530 | [diff] [blame] | 1541 | } |
| 1542 | |
Sunil Goutham | 2c204c2 | 2016-09-23 14:42:28 +0530 | [diff] [blame] | 1543 | nicvf_sq_doorbell(nic, skb, sq_num, subdesc_cnt); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1544 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1545 | return 1; |
| 1546 | |
| 1547 | append_fail: |
Sunil Goutham | 92dc876 | 2015-08-30 12:29:15 +0300 | [diff] [blame] | 1548 | /* Use original PCI dev for debug log */ |
| 1549 | nic = nic->pnicvf; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1550 | netdev_dbg(nic->netdev, "Not enough SQ descriptors to xmit pkt\n"); |
| 1551 | return 0; |
| 1552 | } |
| 1553 | |
| 1554 | static inline unsigned frag_num(unsigned i) |
| 1555 | { |
| 1556 | #ifdef __BIG_ENDIAN |
| 1557 | return (i & ~3) + 3 - (i & 3); |
| 1558 | #else |
| 1559 | return i; |
| 1560 | #endif |
| 1561 | } |
| 1562 | |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 1563 | static void nicvf_unmap_rcv_buffer(struct nicvf *nic, u64 dma_addr, |
| 1564 | u64 buf_addr, bool xdp) |
| 1565 | { |
| 1566 | struct page *page = NULL; |
| 1567 | int len = RCV_FRAG_LEN; |
| 1568 | |
| 1569 | if (xdp) { |
| 1570 | page = virt_to_page(phys_to_virt(buf_addr)); |
| 1571 | /* Check if it's a recycled page, if not |
| 1572 | * unmap the DMA mapping. |
| 1573 | * |
| 1574 | * Recycled page holds an extra reference. |
| 1575 | */ |
| 1576 | if (page_ref_count(page) != 1) |
| 1577 | return; |
| 1578 | /* Receive buffers in XDP mode are mapped from page start */ |
| 1579 | dma_addr &= PAGE_MASK; |
| 1580 | } |
| 1581 | dma_unmap_page_attrs(&nic->pdev->dev, dma_addr, len, |
| 1582 | DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC); |
| 1583 | } |
| 1584 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1585 | /* Returns SKB for a received packet */ |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 1586 | struct sk_buff *nicvf_get_rcv_skb(struct nicvf *nic, |
| 1587 | struct cqe_rx_t *cqe_rx, bool xdp) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1588 | { |
| 1589 | int frag; |
| 1590 | int payload_len = 0; |
| 1591 | struct sk_buff *skb = NULL; |
Sunil Goutham | a8671ac | 2016-08-12 16:51:37 +0530 | [diff] [blame] | 1592 | struct page *page; |
| 1593 | int offset; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1594 | u16 *rb_lens = NULL; |
| 1595 | u64 *rb_ptrs = NULL; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1596 | u64 phys_addr; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1597 | |
| 1598 | rb_lens = (void *)cqe_rx + (3 * sizeof(u64)); |
Sunil Goutham | 02a72bd | 2016-08-12 16:51:28 +0530 | [diff] [blame] | 1599 | /* Except 88xx pass1 on all other chips CQE_RX2_S is added to |
| 1600 | * CQE_RX at word6, hence buffer pointers move by word |
| 1601 | * |
| 1602 | * Use existing 'hw_tso' flag which will be set for all chips |
| 1603 | * except 88xx pass1 instead of a additional cache line |
| 1604 | * access (or miss) by using pci dev's revision. |
| 1605 | */ |
| 1606 | if (!nic->hw_tso) |
| 1607 | rb_ptrs = (void *)cqe_rx + (6 * sizeof(u64)); |
| 1608 | else |
| 1609 | rb_ptrs = (void *)cqe_rx + (7 * sizeof(u64)); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1610 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1611 | for (frag = 0; frag < cqe_rx->rb_cnt; frag++) { |
| 1612 | payload_len = rb_lens[frag_num(frag)]; |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1613 | phys_addr = nicvf_iova_to_phys(nic, *rb_ptrs); |
| 1614 | if (!phys_addr) { |
| 1615 | if (skb) |
| 1616 | dev_kfree_skb_any(skb); |
| 1617 | return NULL; |
| 1618 | } |
| 1619 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1620 | if (!frag) { |
| 1621 | /* First fragment */ |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 1622 | nicvf_unmap_rcv_buffer(nic, |
| 1623 | *rb_ptrs - cqe_rx->align_pad, |
| 1624 | phys_addr, xdp); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1625 | skb = nicvf_rb_ptr_to_skb(nic, |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1626 | phys_addr - cqe_rx->align_pad, |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1627 | payload_len); |
| 1628 | if (!skb) |
| 1629 | return NULL; |
| 1630 | skb_reserve(skb, cqe_rx->align_pad); |
| 1631 | skb_put(skb, payload_len); |
| 1632 | } else { |
| 1633 | /* Add fragments */ |
Sunil Goutham | c56d91c | 2017-05-02 18:36:55 +0530 | [diff] [blame] | 1634 | nicvf_unmap_rcv_buffer(nic, *rb_ptrs, phys_addr, xdp); |
Sunil Goutham | 83abb7d | 2017-03-07 18:09:08 +0530 | [diff] [blame] | 1635 | page = virt_to_page(phys_to_virt(phys_addr)); |
| 1636 | offset = phys_to_virt(phys_addr) - page_address(page); |
Sunil Goutham | a8671ac | 2016-08-12 16:51:37 +0530 | [diff] [blame] | 1637 | skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, |
| 1638 | offset, payload_len, RCV_FRAG_LEN); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1639 | } |
| 1640 | /* Next buffer pointer */ |
| 1641 | rb_ptrs++; |
| 1642 | } |
| 1643 | return skb; |
| 1644 | } |
| 1645 | |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1646 | static u64 nicvf_int_type_to_mask(int int_type, int q_idx) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1647 | { |
| 1648 | u64 reg_val; |
| 1649 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1650 | switch (int_type) { |
| 1651 | case NICVF_INTR_CQ: |
| 1652 | reg_val = ((1ULL << q_idx) << NICVF_INTR_CQ_SHIFT); |
| 1653 | break; |
| 1654 | case NICVF_INTR_SQ: |
| 1655 | reg_val = ((1ULL << q_idx) << NICVF_INTR_SQ_SHIFT); |
| 1656 | break; |
| 1657 | case NICVF_INTR_RBDR: |
| 1658 | reg_val = ((1ULL << q_idx) << NICVF_INTR_RBDR_SHIFT); |
| 1659 | break; |
| 1660 | case NICVF_INTR_PKT_DROP: |
| 1661 | reg_val = (1ULL << NICVF_INTR_PKT_DROP_SHIFT); |
| 1662 | break; |
| 1663 | case NICVF_INTR_TCP_TIMER: |
| 1664 | reg_val = (1ULL << NICVF_INTR_TCP_TIMER_SHIFT); |
| 1665 | break; |
| 1666 | case NICVF_INTR_MBOX: |
| 1667 | reg_val = (1ULL << NICVF_INTR_MBOX_SHIFT); |
| 1668 | break; |
| 1669 | case NICVF_INTR_QS_ERR: |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1670 | reg_val = (1ULL << NICVF_INTR_QS_ERR_SHIFT); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1671 | break; |
| 1672 | default: |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1673 | reg_val = 0; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1674 | } |
| 1675 | |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1676 | return reg_val; |
| 1677 | } |
| 1678 | |
| 1679 | /* Enable interrupt */ |
| 1680 | void nicvf_enable_intr(struct nicvf *nic, int int_type, int q_idx) |
| 1681 | { |
| 1682 | u64 mask = nicvf_int_type_to_mask(int_type, q_idx); |
| 1683 | |
| 1684 | if (!mask) { |
| 1685 | netdev_dbg(nic->netdev, |
| 1686 | "Failed to enable interrupt: unknown type\n"); |
| 1687 | return; |
| 1688 | } |
| 1689 | nicvf_reg_write(nic, NIC_VF_ENA_W1S, |
| 1690 | nicvf_reg_read(nic, NIC_VF_ENA_W1S) | mask); |
| 1691 | } |
| 1692 | |
| 1693 | /* Disable interrupt */ |
| 1694 | void nicvf_disable_intr(struct nicvf *nic, int int_type, int q_idx) |
| 1695 | { |
| 1696 | u64 mask = nicvf_int_type_to_mask(int_type, q_idx); |
| 1697 | |
| 1698 | if (!mask) { |
| 1699 | netdev_dbg(nic->netdev, |
| 1700 | "Failed to disable interrupt: unknown type\n"); |
| 1701 | return; |
| 1702 | } |
| 1703 | |
| 1704 | nicvf_reg_write(nic, NIC_VF_ENA_W1C, mask); |
| 1705 | } |
| 1706 | |
| 1707 | /* Clear interrupt */ |
| 1708 | void nicvf_clear_intr(struct nicvf *nic, int int_type, int q_idx) |
| 1709 | { |
| 1710 | u64 mask = nicvf_int_type_to_mask(int_type, q_idx); |
| 1711 | |
| 1712 | if (!mask) { |
| 1713 | netdev_dbg(nic->netdev, |
| 1714 | "Failed to clear interrupt: unknown type\n"); |
| 1715 | return; |
| 1716 | } |
| 1717 | |
| 1718 | nicvf_reg_write(nic, NIC_VF_INT, mask); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1719 | } |
| 1720 | |
| 1721 | /* Check if interrupt is enabled */ |
| 1722 | int nicvf_is_intr_enabled(struct nicvf *nic, int int_type, int q_idx) |
| 1723 | { |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1724 | u64 mask = nicvf_int_type_to_mask(int_type, q_idx); |
| 1725 | /* If interrupt type is unknown, we treat it disabled. */ |
| 1726 | if (!mask) { |
| 1727 | netdev_dbg(nic->netdev, |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1728 | "Failed to check interrupt enable: unknown type\n"); |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1729 | return 0; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1730 | } |
| 1731 | |
Yury Norov | b45ceb4 | 2015-12-07 10:30:32 +0530 | [diff] [blame] | 1732 | return mask & nicvf_reg_read(nic, NIC_VF_ENA_W1S); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1733 | } |
| 1734 | |
| 1735 | void nicvf_update_rq_stats(struct nicvf *nic, int rq_idx) |
| 1736 | { |
| 1737 | struct rcv_queue *rq; |
| 1738 | |
| 1739 | #define GET_RQ_STATS(reg) \ |
| 1740 | nicvf_reg_read(nic, NIC_QSET_RQ_0_7_STAT_0_1 |\ |
| 1741 | (rq_idx << NIC_Q_NUM_SHIFT) | (reg << 3)) |
| 1742 | |
| 1743 | rq = &nic->qs->rq[rq_idx]; |
| 1744 | rq->stats.bytes = GET_RQ_STATS(RQ_SQ_STATS_OCTS); |
| 1745 | rq->stats.pkts = GET_RQ_STATS(RQ_SQ_STATS_PKTS); |
| 1746 | } |
| 1747 | |
| 1748 | void nicvf_update_sq_stats(struct nicvf *nic, int sq_idx) |
| 1749 | { |
| 1750 | struct snd_queue *sq; |
| 1751 | |
| 1752 | #define GET_SQ_STATS(reg) \ |
| 1753 | nicvf_reg_read(nic, NIC_QSET_SQ_0_7_STAT_0_1 |\ |
| 1754 | (sq_idx << NIC_Q_NUM_SHIFT) | (reg << 3)) |
| 1755 | |
| 1756 | sq = &nic->qs->sq[sq_idx]; |
| 1757 | sq->stats.bytes = GET_SQ_STATS(RQ_SQ_STATS_OCTS); |
| 1758 | sq->stats.pkts = GET_SQ_STATS(RQ_SQ_STATS_PKTS); |
| 1759 | } |
| 1760 | |
| 1761 | /* Check for errors in the receive cmp.queue entry */ |
Sunil Goutham | ad2eceb | 2016-02-16 16:29:51 +0530 | [diff] [blame] | 1762 | int nicvf_check_cqe_rx_errs(struct nicvf *nic, struct cqe_rx_t *cqe_rx) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1763 | { |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1764 | if (netif_msg_rx_err(nic)) |
| 1765 | netdev_err(nic->netdev, |
| 1766 | "%s: RX error CQE err_level 0x%x err_opcode 0x%x\n", |
| 1767 | nic->netdev->name, |
| 1768 | cqe_rx->err_level, cqe_rx->err_opcode); |
| 1769 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1770 | switch (cqe_rx->err_opcode) { |
| 1771 | case CQ_RX_ERROP_RE_PARTIAL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1772 | this_cpu_inc(nic->drv_stats->rx_bgx_truncated_pkts); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1773 | break; |
| 1774 | case CQ_RX_ERROP_RE_JABBER: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1775 | this_cpu_inc(nic->drv_stats->rx_jabber_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1776 | break; |
| 1777 | case CQ_RX_ERROP_RE_FCS: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1778 | this_cpu_inc(nic->drv_stats->rx_fcs_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1779 | break; |
| 1780 | case CQ_RX_ERROP_RE_RX_CTL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1781 | this_cpu_inc(nic->drv_stats->rx_bgx_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1782 | break; |
| 1783 | case CQ_RX_ERROP_PREL2_ERR: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1784 | this_cpu_inc(nic->drv_stats->rx_prel2_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1785 | break; |
| 1786 | case CQ_RX_ERROP_L2_MAL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1787 | this_cpu_inc(nic->drv_stats->rx_l2_hdr_malformed); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1788 | break; |
| 1789 | case CQ_RX_ERROP_L2_OVERSIZE: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1790 | this_cpu_inc(nic->drv_stats->rx_oversize); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1791 | break; |
| 1792 | case CQ_RX_ERROP_L2_UNDERSIZE: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1793 | this_cpu_inc(nic->drv_stats->rx_undersize); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1794 | break; |
| 1795 | case CQ_RX_ERROP_L2_LENMISM: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1796 | this_cpu_inc(nic->drv_stats->rx_l2_len_mismatch); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1797 | break; |
| 1798 | case CQ_RX_ERROP_L2_PCLP: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1799 | this_cpu_inc(nic->drv_stats->rx_l2_pclp); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1800 | break; |
| 1801 | case CQ_RX_ERROP_IP_NOT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1802 | this_cpu_inc(nic->drv_stats->rx_ip_ver_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1803 | break; |
| 1804 | case CQ_RX_ERROP_IP_CSUM_ERR: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1805 | this_cpu_inc(nic->drv_stats->rx_ip_csum_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1806 | break; |
| 1807 | case CQ_RX_ERROP_IP_MAL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1808 | this_cpu_inc(nic->drv_stats->rx_ip_hdr_malformed); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1809 | break; |
| 1810 | case CQ_RX_ERROP_IP_MALD: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1811 | this_cpu_inc(nic->drv_stats->rx_ip_payload_malformed); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1812 | break; |
| 1813 | case CQ_RX_ERROP_IP_HOP: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1814 | this_cpu_inc(nic->drv_stats->rx_ip_ttl_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1815 | break; |
| 1816 | case CQ_RX_ERROP_L3_PCLP: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1817 | this_cpu_inc(nic->drv_stats->rx_l3_pclp); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1818 | break; |
| 1819 | case CQ_RX_ERROP_L4_MAL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1820 | this_cpu_inc(nic->drv_stats->rx_l4_malformed); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1821 | break; |
| 1822 | case CQ_RX_ERROP_L4_CHK: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1823 | this_cpu_inc(nic->drv_stats->rx_l4_csum_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1824 | break; |
| 1825 | case CQ_RX_ERROP_UDP_LEN: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1826 | this_cpu_inc(nic->drv_stats->rx_udp_len_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1827 | break; |
| 1828 | case CQ_RX_ERROP_L4_PORT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1829 | this_cpu_inc(nic->drv_stats->rx_l4_port_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1830 | break; |
| 1831 | case CQ_RX_ERROP_TCP_FLAG: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1832 | this_cpu_inc(nic->drv_stats->rx_tcp_flag_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1833 | break; |
| 1834 | case CQ_RX_ERROP_TCP_OFFSET: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1835 | this_cpu_inc(nic->drv_stats->rx_tcp_offset_errs); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1836 | break; |
| 1837 | case CQ_RX_ERROP_L4_PCLP: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1838 | this_cpu_inc(nic->drv_stats->rx_l4_pclp); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1839 | break; |
| 1840 | case CQ_RX_ERROP_RBDR_TRUNC: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1841 | this_cpu_inc(nic->drv_stats->rx_truncated_pkts); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1842 | break; |
| 1843 | } |
| 1844 | |
| 1845 | return 1; |
| 1846 | } |
| 1847 | |
| 1848 | /* Check for errors in the send cmp.queue entry */ |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1849 | int nicvf_check_cqe_tx_errs(struct nicvf *nic, struct cqe_send_t *cqe_tx) |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1850 | { |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1851 | switch (cqe_tx->send_status) { |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1852 | case CQ_TX_ERROP_DESC_FAULT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1853 | this_cpu_inc(nic->drv_stats->tx_desc_fault); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1854 | break; |
| 1855 | case CQ_TX_ERROP_HDR_CONS_ERR: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1856 | this_cpu_inc(nic->drv_stats->tx_hdr_cons_err); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1857 | break; |
| 1858 | case CQ_TX_ERROP_SUBDC_ERR: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1859 | this_cpu_inc(nic->drv_stats->tx_subdesc_err); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1860 | break; |
Sunil Goutham | 712c318 | 2016-11-15 17:37:36 +0530 | [diff] [blame] | 1861 | case CQ_TX_ERROP_MAX_SIZE_VIOL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1862 | this_cpu_inc(nic->drv_stats->tx_max_size_exceeded); |
Sunil Goutham | 712c318 | 2016-11-15 17:37:36 +0530 | [diff] [blame] | 1863 | break; |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1864 | case CQ_TX_ERROP_IMM_SIZE_OFLOW: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1865 | this_cpu_inc(nic->drv_stats->tx_imm_size_oflow); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1866 | break; |
| 1867 | case CQ_TX_ERROP_DATA_SEQUENCE_ERR: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1868 | this_cpu_inc(nic->drv_stats->tx_data_seq_err); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1869 | break; |
| 1870 | case CQ_TX_ERROP_MEM_SEQUENCE_ERR: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1871 | this_cpu_inc(nic->drv_stats->tx_mem_seq_err); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1872 | break; |
| 1873 | case CQ_TX_ERROP_LOCK_VIOL: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1874 | this_cpu_inc(nic->drv_stats->tx_lock_viol); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1875 | break; |
| 1876 | case CQ_TX_ERROP_DATA_FAULT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1877 | this_cpu_inc(nic->drv_stats->tx_data_fault); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1878 | break; |
| 1879 | case CQ_TX_ERROP_TSTMP_CONFLICT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1880 | this_cpu_inc(nic->drv_stats->tx_tstmp_conflict); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1881 | break; |
| 1882 | case CQ_TX_ERROP_TSTMP_TIMEOUT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1883 | this_cpu_inc(nic->drv_stats->tx_tstmp_timeout); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1884 | break; |
| 1885 | case CQ_TX_ERROP_MEM_FAULT: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1886 | this_cpu_inc(nic->drv_stats->tx_mem_fault); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1887 | break; |
| 1888 | case CQ_TX_ERROP_CK_OVERLAP: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1889 | this_cpu_inc(nic->drv_stats->tx_csum_overlap); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1890 | break; |
| 1891 | case CQ_TX_ERROP_CK_OFLOW: |
Sunil Goutham | 964cb69 | 2016-11-15 17:38:16 +0530 | [diff] [blame] | 1892 | this_cpu_inc(nic->drv_stats->tx_csum_overflow); |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1893 | break; |
| 1894 | } |
| 1895 | |
| 1896 | return 1; |
| 1897 | } |