Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 1 | /********************************************************************** |
Raghu Vatsavayi | 50579d3 | 2016-11-14 15:54:46 -0800 | [diff] [blame] | 2 | * Author: Cavium, Inc. |
| 3 | * |
| 4 | * Contact: support@cavium.com |
| 5 | * Please include "LiquidIO" in the subject. |
| 6 | * |
| 7 | * Copyright (c) 2003-2016 Cavium, Inc. |
| 8 | * |
| 9 | * This file is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License, Version 2, as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * This file is distributed in the hope that it will be useful, but |
| 14 | * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty |
| 15 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or |
| 16 | * NONINFRINGEMENT. See the GNU General Public License for more details. |
| 17 | ***********************************************************************/ |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 18 | #include <linux/pci.h> |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 19 | #include <linux/netdevice.h> |
Raghu Vatsavayi | 5b173cf | 2015-06-12 18:11:50 -0700 | [diff] [blame] | 20 | #include <linux/vmalloc.h> |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 21 | #include "liquidio_common.h" |
| 22 | #include "octeon_droq.h" |
| 23 | #include "octeon_iq.h" |
| 24 | #include "response_manager.h" |
| 25 | #include "octeon_device.h" |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 26 | #include "octeon_main.h" |
| 27 | #include "octeon_network.h" |
| 28 | #include "cn66xx_regs.h" |
| 29 | #include "cn66xx_device.h" |
Raghu Vatsavayi | 5b82351 | 2016-09-01 11:16:07 -0700 | [diff] [blame] | 30 | #include "cn23xx_pf_device.h" |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 31 | |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 32 | struct niclist { |
| 33 | struct list_head list; |
| 34 | void *ptr; |
| 35 | }; |
| 36 | |
| 37 | struct __dispatch { |
| 38 | struct list_head list; |
| 39 | struct octeon_recv_info *rinfo; |
| 40 | octeon_dispatch_fn_t disp_fn; |
| 41 | }; |
| 42 | |
| 43 | /** Get the argument that the user set when registering dispatch |
| 44 | * function for a given opcode/subcode. |
| 45 | * @param octeon_dev - the octeon device pointer. |
| 46 | * @param opcode - the opcode for which the dispatch argument |
| 47 | * is to be checked. |
| 48 | * @param subcode - the subcode for which the dispatch argument |
| 49 | * is to be checked. |
| 50 | * @return Success: void * (argument to the dispatch function) |
| 51 | * @return Failure: NULL |
| 52 | * |
| 53 | */ |
| 54 | static inline void *octeon_get_dispatch_arg(struct octeon_device *octeon_dev, |
| 55 | u16 opcode, u16 subcode) |
| 56 | { |
| 57 | int idx; |
| 58 | struct list_head *dispatch; |
| 59 | void *fn_arg = NULL; |
| 60 | u16 combined_opcode = OPCODE_SUBCODE(opcode, subcode); |
| 61 | |
| 62 | idx = combined_opcode & OCTEON_OPCODE_MASK; |
| 63 | |
| 64 | spin_lock_bh(&octeon_dev->dispatch.lock); |
| 65 | |
| 66 | if (octeon_dev->dispatch.count == 0) { |
| 67 | spin_unlock_bh(&octeon_dev->dispatch.lock); |
| 68 | return NULL; |
| 69 | } |
| 70 | |
| 71 | if (octeon_dev->dispatch.dlist[idx].opcode == combined_opcode) { |
| 72 | fn_arg = octeon_dev->dispatch.dlist[idx].arg; |
| 73 | } else { |
| 74 | list_for_each(dispatch, |
| 75 | &octeon_dev->dispatch.dlist[idx].list) { |
| 76 | if (((struct octeon_dispatch *)dispatch)->opcode == |
| 77 | combined_opcode) { |
| 78 | fn_arg = ((struct octeon_dispatch *) |
| 79 | dispatch)->arg; |
| 80 | break; |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | spin_unlock_bh(&octeon_dev->dispatch.lock); |
| 86 | return fn_arg; |
| 87 | } |
| 88 | |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 89 | /** Check for packets on Droq. This function should be called with lock held. |
Raghu Vatsavayi | a2c64b6 | 2016-07-03 13:56:55 -0700 | [diff] [blame] | 90 | * @param droq - Droq on which count is checked. |
| 91 | * @return Returns packet count. |
| 92 | */ |
Raghu Vatsavayi | a7d5a3d | 2016-07-03 13:56:48 -0700 | [diff] [blame] | 93 | u32 octeon_droq_check_hw_for_pkts(struct octeon_droq *droq) |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 94 | { |
| 95 | u32 pkt_count = 0; |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 96 | u32 last_count; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 97 | |
| 98 | pkt_count = readl(droq->pkts_sent_reg); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 99 | |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 100 | last_count = pkt_count - droq->pkt_count; |
| 101 | droq->pkt_count = pkt_count; |
| 102 | |
| 103 | /* we shall write to cnts at napi irq enable or end of droq tasklet */ |
| 104 | if (last_count) |
| 105 | atomic_add(last_count, &droq->pkts_pending); |
| 106 | |
| 107 | return last_count; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | static void octeon_droq_compute_max_packet_bufs(struct octeon_droq *droq) |
| 111 | { |
| 112 | u32 count = 0; |
| 113 | |
| 114 | /* max_empty_descs is the max. no. of descs that can have no buffers. |
| 115 | * If the empty desc count goes beyond this value, we cannot safely |
| 116 | * read in a 64K packet sent by Octeon |
| 117 | * (64K is max pkt size from Octeon) |
| 118 | */ |
| 119 | droq->max_empty_descs = 0; |
| 120 | |
| 121 | do { |
| 122 | droq->max_empty_descs++; |
| 123 | count += droq->buffer_size; |
| 124 | } while (count < (64 * 1024)); |
| 125 | |
| 126 | droq->max_empty_descs = droq->max_count - droq->max_empty_descs; |
| 127 | } |
| 128 | |
| 129 | static void octeon_droq_reset_indices(struct octeon_droq *droq) |
| 130 | { |
| 131 | droq->read_idx = 0; |
| 132 | droq->write_idx = 0; |
| 133 | droq->refill_idx = 0; |
| 134 | droq->refill_count = 0; |
| 135 | atomic_set(&droq->pkts_pending, 0); |
| 136 | } |
| 137 | |
| 138 | static void |
| 139 | octeon_droq_destroy_ring_buffers(struct octeon_device *oct, |
| 140 | struct octeon_droq *droq) |
| 141 | { |
| 142 | u32 i; |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 143 | struct octeon_skb_page_info *pg_info; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 144 | |
| 145 | for (i = 0; i < droq->max_count; i++) { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 146 | pg_info = &droq->recv_buf_list[i].pg_info; |
| 147 | |
| 148 | if (pg_info->dma) |
| 149 | lio_unmap_ring(oct->pci_dev, |
| 150 | (u64)pg_info->dma); |
| 151 | pg_info->dma = 0; |
| 152 | |
| 153 | if (pg_info->page) |
| 154 | recv_buffer_destroy(droq->recv_buf_list[i].buffer, |
| 155 | pg_info); |
| 156 | |
| 157 | if (droq->desc_ring && droq->desc_ring[i].info_ptr) |
| 158 | lio_unmap_ring_info(oct->pci_dev, |
| 159 | (u64)droq-> |
| 160 | desc_ring[i].info_ptr, |
| 161 | OCT_DROQ_INFO_SIZE); |
| 162 | droq->recv_buf_list[i].buffer = NULL; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | octeon_droq_reset_indices(droq); |
| 166 | } |
| 167 | |
| 168 | static int |
| 169 | octeon_droq_setup_ring_buffers(struct octeon_device *oct, |
| 170 | struct octeon_droq *droq) |
| 171 | { |
| 172 | u32 i; |
| 173 | void *buf; |
| 174 | struct octeon_droq_desc *desc_ring = droq->desc_ring; |
| 175 | |
| 176 | for (i = 0; i < droq->max_count; i++) { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 177 | buf = recv_buffer_alloc(oct, &droq->recv_buf_list[i].pg_info); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 178 | |
| 179 | if (!buf) { |
| 180 | dev_err(&oct->pci_dev->dev, "%s buffer alloc failed\n", |
| 181 | __func__); |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 182 | droq->stats.rx_alloc_failure++; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 183 | return -ENOMEM; |
| 184 | } |
| 185 | |
| 186 | droq->recv_buf_list[i].buffer = buf; |
| 187 | droq->recv_buf_list[i].data = get_rbd(buf); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 188 | droq->info_list[i].length = 0; |
| 189 | |
| 190 | /* map ring buffers into memory */ |
| 191 | desc_ring[i].info_ptr = lio_map_ring_info(droq, i); |
| 192 | desc_ring[i].buffer_ptr = |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 193 | lio_map_ring(droq->recv_buf_list[i].buffer); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | octeon_droq_reset_indices(droq); |
| 197 | |
| 198 | octeon_droq_compute_max_packet_bufs(droq); |
| 199 | |
| 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | int octeon_delete_droq(struct octeon_device *oct, u32 q_no) |
| 204 | { |
| 205 | struct octeon_droq *droq = oct->droq[q_no]; |
| 206 | |
| 207 | dev_dbg(&oct->pci_dev->dev, "%s[%d]\n", __func__, q_no); |
| 208 | |
| 209 | octeon_droq_destroy_ring_buffers(oct, droq); |
Markus Elfring | 9686f31 | 2015-06-29 12:22:24 +0200 | [diff] [blame] | 210 | vfree(droq->recv_buf_list); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 211 | |
| 212 | if (droq->info_base_addr) |
| 213 | cnnic_free_aligned_dma(oct->pci_dev, droq->info_list, |
| 214 | droq->info_alloc_size, |
| 215 | droq->info_base_addr, |
| 216 | droq->info_list_dma); |
| 217 | |
| 218 | if (droq->desc_ring) |
| 219 | lio_dma_free(oct, (droq->max_count * OCT_DROQ_DESC_SIZE), |
| 220 | droq->desc_ring, droq->desc_ring_dma); |
| 221 | |
| 222 | memset(droq, 0, OCT_DROQ_SIZE); |
| 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | int octeon_init_droq(struct octeon_device *oct, |
| 228 | u32 q_no, |
| 229 | u32 num_descs, |
| 230 | u32 desc_size, |
| 231 | void *app_ctx) |
| 232 | { |
| 233 | struct octeon_droq *droq; |
| 234 | u32 desc_ring_size = 0, c_num_descs = 0, c_buf_size = 0; |
| 235 | u32 c_pkts_per_intr = 0, c_refill_threshold = 0; |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 236 | int orig_node = dev_to_node(&oct->pci_dev->dev); |
| 237 | int numa_node = cpu_to_node(q_no % num_online_cpus()); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 238 | |
| 239 | dev_dbg(&oct->pci_dev->dev, "%s[%d]\n", __func__, q_no); |
| 240 | |
| 241 | droq = oct->droq[q_no]; |
| 242 | memset(droq, 0, OCT_DROQ_SIZE); |
| 243 | |
| 244 | droq->oct_dev = oct; |
| 245 | droq->q_no = q_no; |
| 246 | if (app_ctx) |
| 247 | droq->app_ctx = app_ctx; |
| 248 | else |
| 249 | droq->app_ctx = (void *)(size_t)q_no; |
| 250 | |
| 251 | c_num_descs = num_descs; |
| 252 | c_buf_size = desc_size; |
| 253 | if (OCTEON_CN6XXX(oct)) { |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 254 | struct octeon_config *conf6x = CHIP_CONF(oct, cn6xxx); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 255 | |
| 256 | c_pkts_per_intr = (u32)CFG_GET_OQ_PKTS_PER_INTR(conf6x); |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 257 | c_refill_threshold = |
| 258 | (u32)CFG_GET_OQ_REFILL_THRESHOLD(conf6x); |
Raghu Vatsavayi | 5b82351 | 2016-09-01 11:16:07 -0700 | [diff] [blame] | 259 | } else if (OCTEON_CN23XX_PF(oct)) { |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 260 | struct octeon_config *conf23 = CHIP_CONF(oct, cn23xx_pf); |
Raghu Vatsavayi | 5b82351 | 2016-09-01 11:16:07 -0700 | [diff] [blame] | 261 | |
| 262 | c_pkts_per_intr = (u32)CFG_GET_OQ_PKTS_PER_INTR(conf23); |
| 263 | c_refill_threshold = (u32)CFG_GET_OQ_REFILL_THRESHOLD(conf23); |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 264 | } else { |
| 265 | return 1; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | droq->max_count = c_num_descs; |
| 269 | droq->buffer_size = c_buf_size; |
| 270 | |
| 271 | desc_ring_size = droq->max_count * OCT_DROQ_DESC_SIZE; |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 272 | set_dev_node(&oct->pci_dev->dev, numa_node); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 273 | droq->desc_ring = lio_dma_alloc(oct, desc_ring_size, |
| 274 | (dma_addr_t *)&droq->desc_ring_dma); |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 275 | set_dev_node(&oct->pci_dev->dev, orig_node); |
| 276 | if (!droq->desc_ring) |
| 277 | droq->desc_ring = lio_dma_alloc(oct, desc_ring_size, |
| 278 | (dma_addr_t *)&droq->desc_ring_dma); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 279 | |
| 280 | if (!droq->desc_ring) { |
| 281 | dev_err(&oct->pci_dev->dev, |
| 282 | "Output queue %d ring alloc failed\n", q_no); |
| 283 | return 1; |
| 284 | } |
| 285 | |
| 286 | dev_dbg(&oct->pci_dev->dev, "droq[%d]: desc_ring: virt: 0x%p, dma: %lx\n", |
| 287 | q_no, droq->desc_ring, droq->desc_ring_dma); |
| 288 | dev_dbg(&oct->pci_dev->dev, "droq[%d]: num_desc: %d\n", q_no, |
| 289 | droq->max_count); |
| 290 | |
| 291 | droq->info_list = |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 292 | cnnic_numa_alloc_aligned_dma((droq->max_count * |
| 293 | OCT_DROQ_INFO_SIZE), |
| 294 | &droq->info_alloc_size, |
| 295 | &droq->info_base_addr, |
| 296 | numa_node); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 297 | if (!droq->info_list) { |
| 298 | dev_err(&oct->pci_dev->dev, "Cannot allocate memory for info list.\n"); |
| 299 | lio_dma_free(oct, (droq->max_count * OCT_DROQ_DESC_SIZE), |
| 300 | droq->desc_ring, droq->desc_ring_dma); |
| 301 | return 1; |
| 302 | } |
| 303 | |
| 304 | droq->recv_buf_list = (struct octeon_recv_buffer *) |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 305 | vmalloc_node(droq->max_count * |
| 306 | OCT_DROQ_RECVBUF_SIZE, |
| 307 | numa_node); |
| 308 | if (!droq->recv_buf_list) |
| 309 | droq->recv_buf_list = (struct octeon_recv_buffer *) |
| 310 | vmalloc(droq->max_count * |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 311 | OCT_DROQ_RECVBUF_SIZE); |
| 312 | if (!droq->recv_buf_list) { |
| 313 | dev_err(&oct->pci_dev->dev, "Output queue recv buf list alloc failed\n"); |
| 314 | goto init_droq_fail; |
| 315 | } |
| 316 | |
| 317 | if (octeon_droq_setup_ring_buffers(oct, droq)) |
| 318 | goto init_droq_fail; |
| 319 | |
| 320 | droq->pkts_per_intr = c_pkts_per_intr; |
| 321 | droq->refill_threshold = c_refill_threshold; |
| 322 | |
| 323 | dev_dbg(&oct->pci_dev->dev, "DROQ INIT: max_empty_descs: %d\n", |
| 324 | droq->max_empty_descs); |
| 325 | |
| 326 | spin_lock_init(&droq->lock); |
| 327 | |
| 328 | INIT_LIST_HEAD(&droq->dispatch_list); |
| 329 | |
| 330 | /* For 56xx Pass1, this function won't be called, so no checks. */ |
| 331 | oct->fn_list.setup_oq_regs(oct, q_no); |
| 332 | |
Raghu Vatsavayi | 763185a | 2016-11-14 15:54:45 -0800 | [diff] [blame] | 333 | oct->io_qmask.oq |= BIT_ULL(q_no); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 334 | |
| 335 | return 0; |
| 336 | |
| 337 | init_droq_fail: |
| 338 | octeon_delete_droq(oct, q_no); |
| 339 | return 1; |
| 340 | } |
| 341 | |
| 342 | /* octeon_create_recv_info |
| 343 | * Parameters: |
| 344 | * octeon_dev - pointer to the octeon device structure |
| 345 | * droq - droq in which the packet arrived. |
| 346 | * buf_cnt - no. of buffers used by the packet. |
| 347 | * idx - index in the descriptor for the first buffer in the packet. |
| 348 | * Description: |
| 349 | * Allocates a recv_info_t and copies the buffer addresses for packet data |
| 350 | * into the recv_pkt space which starts at an 8B offset from recv_info_t. |
| 351 | * Flags the descriptors for refill later. If available descriptors go |
| 352 | * below the threshold to receive a 64K pkt, new buffers are first allocated |
| 353 | * before the recv_pkt_t is created. |
| 354 | * This routine will be called in interrupt context. |
| 355 | * Returns: |
| 356 | * Success: Pointer to recv_info_t |
| 357 | * Failure: NULL. |
| 358 | * Locks: |
| 359 | * The droq->lock is held when this routine is called. |
| 360 | */ |
| 361 | static inline struct octeon_recv_info *octeon_create_recv_info( |
| 362 | struct octeon_device *octeon_dev, |
| 363 | struct octeon_droq *droq, |
| 364 | u32 buf_cnt, |
| 365 | u32 idx) |
| 366 | { |
| 367 | struct octeon_droq_info *info; |
| 368 | struct octeon_recv_pkt *recv_pkt; |
| 369 | struct octeon_recv_info *recv_info; |
| 370 | u32 i, bytes_left; |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 371 | struct octeon_skb_page_info *pg_info; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 372 | |
| 373 | info = &droq->info_list[idx]; |
| 374 | |
| 375 | recv_info = octeon_alloc_recv_info(sizeof(struct __dispatch)); |
| 376 | if (!recv_info) |
| 377 | return NULL; |
| 378 | |
| 379 | recv_pkt = recv_info->recv_pkt; |
| 380 | recv_pkt->rh = info->rh; |
| 381 | recv_pkt->length = (u32)info->length; |
| 382 | recv_pkt->buffer_count = (u16)buf_cnt; |
| 383 | recv_pkt->octeon_id = (u16)octeon_dev->octeon_id; |
| 384 | |
| 385 | i = 0; |
| 386 | bytes_left = (u32)info->length; |
| 387 | |
| 388 | while (buf_cnt) { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 389 | { |
| 390 | pg_info = &droq->recv_buf_list[idx].pg_info; |
| 391 | |
| 392 | lio_unmap_ring(octeon_dev->pci_dev, |
| 393 | (u64)pg_info->dma); |
| 394 | pg_info->page = NULL; |
| 395 | pg_info->dma = 0; |
| 396 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 397 | |
| 398 | recv_pkt->buffer_size[i] = |
| 399 | (bytes_left >= |
| 400 | droq->buffer_size) ? droq->buffer_size : bytes_left; |
| 401 | |
| 402 | recv_pkt->buffer_ptr[i] = droq->recv_buf_list[idx].buffer; |
| 403 | droq->recv_buf_list[idx].buffer = NULL; |
| 404 | |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 405 | idx = incr_index(idx, 1, droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 406 | bytes_left -= droq->buffer_size; |
| 407 | i++; |
| 408 | buf_cnt--; |
| 409 | } |
| 410 | |
| 411 | return recv_info; |
| 412 | } |
| 413 | |
| 414 | /* If we were not able to refill all buffers, try to move around |
| 415 | * the buffers that were not dispatched. |
| 416 | */ |
| 417 | static inline u32 |
| 418 | octeon_droq_refill_pullup_descs(struct octeon_droq *droq, |
| 419 | struct octeon_droq_desc *desc_ring) |
| 420 | { |
| 421 | u32 desc_refilled = 0; |
| 422 | |
| 423 | u32 refill_index = droq->refill_idx; |
| 424 | |
| 425 | while (refill_index != droq->read_idx) { |
| 426 | if (droq->recv_buf_list[refill_index].buffer) { |
| 427 | droq->recv_buf_list[droq->refill_idx].buffer = |
| 428 | droq->recv_buf_list[refill_index].buffer; |
| 429 | droq->recv_buf_list[droq->refill_idx].data = |
| 430 | droq->recv_buf_list[refill_index].data; |
| 431 | desc_ring[droq->refill_idx].buffer_ptr = |
| 432 | desc_ring[refill_index].buffer_ptr; |
| 433 | droq->recv_buf_list[refill_index].buffer = NULL; |
| 434 | desc_ring[refill_index].buffer_ptr = 0; |
| 435 | do { |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 436 | droq->refill_idx = incr_index(droq->refill_idx, |
| 437 | 1, |
| 438 | droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 439 | desc_refilled++; |
| 440 | droq->refill_count--; |
| 441 | } while (droq->recv_buf_list[droq->refill_idx]. |
| 442 | buffer); |
| 443 | } |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 444 | refill_index = incr_index(refill_index, 1, droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 445 | } /* while */ |
| 446 | return desc_refilled; |
| 447 | } |
| 448 | |
| 449 | /* octeon_droq_refill |
| 450 | * Parameters: |
| 451 | * droq - droq in which descriptors require new buffers. |
| 452 | * Description: |
| 453 | * Called during normal DROQ processing in interrupt mode or by the poll |
| 454 | * thread to refill the descriptors from which buffers were dispatched |
| 455 | * to upper layers. Attempts to allocate new buffers. If that fails, moves |
| 456 | * up buffers (that were not dispatched) to form a contiguous ring. |
| 457 | * Returns: |
| 458 | * No of descriptors refilled. |
| 459 | * Locks: |
| 460 | * This routine is called with droq->lock held. |
| 461 | */ |
| 462 | static u32 |
| 463 | octeon_droq_refill(struct octeon_device *octeon_dev, struct octeon_droq *droq) |
| 464 | { |
| 465 | struct octeon_droq_desc *desc_ring; |
| 466 | void *buf = NULL; |
| 467 | u8 *data; |
| 468 | u32 desc_refilled = 0; |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 469 | struct octeon_skb_page_info *pg_info; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 470 | |
| 471 | desc_ring = droq->desc_ring; |
| 472 | |
| 473 | while (droq->refill_count && (desc_refilled < droq->max_count)) { |
| 474 | /* If a valid buffer exists (happens if there is no dispatch), |
| 475 | * reuse |
| 476 | * the buffer, else allocate. |
| 477 | */ |
| 478 | if (!droq->recv_buf_list[droq->refill_idx].buffer) { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 479 | pg_info = |
| 480 | &droq->recv_buf_list[droq->refill_idx].pg_info; |
| 481 | /* Either recycle the existing pages or go for |
| 482 | * new page alloc |
| 483 | */ |
| 484 | if (pg_info->page) |
| 485 | buf = recv_buffer_reuse(octeon_dev, pg_info); |
| 486 | else |
| 487 | buf = recv_buffer_alloc(octeon_dev, pg_info); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 488 | /* If a buffer could not be allocated, no point in |
| 489 | * continuing |
| 490 | */ |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 491 | if (!buf) { |
| 492 | droq->stats.rx_alloc_failure++; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 493 | break; |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 494 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 495 | droq->recv_buf_list[droq->refill_idx].buffer = |
| 496 | buf; |
| 497 | data = get_rbd(buf); |
| 498 | } else { |
| 499 | data = get_rbd(droq->recv_buf_list |
| 500 | [droq->refill_idx].buffer); |
| 501 | } |
| 502 | |
| 503 | droq->recv_buf_list[droq->refill_idx].data = data; |
| 504 | |
| 505 | desc_ring[droq->refill_idx].buffer_ptr = |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 506 | lio_map_ring(droq->recv_buf_list[droq-> |
| 507 | refill_idx].buffer); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 508 | /* Reset any previous values in the length field. */ |
| 509 | droq->info_list[droq->refill_idx].length = 0; |
| 510 | |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 511 | droq->refill_idx = incr_index(droq->refill_idx, 1, |
| 512 | droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 513 | desc_refilled++; |
| 514 | droq->refill_count--; |
| 515 | } |
| 516 | |
| 517 | if (droq->refill_count) |
| 518 | desc_refilled += |
| 519 | octeon_droq_refill_pullup_descs(droq, desc_ring); |
| 520 | |
| 521 | /* if droq->refill_count |
| 522 | * The refill count would not change in pass two. We only moved buffers |
| 523 | * to close the gap in the ring, but we would still have the same no. of |
| 524 | * buffers to refill. |
| 525 | */ |
| 526 | return desc_refilled; |
| 527 | } |
| 528 | |
| 529 | static inline u32 |
| 530 | octeon_droq_get_bufcount(u32 buf_size, u32 total_len) |
| 531 | { |
| 532 | u32 buf_cnt = 0; |
| 533 | |
| 534 | while (total_len > (buf_size * buf_cnt)) |
| 535 | buf_cnt++; |
| 536 | return buf_cnt; |
| 537 | } |
| 538 | |
| 539 | static int |
| 540 | octeon_droq_dispatch_pkt(struct octeon_device *oct, |
| 541 | struct octeon_droq *droq, |
| 542 | union octeon_rh *rh, |
| 543 | struct octeon_droq_info *info) |
| 544 | { |
| 545 | u32 cnt; |
| 546 | octeon_dispatch_fn_t disp_fn; |
| 547 | struct octeon_recv_info *rinfo; |
| 548 | |
| 549 | cnt = octeon_droq_get_bufcount(droq->buffer_size, (u32)info->length); |
| 550 | |
| 551 | disp_fn = octeon_get_dispatch(oct, (u16)rh->r.opcode, |
| 552 | (u16)rh->r.subcode); |
| 553 | if (disp_fn) { |
| 554 | rinfo = octeon_create_recv_info(oct, droq, cnt, droq->read_idx); |
| 555 | if (rinfo) { |
| 556 | struct __dispatch *rdisp = rinfo->rsvd; |
| 557 | |
| 558 | rdisp->rinfo = rinfo; |
| 559 | rdisp->disp_fn = disp_fn; |
| 560 | rinfo->recv_pkt->rh = *rh; |
| 561 | list_add_tail(&rdisp->list, |
| 562 | &droq->dispatch_list); |
| 563 | } else { |
| 564 | droq->stats.dropped_nomem++; |
| 565 | } |
| 566 | } else { |
Raghu Vatsavayi | a2c64b6 | 2016-07-03 13:56:55 -0700 | [diff] [blame] | 567 | dev_err(&oct->pci_dev->dev, "DROQ: No dispatch function (opcode %u/%u)\n", |
| 568 | (unsigned int)rh->r.opcode, |
| 569 | (unsigned int)rh->r.subcode); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 570 | droq->stats.dropped_nodispatch++; |
Raghu Vatsavayi | 9ded1a5 | 2016-09-01 11:16:10 -0700 | [diff] [blame] | 571 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 572 | |
| 573 | return cnt; |
| 574 | } |
| 575 | |
| 576 | static inline void octeon_droq_drop_packets(struct octeon_device *oct, |
| 577 | struct octeon_droq *droq, |
| 578 | u32 cnt) |
| 579 | { |
| 580 | u32 i = 0, buf_cnt; |
| 581 | struct octeon_droq_info *info; |
| 582 | |
| 583 | for (i = 0; i < cnt; i++) { |
| 584 | info = &droq->info_list[droq->read_idx]; |
| 585 | octeon_swap_8B_data((u64 *)info, 2); |
| 586 | |
| 587 | if (info->length) { |
| 588 | info->length -= OCT_RH_SIZE; |
| 589 | droq->stats.bytes_received += info->length; |
| 590 | buf_cnt = octeon_droq_get_bufcount(droq->buffer_size, |
| 591 | (u32)info->length); |
| 592 | } else { |
| 593 | dev_err(&oct->pci_dev->dev, "DROQ: In drop: pkt with len 0\n"); |
| 594 | buf_cnt = 1; |
| 595 | } |
| 596 | |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 597 | droq->read_idx = incr_index(droq->read_idx, buf_cnt, |
| 598 | droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 599 | droq->refill_count += buf_cnt; |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | static u32 |
| 604 | octeon_droq_fast_process_packets(struct octeon_device *oct, |
| 605 | struct octeon_droq *droq, |
| 606 | u32 pkts_to_process) |
| 607 | { |
| 608 | struct octeon_droq_info *info; |
| 609 | union octeon_rh *rh; |
| 610 | u32 pkt, total_len = 0, pkt_count; |
| 611 | |
| 612 | pkt_count = pkts_to_process; |
| 613 | |
| 614 | for (pkt = 0; pkt < pkt_count; pkt++) { |
| 615 | u32 pkt_len = 0; |
| 616 | struct sk_buff *nicbuf = NULL; |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 617 | struct octeon_skb_page_info *pg_info; |
| 618 | void *buf; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 619 | |
| 620 | info = &droq->info_list[droq->read_idx]; |
| 621 | octeon_swap_8B_data((u64 *)info, 2); |
| 622 | |
| 623 | if (!info->length) { |
| 624 | dev_err(&oct->pci_dev->dev, |
| 625 | "DROQ[%d] idx: %d len:0, pkt_cnt: %d\n", |
| 626 | droq->q_no, droq->read_idx, pkt_count); |
| 627 | print_hex_dump_bytes("", DUMP_PREFIX_ADDRESS, |
| 628 | (u8 *)info, |
| 629 | OCT_DROQ_INFO_SIZE); |
| 630 | break; |
| 631 | } |
| 632 | |
| 633 | /* Len of resp hdr in included in the received data len. */ |
| 634 | info->length -= OCT_RH_SIZE; |
| 635 | rh = &info->rh; |
| 636 | |
| 637 | total_len += (u32)info->length; |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 638 | if (opcode_slow_path(rh)) { |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 639 | u32 buf_cnt; |
| 640 | |
| 641 | buf_cnt = octeon_droq_dispatch_pkt(oct, droq, rh, info); |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 642 | droq->read_idx = incr_index(droq->read_idx, |
| 643 | buf_cnt, droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 644 | droq->refill_count += buf_cnt; |
| 645 | } else { |
| 646 | if (info->length <= droq->buffer_size) { |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 647 | pkt_len = (u32)info->length; |
| 648 | nicbuf = droq->recv_buf_list[ |
| 649 | droq->read_idx].buffer; |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 650 | pg_info = &droq->recv_buf_list[ |
| 651 | droq->read_idx].pg_info; |
| 652 | if (recv_buffer_recycle(oct, pg_info)) |
| 653 | pg_info->page = NULL; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 654 | droq->recv_buf_list[droq->read_idx].buffer = |
| 655 | NULL; |
Raghu Vatsavayi | a2c64b6 | 2016-07-03 13:56:55 -0700 | [diff] [blame] | 656 | |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 657 | droq->read_idx = incr_index(droq->read_idx, 1, |
| 658 | droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 659 | droq->refill_count++; |
| 660 | } else { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 661 | nicbuf = octeon_fast_packet_alloc((u32) |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 662 | info->length); |
| 663 | pkt_len = 0; |
| 664 | /* nicbuf allocation can fail. We'll handle it |
| 665 | * inside the loop. |
| 666 | */ |
| 667 | while (pkt_len < info->length) { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 668 | int cpy_len, idx = droq->read_idx; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 669 | |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 670 | cpy_len = ((pkt_len + droq->buffer_size) |
| 671 | > info->length) ? |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 672 | ((u32)info->length - pkt_len) : |
| 673 | droq->buffer_size; |
| 674 | |
| 675 | if (nicbuf) { |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 676 | octeon_fast_packet_next(droq, |
| 677 | nicbuf, |
| 678 | cpy_len, |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 679 | idx); |
| 680 | buf = droq->recv_buf_list[idx]. |
| 681 | buffer; |
| 682 | recv_buffer_fast_free(buf); |
| 683 | droq->recv_buf_list[idx].buffer |
| 684 | = NULL; |
| 685 | } else { |
| 686 | droq->stats.rx_alloc_failure++; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | pkt_len += cpy_len; |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 690 | droq->read_idx = |
| 691 | incr_index(droq->read_idx, 1, |
| 692 | droq->max_count); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 693 | droq->refill_count++; |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | if (nicbuf) { |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 698 | if (droq->ops.fptr) { |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 699 | droq->ops.fptr(oct->octeon_id, |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 700 | nicbuf, pkt_len, |
Raghu Vatsavayi | 0cece6c | 2016-06-14 16:54:50 -0700 | [diff] [blame] | 701 | rh, &droq->napi, |
| 702 | droq->ops.farg); |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 703 | } else { |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 704 | recv_buffer_free(nicbuf); |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 705 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 706 | } |
| 707 | } |
| 708 | |
| 709 | if (droq->refill_count >= droq->refill_threshold) { |
| 710 | int desc_refilled = octeon_droq_refill(oct, droq); |
| 711 | |
| 712 | /* Flush the droq descriptor data to memory to be sure |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 713 | * that when we update the credits the data in memory |
| 714 | * is accurate. |
| 715 | */ |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 716 | wmb(); |
| 717 | writel((desc_refilled), droq->pkts_credit_reg); |
| 718 | /* make sure mmio write completes */ |
| 719 | mmiowb(); |
| 720 | } |
| 721 | |
Raghu Vatsavayi | cabeb13 | 2016-06-14 16:54:47 -0700 | [diff] [blame] | 722 | } /* for (each packet)... */ |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 723 | |
| 724 | /* Increment refill_count by the number of buffers processed. */ |
| 725 | droq->stats.pkts_received += pkt; |
| 726 | droq->stats.bytes_received += total_len; |
| 727 | |
| 728 | if ((droq->ops.drop_on_max) && (pkts_to_process - pkt)) { |
| 729 | octeon_droq_drop_packets(oct, droq, (pkts_to_process - pkt)); |
| 730 | |
| 731 | droq->stats.dropped_toomany += (pkts_to_process - pkt); |
| 732 | return pkts_to_process; |
| 733 | } |
| 734 | |
| 735 | return pkt; |
| 736 | } |
| 737 | |
| 738 | int |
| 739 | octeon_droq_process_packets(struct octeon_device *oct, |
| 740 | struct octeon_droq *droq, |
| 741 | u32 budget) |
| 742 | { |
| 743 | u32 pkt_count = 0, pkts_processed = 0; |
| 744 | struct list_head *tmp, *tmp2; |
| 745 | |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 746 | /* Grab the droq lock */ |
| 747 | spin_lock(&droq->lock); |
| 748 | |
| 749 | octeon_droq_check_hw_for_pkts(droq); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 750 | pkt_count = atomic_read(&droq->pkts_pending); |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 751 | |
| 752 | if (!pkt_count) { |
| 753 | spin_unlock(&droq->lock); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 754 | return 0; |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 755 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 756 | |
| 757 | if (pkt_count > budget) |
| 758 | pkt_count = budget; |
| 759 | |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 760 | pkts_processed = octeon_droq_fast_process_packets(oct, droq, pkt_count); |
| 761 | |
| 762 | atomic_sub(pkts_processed, &droq->pkts_pending); |
| 763 | |
| 764 | /* Release the spin lock */ |
| 765 | spin_unlock(&droq->lock); |
| 766 | |
| 767 | list_for_each_safe(tmp, tmp2, &droq->dispatch_list) { |
| 768 | struct __dispatch *rdisp = (struct __dispatch *)tmp; |
| 769 | |
| 770 | list_del(tmp); |
| 771 | rdisp->disp_fn(rdisp->rinfo, |
| 772 | octeon_get_dispatch_arg |
| 773 | (oct, |
| 774 | (u16)rdisp->rinfo->recv_pkt->rh.r.opcode, |
| 775 | (u16)rdisp->rinfo->recv_pkt->rh.r.subcode)); |
| 776 | } |
| 777 | |
| 778 | /* If there are packets pending. schedule tasklet again */ |
| 779 | if (atomic_read(&droq->pkts_pending)) |
| 780 | return 1; |
| 781 | |
| 782 | return 0; |
| 783 | } |
| 784 | |
| 785 | /** |
| 786 | * Utility function to poll for packets. check_hw_for_packets must be |
| 787 | * called before calling this routine. |
| 788 | */ |
| 789 | |
| 790 | static int |
| 791 | octeon_droq_process_poll_pkts(struct octeon_device *oct, |
| 792 | struct octeon_droq *droq, u32 budget) |
| 793 | { |
| 794 | struct list_head *tmp, *tmp2; |
| 795 | u32 pkts_available = 0, pkts_processed = 0; |
| 796 | u32 total_pkts_processed = 0; |
| 797 | |
| 798 | if (budget > droq->max_count) |
| 799 | budget = droq->max_count; |
| 800 | |
| 801 | spin_lock(&droq->lock); |
| 802 | |
| 803 | while (total_pkts_processed < budget) { |
Raghu Vatsavayi | cd8b1eb | 2016-08-31 11:03:22 -0700 | [diff] [blame] | 804 | octeon_droq_check_hw_for_pkts(droq); |
| 805 | |
Raghu Vatsavayi | 97a2532 | 2016-11-14 15:54:47 -0800 | [diff] [blame^] | 806 | pkts_available = min((budget - total_pkts_processed), |
| 807 | (u32)(atomic_read(&droq->pkts_pending))); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 808 | |
| 809 | if (pkts_available == 0) |
| 810 | break; |
| 811 | |
| 812 | pkts_processed = |
| 813 | octeon_droq_fast_process_packets(oct, droq, |
| 814 | pkts_available); |
| 815 | |
| 816 | atomic_sub(pkts_processed, &droq->pkts_pending); |
| 817 | |
| 818 | total_pkts_processed += pkts_processed; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | spin_unlock(&droq->lock); |
| 822 | |
| 823 | list_for_each_safe(tmp, tmp2, &droq->dispatch_list) { |
| 824 | struct __dispatch *rdisp = (struct __dispatch *)tmp; |
| 825 | |
| 826 | list_del(tmp); |
| 827 | rdisp->disp_fn(rdisp->rinfo, |
| 828 | octeon_get_dispatch_arg |
| 829 | (oct, |
| 830 | (u16)rdisp->rinfo->recv_pkt->rh.r.opcode, |
| 831 | (u16)rdisp->rinfo->recv_pkt->rh.r.subcode)); |
| 832 | } |
| 833 | |
| 834 | return total_pkts_processed; |
| 835 | } |
| 836 | |
| 837 | int |
| 838 | octeon_process_droq_poll_cmd(struct octeon_device *oct, u32 q_no, int cmd, |
| 839 | u32 arg) |
| 840 | { |
| 841 | struct octeon_droq *droq; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 842 | |
| 843 | droq = oct->droq[q_no]; |
| 844 | |
| 845 | if (cmd == POLL_EVENT_PROCESS_PKTS) |
| 846 | return octeon_droq_process_poll_pkts(oct, droq, arg); |
| 847 | |
| 848 | if (cmd == POLL_EVENT_PENDING_PKTS) { |
| 849 | u32 pkt_cnt = atomic_read(&droq->pkts_pending); |
| 850 | |
| 851 | return octeon_droq_process_packets(oct, droq, pkt_cnt); |
| 852 | } |
| 853 | |
| 854 | if (cmd == POLL_EVENT_ENABLE_INTR) { |
| 855 | u32 value; |
| 856 | unsigned long flags; |
| 857 | |
| 858 | /* Enable Pkt Interrupt */ |
| 859 | switch (oct->chip_id) { |
| 860 | case OCTEON_CN66XX: |
| 861 | case OCTEON_CN68XX: { |
| 862 | struct octeon_cn6xxx *cn6xxx = |
| 863 | (struct octeon_cn6xxx *)oct->chip; |
| 864 | spin_lock_irqsave |
| 865 | (&cn6xxx->lock_for_droq_int_enb_reg, flags); |
| 866 | value = |
| 867 | octeon_read_csr(oct, |
| 868 | CN6XXX_SLI_PKT_TIME_INT_ENB); |
| 869 | value |= (1 << q_no); |
| 870 | octeon_write_csr(oct, |
| 871 | CN6XXX_SLI_PKT_TIME_INT_ENB, |
| 872 | value); |
| 873 | value = |
| 874 | octeon_read_csr(oct, |
| 875 | CN6XXX_SLI_PKT_CNT_INT_ENB); |
| 876 | value |= (1 << q_no); |
| 877 | octeon_write_csr(oct, |
| 878 | CN6XXX_SLI_PKT_CNT_INT_ENB, |
| 879 | value); |
| 880 | |
| 881 | /* don't bother flushing the enables */ |
| 882 | |
| 883 | spin_unlock_irqrestore |
| 884 | (&cn6xxx->lock_for_droq_int_enb_reg, flags); |
| 885 | return 0; |
| 886 | } |
| 887 | break; |
Raghu Vatsavayi | 9ded1a5 | 2016-09-01 11:16:10 -0700 | [diff] [blame] | 888 | case OCTEON_CN23XX_PF_VID: { |
| 889 | lio_enable_irq(oct->droq[q_no], oct->instr_queue[q_no]); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 890 | } |
Raghu Vatsavayi | 9ded1a5 | 2016-09-01 11:16:10 -0700 | [diff] [blame] | 891 | break; |
| 892 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 893 | return 0; |
| 894 | } |
| 895 | |
| 896 | dev_err(&oct->pci_dev->dev, "%s Unknown command: %d\n", __func__, cmd); |
| 897 | return -EINVAL; |
| 898 | } |
| 899 | |
| 900 | int octeon_register_droq_ops(struct octeon_device *oct, u32 q_no, |
| 901 | struct octeon_droq_ops *ops) |
| 902 | { |
| 903 | struct octeon_droq *droq; |
| 904 | unsigned long flags; |
| 905 | struct octeon_config *oct_cfg = NULL; |
| 906 | |
| 907 | oct_cfg = octeon_get_conf(oct); |
| 908 | |
| 909 | if (!oct_cfg) |
| 910 | return -EINVAL; |
| 911 | |
| 912 | if (!(ops)) { |
| 913 | dev_err(&oct->pci_dev->dev, "%s: droq_ops pointer is NULL\n", |
| 914 | __func__); |
| 915 | return -EINVAL; |
| 916 | } |
| 917 | |
| 918 | if (q_no >= CFG_GET_OQ_MAX_Q(oct_cfg)) { |
| 919 | dev_err(&oct->pci_dev->dev, "%s: droq id (%d) exceeds MAX (%d)\n", |
| 920 | __func__, q_no, (oct->num_oqs - 1)); |
| 921 | return -EINVAL; |
| 922 | } |
| 923 | |
| 924 | droq = oct->droq[q_no]; |
| 925 | |
| 926 | spin_lock_irqsave(&droq->lock, flags); |
| 927 | |
| 928 | memcpy(&droq->ops, ops, sizeof(struct octeon_droq_ops)); |
| 929 | |
| 930 | spin_unlock_irqrestore(&droq->lock, flags); |
| 931 | |
| 932 | return 0; |
| 933 | } |
| 934 | |
| 935 | int octeon_unregister_droq_ops(struct octeon_device *oct, u32 q_no) |
| 936 | { |
| 937 | unsigned long flags; |
| 938 | struct octeon_droq *droq; |
| 939 | struct octeon_config *oct_cfg = NULL; |
| 940 | |
| 941 | oct_cfg = octeon_get_conf(oct); |
| 942 | |
| 943 | if (!oct_cfg) |
| 944 | return -EINVAL; |
| 945 | |
| 946 | if (q_no >= CFG_GET_OQ_MAX_Q(oct_cfg)) { |
| 947 | dev_err(&oct->pci_dev->dev, "%s: droq id (%d) exceeds MAX (%d)\n", |
| 948 | __func__, q_no, oct->num_oqs - 1); |
| 949 | return -EINVAL; |
| 950 | } |
| 951 | |
| 952 | droq = oct->droq[q_no]; |
| 953 | |
| 954 | if (!droq) { |
| 955 | dev_info(&oct->pci_dev->dev, |
| 956 | "Droq id (%d) not available.\n", q_no); |
| 957 | return 0; |
| 958 | } |
| 959 | |
| 960 | spin_lock_irqsave(&droq->lock, flags); |
| 961 | |
| 962 | droq->ops.fptr = NULL; |
Raghu Vatsavayi | 0cece6c | 2016-06-14 16:54:50 -0700 | [diff] [blame] | 963 | droq->ops.farg = NULL; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 964 | droq->ops.drop_on_max = 0; |
| 965 | |
| 966 | spin_unlock_irqrestore(&droq->lock, flags); |
| 967 | |
| 968 | return 0; |
| 969 | } |
| 970 | |
| 971 | int octeon_create_droq(struct octeon_device *oct, |
| 972 | u32 q_no, u32 num_descs, |
| 973 | u32 desc_size, void *app_ctx) |
| 974 | { |
| 975 | struct octeon_droq *droq; |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 976 | int numa_node = cpu_to_node(q_no % num_online_cpus()); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 977 | |
| 978 | if (oct->droq[q_no]) { |
| 979 | dev_dbg(&oct->pci_dev->dev, "Droq already in use. Cannot create droq %d again\n", |
| 980 | q_no); |
| 981 | return 1; |
| 982 | } |
| 983 | |
| 984 | /* Allocate the DS for the new droq. */ |
Raghu Vatsavayi | 96ae48b | 2016-06-14 16:54:46 -0700 | [diff] [blame] | 985 | droq = vmalloc_node(sizeof(*droq), numa_node); |
| 986 | if (!droq) |
| 987 | droq = vmalloc(sizeof(*droq)); |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 988 | if (!droq) |
Raghu Vatsavayi | 515e752 | 2016-11-14 15:54:44 -0800 | [diff] [blame] | 989 | return -1; |
| 990 | |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 991 | memset(droq, 0, sizeof(struct octeon_droq)); |
| 992 | |
| 993 | /*Disable the pkt o/p for this Q */ |
| 994 | octeon_set_droq_pkt_op(oct, q_no, 0); |
| 995 | oct->droq[q_no] = droq; |
| 996 | |
| 997 | /* Initialize the Droq */ |
Raghu Vatsavayi | 515e752 | 2016-11-14 15:54:44 -0800 | [diff] [blame] | 998 | if (octeon_init_droq(oct, q_no, num_descs, desc_size, app_ctx)) { |
| 999 | vfree(oct->droq[q_no]); |
| 1000 | oct->droq[q_no] = NULL; |
| 1001 | return -1; |
| 1002 | } |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 1003 | |
| 1004 | oct->num_oqs++; |
| 1005 | |
| 1006 | dev_dbg(&oct->pci_dev->dev, "%s: Total number of OQ: %d\n", __func__, |
| 1007 | oct->num_oqs); |
| 1008 | |
| 1009 | /* Global Droq register settings */ |
| 1010 | |
| 1011 | /* As of now not required, as setting are done for all 32 Droqs at |
| 1012 | * the same time. |
| 1013 | */ |
| 1014 | return 0; |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 1015 | } |