1 /* 2 * aQuantia Corporation Network Driver 3 * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 */ 9 10 /* File aq_ring.c: Definition of functions for Rx/Tx rings. */ 11 12 #include "aq_ring.h" 13 #include "aq_nic.h" 14 #include "aq_hw.h" 15 16 #include <linux/netdevice.h> 17 #include <linux/etherdevice.h> 18 19 static struct aq_ring_s *aq_ring_alloc(struct aq_ring_s *self, 20 struct aq_nic_s *aq_nic) 21 { 22 int err = 0; 23 24 self->buff_ring = 25 kcalloc(self->size, sizeof(struct aq_ring_buff_s), GFP_KERNEL); 26 27 if (!self->buff_ring) { 28 err = -ENOMEM; 29 goto err_exit; 30 } 31 self->dx_ring = dma_alloc_coherent(aq_nic_get_dev(aq_nic), 32 self->size * self->dx_size, 33 &self->dx_ring_pa, GFP_KERNEL); 34 if (!self->dx_ring) { 35 err = -ENOMEM; 36 goto err_exit; 37 } 38 39 err_exit: 40 if (err < 0) { 41 aq_ring_free(self); 42 self = NULL; 43 } 44 return self; 45 } 46 47 struct aq_ring_s *aq_ring_tx_alloc(struct aq_ring_s *self, 48 struct aq_nic_s *aq_nic, 49 unsigned int idx, 50 struct aq_nic_cfg_s *aq_nic_cfg) 51 { 52 int err = 0; 53 54 self->aq_nic = aq_nic; 55 self->idx = idx; 56 self->size = aq_nic_cfg->txds; 57 self->dx_size = aq_nic_cfg->aq_hw_caps->txd_size; 58 59 self = aq_ring_alloc(self, aq_nic); 60 if (!self) { 61 err = -ENOMEM; 62 goto err_exit; 63 } 64 65 err_exit: 66 if (err < 0) { 67 aq_ring_free(self); 68 self = NULL; 69 } 70 return self; 71 } 72 73 struct aq_ring_s *aq_ring_rx_alloc(struct aq_ring_s *self, 74 struct aq_nic_s *aq_nic, 75 unsigned int idx, 76 struct aq_nic_cfg_s *aq_nic_cfg) 77 { 78 int err = 0; 79 80 self->aq_nic = aq_nic; 81 self->idx = idx; 82 self->size = aq_nic_cfg->rxds; 83 self->dx_size = aq_nic_cfg->aq_hw_caps->rxd_size; 84 85 self = aq_ring_alloc(self, aq_nic); 86 if (!self) { 87 err = -ENOMEM; 88 goto err_exit; 89 } 90 91 err_exit: 92 if (err < 0) { 93 aq_ring_free(self); 94 self = NULL; 95 } 96 return self; 97 } 98 99 int aq_ring_init(struct aq_ring_s *self) 100 { 101 self->hw_head = 0; 102 self->sw_head = 0; 103 self->sw_tail = 0; 104 return 0; 105 } 106 107 static inline bool aq_ring_dx_in_range(unsigned int h, unsigned int i, 108 unsigned int t) 109 { 110 return (h < t) ? ((h < i) && (i < t)) : ((h < i) || (i < t)); 111 } 112 113 void aq_ring_update_queue_state(struct aq_ring_s *ring) 114 { 115 if (aq_ring_avail_dx(ring) <= AQ_CFG_SKB_FRAGS_MAX) 116 aq_ring_queue_stop(ring); 117 else if (aq_ring_avail_dx(ring) > AQ_CFG_RESTART_DESC_THRES) 118 aq_ring_queue_wake(ring); 119 } 120 121 void aq_ring_queue_wake(struct aq_ring_s *ring) 122 { 123 struct net_device *ndev = aq_nic_get_ndev(ring->aq_nic); 124 125 if (__netif_subqueue_stopped(ndev, ring->idx)) { 126 netif_wake_subqueue(ndev, ring->idx); 127 ring->stats.tx.queue_restarts++; 128 } 129 } 130 131 void aq_ring_queue_stop(struct aq_ring_s *ring) 132 { 133 struct net_device *ndev = aq_nic_get_ndev(ring->aq_nic); 134 135 if (!__netif_subqueue_stopped(ndev, ring->idx)) 136 netif_stop_subqueue(ndev, ring->idx); 137 } 138 139 bool aq_ring_tx_clean(struct aq_ring_s *self) 140 { 141 struct device *dev = aq_nic_get_dev(self->aq_nic); 142 unsigned int budget = AQ_CFG_TX_CLEAN_BUDGET; 143 144 for (; self->sw_head != self->hw_head && budget--; 145 self->sw_head = aq_ring_next_dx(self, self->sw_head)) { 146 struct aq_ring_buff_s *buff = &self->buff_ring[self->sw_head]; 147 148 if (likely(buff->is_mapped)) { 149 if (unlikely(buff->is_sop)) { 150 if (!buff->is_eop && 151 buff->eop_index != 0xffffU && 152 (!aq_ring_dx_in_range(self->sw_head, 153 buff->eop_index, 154 self->hw_head))) 155 break; 156 157 dma_unmap_single(dev, buff->pa, buff->len, 158 DMA_TO_DEVICE); 159 } else { 160 dma_unmap_page(dev, buff->pa, buff->len, 161 DMA_TO_DEVICE); 162 } 163 } 164 165 if (unlikely(buff->is_eop)) 166 dev_kfree_skb_any(buff->skb); 167 168 buff->pa = 0U; 169 buff->eop_index = 0xffffU; 170 } 171 172 return !!budget; 173 } 174 175 static void aq_rx_checksum(struct aq_ring_s *self, 176 struct aq_ring_buff_s *buff, 177 struct sk_buff *skb) 178 { 179 if (!(self->aq_nic->ndev->features & NETIF_F_RXCSUM)) 180 return; 181 182 if (unlikely(buff->is_cso_err)) { 183 ++self->stats.rx.errors; 184 skb->ip_summed = CHECKSUM_NONE; 185 return; 186 } 187 if (buff->is_ip_cso) { 188 __skb_incr_checksum_unnecessary(skb); 189 } else { 190 skb->ip_summed = CHECKSUM_NONE; 191 } 192 193 if (buff->is_udp_cso || buff->is_tcp_cso) 194 __skb_incr_checksum_unnecessary(skb); 195 } 196 197 #define AQ_SKB_ALIGN SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) 198 int aq_ring_rx_clean(struct aq_ring_s *self, 199 struct napi_struct *napi, 200 int *work_done, 201 int budget) 202 { 203 struct net_device *ndev = aq_nic_get_ndev(self->aq_nic); 204 int err = 0; 205 bool is_rsc_completed = true; 206 207 for (; (self->sw_head != self->hw_head) && budget; 208 self->sw_head = aq_ring_next_dx(self, self->sw_head), 209 --budget, ++(*work_done)) { 210 struct aq_ring_buff_s *buff = &self->buff_ring[self->sw_head]; 211 struct sk_buff *skb = NULL; 212 unsigned int next_ = 0U; 213 unsigned int i = 0U; 214 struct aq_ring_buff_s *buff_ = NULL; 215 216 if (buff->is_error) { 217 __free_pages(buff->page, 0); 218 continue; 219 } 220 221 if (buff->is_cleaned) 222 continue; 223 224 if (!buff->is_eop) { 225 for (next_ = buff->next, 226 buff_ = &self->buff_ring[next_]; true; 227 next_ = buff_->next, 228 buff_ = &self->buff_ring[next_]) { 229 is_rsc_completed = 230 aq_ring_dx_in_range(self->sw_head, 231 next_, 232 self->hw_head); 233 234 if (unlikely(!is_rsc_completed)) { 235 is_rsc_completed = false; 236 break; 237 } 238 239 if (buff_->is_eop) 240 break; 241 } 242 243 if (!is_rsc_completed) { 244 err = 0; 245 goto err_exit; 246 } 247 } 248 249 /* for single fragment packets use build_skb() */ 250 if (buff->is_eop && 251 buff->len <= AQ_CFG_RX_FRAME_MAX - AQ_SKB_ALIGN) { 252 skb = build_skb(page_address(buff->page), 253 AQ_CFG_RX_FRAME_MAX); 254 if (unlikely(!skb)) { 255 err = -ENOMEM; 256 goto err_exit; 257 } 258 259 skb_put(skb, buff->len); 260 } else { 261 skb = netdev_alloc_skb(ndev, ETH_HLEN); 262 if (unlikely(!skb)) { 263 err = -ENOMEM; 264 goto err_exit; 265 } 266 skb_put(skb, ETH_HLEN); 267 memcpy(skb->data, page_address(buff->page), ETH_HLEN); 268 269 skb_add_rx_frag(skb, 0, buff->page, ETH_HLEN, 270 buff->len - ETH_HLEN, 271 SKB_TRUESIZE(buff->len - ETH_HLEN)); 272 273 if (!buff->is_eop) { 274 for (i = 1U, next_ = buff->next, 275 buff_ = &self->buff_ring[next_]; 276 true; next_ = buff_->next, 277 buff_ = &self->buff_ring[next_], ++i) { 278 skb_add_rx_frag(skb, i, 279 buff_->page, 0, 280 buff_->len, 281 SKB_TRUESIZE(buff->len - 282 ETH_HLEN)); 283 buff_->is_cleaned = 1; 284 285 if (buff_->is_eop) 286 break; 287 } 288 } 289 } 290 291 skb->protocol = eth_type_trans(skb, ndev); 292 293 aq_rx_checksum(self, buff, skb); 294 295 skb_set_hash(skb, buff->rss_hash, 296 buff->is_hash_l4 ? PKT_HASH_TYPE_L4 : 297 PKT_HASH_TYPE_NONE); 298 299 skb_record_rx_queue(skb, self->idx); 300 301 ++self->stats.rx.packets; 302 self->stats.rx.bytes += skb->len; 303 304 napi_gro_receive(napi, skb); 305 } 306 307 err_exit: 308 return err; 309 } 310 311 int aq_ring_rx_fill(struct aq_ring_s *self) 312 { 313 unsigned int pages_order = fls(AQ_CFG_RX_FRAME_MAX / PAGE_SIZE + 314 (AQ_CFG_RX_FRAME_MAX % PAGE_SIZE ? 1 : 0)) - 1; 315 struct aq_ring_buff_s *buff = NULL; 316 int err = 0; 317 int i = 0; 318 319 for (i = aq_ring_avail_dx(self); i--; 320 self->sw_tail = aq_ring_next_dx(self, self->sw_tail)) { 321 buff = &self->buff_ring[self->sw_tail]; 322 323 buff->flags = 0U; 324 buff->len = AQ_CFG_RX_FRAME_MAX; 325 326 buff->page = alloc_pages(GFP_ATOMIC | __GFP_COMP, pages_order); 327 if (!buff->page) { 328 err = -ENOMEM; 329 goto err_exit; 330 } 331 332 buff->pa = dma_map_page(aq_nic_get_dev(self->aq_nic), 333 buff->page, 0, 334 AQ_CFG_RX_FRAME_MAX, DMA_FROM_DEVICE); 335 336 if (dma_mapping_error(aq_nic_get_dev(self->aq_nic), buff->pa)) { 337 err = -ENOMEM; 338 goto err_exit; 339 } 340 341 buff = NULL; 342 } 343 344 err_exit: 345 if (err < 0) { 346 if (buff && buff->page) 347 __free_pages(buff->page, 0); 348 } 349 350 return err; 351 } 352 353 void aq_ring_rx_deinit(struct aq_ring_s *self) 354 { 355 if (!self) 356 goto err_exit; 357 358 for (; self->sw_head != self->sw_tail; 359 self->sw_head = aq_ring_next_dx(self, self->sw_head)) { 360 struct aq_ring_buff_s *buff = &self->buff_ring[self->sw_head]; 361 362 dma_unmap_page(aq_nic_get_dev(self->aq_nic), buff->pa, 363 AQ_CFG_RX_FRAME_MAX, DMA_FROM_DEVICE); 364 365 __free_pages(buff->page, 0); 366 } 367 368 err_exit:; 369 } 370 371 void aq_ring_free(struct aq_ring_s *self) 372 { 373 if (!self) 374 goto err_exit; 375 376 kfree(self->buff_ring); 377 378 if (self->dx_ring) 379 dma_free_coherent(aq_nic_get_dev(self->aq_nic), 380 self->size * self->dx_size, self->dx_ring, 381 self->dx_ring_pa); 382 383 err_exit:; 384 } 385