2 * AMD 10Gb Ethernet driver
4 * This file is available to you under your choice of the following two
9 * Copyright (c) 2014 Advanced Micro Devices, Inc.
11 * This file is free software; you may copy, redistribute and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 2 of the License, or (at
14 * your option) any later version.
16 * This file is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * This file incorporates work covered by the following copyright and
26 * The Synopsys DWC ETHER XGMAC Software Driver and documentation
27 * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
28 * Inc. unless otherwise expressly agreed to in writing between Synopsys
31 * The Software IS NOT an item of Licensed Software or Licensed Product
32 * under any End User Software License Agreement or Agreement for Licensed
33 * Product with Synopsys or any supplement thereto. Permission is hereby
34 * granted, free of charge, to any person obtaining a copy of this software
35 * annotated with this license and the Software, to deal in the Software
36 * without restriction, including without limitation the rights to use,
37 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
38 * of the Software, and to permit persons to whom the Software is furnished
39 * to do so, subject to the following conditions:
41 * The above copyright notice and this permission notice shall be included
42 * in all copies or substantial portions of the Software.
44 * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
45 * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
46 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
47 * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
48 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
49 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
50 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
51 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
52 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
53 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
54 * THE POSSIBILITY OF SUCH DAMAGE.
57 * License 2: Modified BSD
59 * Copyright (c) 2014 Advanced Micro Devices, Inc.
60 * All rights reserved.
62 * Redistribution and use in source and binary forms, with or without
63 * modification, are permitted provided that the following conditions are met:
64 * * Redistributions of source code must retain the above copyright
65 * notice, this list of conditions and the following disclaimer.
66 * * Redistributions in binary form must reproduce the above copyright
67 * notice, this list of conditions and the following disclaimer in the
68 * documentation and/or other materials provided with the distribution.
69 * * Neither the name of Advanced Micro Devices, Inc. nor the
70 * names of its contributors may be used to endorse or promote products
71 * derived from this software without specific prior written permission.
73 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
74 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
75 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
76 * ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
77 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
78 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
79 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
80 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
81 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
82 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
84 * This file incorporates work covered by the following copyright and
86 * The Synopsys DWC ETHER XGMAC Software Driver and documentation
87 * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
88 * Inc. unless otherwise expressly agreed to in writing between Synopsys
91 * The Software IS NOT an item of Licensed Software or Licensed Product
92 * under any End User Software License Agreement or Agreement for Licensed
93 * Product with Synopsys or any supplement thereto. Permission is hereby
94 * granted, free of charge, to any person obtaining a copy of this software
95 * annotated with this license and the Software, to deal in the Software
96 * without restriction, including without limitation the rights to use,
97 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
98 * of the Software, and to permit persons to whom the Software is furnished
99 * to do so, subject to the following conditions:
101 * The above copyright notice and this permission notice shall be included
102 * in all copies or substantial portions of the Software.
104 * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
105 * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
106 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
107 * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
108 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
109 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
110 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
111 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
112 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
113 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
114 * THE POSSIBILITY OF SUCH DAMAGE.
118 #include "xgbe-common.h"
120 static void xgbe_unmap_rdata(struct xgbe_prv_data
*, struct xgbe_ring_data
*);
122 static void xgbe_free_ring(struct xgbe_prv_data
*pdata
,
123 struct xgbe_ring
*ring
)
125 struct xgbe_ring_data
*rdata
;
132 for (i
= 0; i
< ring
->rdesc_count
; i
++) {
133 rdata
= XGBE_GET_DESC_DATA(ring
, i
);
134 xgbe_unmap_rdata(pdata
, rdata
);
141 if (ring
->rx_hdr_pa
.pages
) {
142 dma_unmap_page(pdata
->dev
, ring
->rx_hdr_pa
.pages_dma
,
143 ring
->rx_hdr_pa
.pages_len
, DMA_FROM_DEVICE
);
144 put_page(ring
->rx_hdr_pa
.pages
);
146 ring
->rx_hdr_pa
.pages
= NULL
;
147 ring
->rx_hdr_pa
.pages_len
= 0;
148 ring
->rx_hdr_pa
.pages_offset
= 0;
149 ring
->rx_hdr_pa
.pages_dma
= 0;
152 if (ring
->rx_buf_pa
.pages
) {
153 dma_unmap_page(pdata
->dev
, ring
->rx_buf_pa
.pages_dma
,
154 ring
->rx_buf_pa
.pages_len
, DMA_FROM_DEVICE
);
155 put_page(ring
->rx_buf_pa
.pages
);
157 ring
->rx_buf_pa
.pages
= NULL
;
158 ring
->rx_buf_pa
.pages_len
= 0;
159 ring
->rx_buf_pa
.pages_offset
= 0;
160 ring
->rx_buf_pa
.pages_dma
= 0;
164 dma_free_coherent(pdata
->dev
,
165 (sizeof(struct xgbe_ring_desc
) *
167 ring
->rdesc
, ring
->rdesc_dma
);
172 static void xgbe_free_ring_resources(struct xgbe_prv_data
*pdata
)
174 struct xgbe_channel
*channel
;
177 DBGPR("-->xgbe_free_ring_resources\n");
179 channel
= pdata
->channel
;
180 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
181 xgbe_free_ring(pdata
, channel
->tx_ring
);
182 xgbe_free_ring(pdata
, channel
->rx_ring
);
185 DBGPR("<--xgbe_free_ring_resources\n");
188 static int xgbe_init_ring(struct xgbe_prv_data
*pdata
,
189 struct xgbe_ring
*ring
, unsigned int rdesc_count
)
191 DBGPR("-->xgbe_init_ring\n");
197 ring
->rdesc_count
= rdesc_count
;
198 ring
->rdesc
= dma_alloc_coherent(pdata
->dev
,
199 (sizeof(struct xgbe_ring_desc
) *
200 rdesc_count
), &ring
->rdesc_dma
,
205 /* Descriptor information */
206 ring
->rdata
= kcalloc(rdesc_count
, sizeof(struct xgbe_ring_data
),
211 netif_dbg(pdata
, drv
, pdata
->netdev
,
212 "rdesc=%p, rdesc_dma=%pad, rdata=%p\n",
213 ring
->rdesc
, &ring
->rdesc_dma
, ring
->rdata
);
215 DBGPR("<--xgbe_init_ring\n");
220 static int xgbe_alloc_ring_resources(struct xgbe_prv_data
*pdata
)
222 struct xgbe_channel
*channel
;
226 DBGPR("-->xgbe_alloc_ring_resources\n");
228 channel
= pdata
->channel
;
229 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
230 netif_dbg(pdata
, drv
, pdata
->netdev
, "%s - Tx ring:\n",
233 ret
= xgbe_init_ring(pdata
, channel
->tx_ring
,
234 pdata
->tx_desc_count
);
236 netdev_alert(pdata
->netdev
,
237 "error initializing Tx ring\n");
241 netif_dbg(pdata
, drv
, pdata
->netdev
, "%s - Rx ring:\n",
244 ret
= xgbe_init_ring(pdata
, channel
->rx_ring
,
245 pdata
->rx_desc_count
);
247 netdev_alert(pdata
->netdev
,
248 "error initializing Rx ring\n");
253 DBGPR("<--xgbe_alloc_ring_resources\n");
258 xgbe_free_ring_resources(pdata
);
263 static int xgbe_alloc_pages(struct xgbe_prv_data
*pdata
,
264 struct xgbe_page_alloc
*pa
, gfp_t gfp
, int order
)
266 struct page
*pages
= NULL
;
267 dma_addr_t pages_dma
;
270 /* Try to obtain pages, decreasing order if necessary */
271 gfp
|= __GFP_COLD
| __GFP_COMP
| __GFP_NOWARN
;
273 pages
= alloc_pages(gfp
, order
);
283 pages_dma
= dma_map_page(pdata
->dev
, pages
, 0,
284 PAGE_SIZE
<< order
, DMA_FROM_DEVICE
);
285 ret
= dma_mapping_error(pdata
->dev
, pages_dma
);
292 pa
->pages_len
= PAGE_SIZE
<< order
;
293 pa
->pages_offset
= 0;
294 pa
->pages_dma
= pages_dma
;
299 static void xgbe_set_buffer_data(struct xgbe_buffer_data
*bd
,
300 struct xgbe_page_alloc
*pa
,
306 bd
->dma_base
= pa
->pages_dma
;
307 bd
->dma_off
= pa
->pages_offset
;
310 pa
->pages_offset
+= len
;
311 if ((pa
->pages_offset
+ len
) > pa
->pages_len
) {
312 /* This data descriptor is responsible for unmapping page(s) */
315 /* Get a new allocation next time */
318 pa
->pages_offset
= 0;
323 static int xgbe_map_rx_buffer(struct xgbe_prv_data
*pdata
,
324 struct xgbe_ring
*ring
,
325 struct xgbe_ring_data
*rdata
)
329 if (!ring
->rx_hdr_pa
.pages
) {
330 ret
= xgbe_alloc_pages(pdata
, &ring
->rx_hdr_pa
, GFP_ATOMIC
, 0);
335 if (!ring
->rx_buf_pa
.pages
) {
336 order
= max_t(int, PAGE_ALLOC_COSTLY_ORDER
- 1, 0);
337 ret
= xgbe_alloc_pages(pdata
, &ring
->rx_buf_pa
, GFP_ATOMIC
,
343 /* Set up the header page info */
344 xgbe_set_buffer_data(&rdata
->rx
.hdr
, &ring
->rx_hdr_pa
,
345 XGBE_SKB_ALLOC_SIZE
);
347 /* Set up the buffer page info */
348 xgbe_set_buffer_data(&rdata
->rx
.buf
, &ring
->rx_buf_pa
,
354 static void xgbe_wrapper_tx_descriptor_init(struct xgbe_prv_data
*pdata
)
356 struct xgbe_hw_if
*hw_if
= &pdata
->hw_if
;
357 struct xgbe_channel
*channel
;
358 struct xgbe_ring
*ring
;
359 struct xgbe_ring_data
*rdata
;
360 struct xgbe_ring_desc
*rdesc
;
361 dma_addr_t rdesc_dma
;
364 DBGPR("-->xgbe_wrapper_tx_descriptor_init\n");
366 channel
= pdata
->channel
;
367 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
368 ring
= channel
->tx_ring
;
373 rdesc_dma
= ring
->rdesc_dma
;
375 for (j
= 0; j
< ring
->rdesc_count
; j
++) {
376 rdata
= XGBE_GET_DESC_DATA(ring
, j
);
378 rdata
->rdesc
= rdesc
;
379 rdata
->rdesc_dma
= rdesc_dma
;
382 rdesc_dma
+= sizeof(struct xgbe_ring_desc
);
387 memset(&ring
->tx
, 0, sizeof(ring
->tx
));
389 hw_if
->tx_desc_init(channel
);
392 DBGPR("<--xgbe_wrapper_tx_descriptor_init\n");
395 static void xgbe_wrapper_rx_descriptor_init(struct xgbe_prv_data
*pdata
)
397 struct xgbe_hw_if
*hw_if
= &pdata
->hw_if
;
398 struct xgbe_channel
*channel
;
399 struct xgbe_ring
*ring
;
400 struct xgbe_ring_desc
*rdesc
;
401 struct xgbe_ring_data
*rdata
;
402 dma_addr_t rdesc_dma
;
405 DBGPR("-->xgbe_wrapper_rx_descriptor_init\n");
407 channel
= pdata
->channel
;
408 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
409 ring
= channel
->rx_ring
;
414 rdesc_dma
= ring
->rdesc_dma
;
416 for (j
= 0; j
< ring
->rdesc_count
; j
++) {
417 rdata
= XGBE_GET_DESC_DATA(ring
, j
);
419 rdata
->rdesc
= rdesc
;
420 rdata
->rdesc_dma
= rdesc_dma
;
422 if (xgbe_map_rx_buffer(pdata
, ring
, rdata
))
426 rdesc_dma
+= sizeof(struct xgbe_ring_desc
);
432 hw_if
->rx_desc_init(channel
);
435 DBGPR("<--xgbe_wrapper_rx_descriptor_init\n");
438 static void xgbe_unmap_rdata(struct xgbe_prv_data
*pdata
,
439 struct xgbe_ring_data
*rdata
)
441 if (rdata
->skb_dma
) {
442 if (rdata
->mapped_as_page
) {
443 dma_unmap_page(pdata
->dev
, rdata
->skb_dma
,
444 rdata
->skb_dma_len
, DMA_TO_DEVICE
);
446 dma_unmap_single(pdata
->dev
, rdata
->skb_dma
,
447 rdata
->skb_dma_len
, DMA_TO_DEVICE
);
450 rdata
->skb_dma_len
= 0;
454 dev_kfree_skb_any(rdata
->skb
);
458 if (rdata
->rx
.hdr
.pa
.pages
)
459 put_page(rdata
->rx
.hdr
.pa
.pages
);
461 if (rdata
->rx
.hdr
.pa_unmap
.pages
) {
462 dma_unmap_page(pdata
->dev
, rdata
->rx
.hdr
.pa_unmap
.pages_dma
,
463 rdata
->rx
.hdr
.pa_unmap
.pages_len
,
465 put_page(rdata
->rx
.hdr
.pa_unmap
.pages
);
468 if (rdata
->rx
.buf
.pa
.pages
)
469 put_page(rdata
->rx
.buf
.pa
.pages
);
471 if (rdata
->rx
.buf
.pa_unmap
.pages
) {
472 dma_unmap_page(pdata
->dev
, rdata
->rx
.buf
.pa_unmap
.pages_dma
,
473 rdata
->rx
.buf
.pa_unmap
.pages_len
,
475 put_page(rdata
->rx
.buf
.pa_unmap
.pages
);
478 memset(&rdata
->tx
, 0, sizeof(rdata
->tx
));
479 memset(&rdata
->rx
, 0, sizeof(rdata
->rx
));
481 rdata
->mapped_as_page
= 0;
483 if (rdata
->state_saved
) {
484 rdata
->state_saved
= 0;
485 rdata
->state
.skb
= NULL
;
486 rdata
->state
.len
= 0;
487 rdata
->state
.error
= 0;
491 static int xgbe_map_tx_skb(struct xgbe_channel
*channel
, struct sk_buff
*skb
)
493 struct xgbe_prv_data
*pdata
= channel
->pdata
;
494 struct xgbe_ring
*ring
= channel
->tx_ring
;
495 struct xgbe_ring_data
*rdata
;
496 struct xgbe_packet_data
*packet
;
497 struct skb_frag_struct
*frag
;
499 unsigned int start_index
, cur_index
;
500 unsigned int offset
, tso
, vlan
, datalen
, len
;
503 DBGPR("-->xgbe_map_tx_skb: cur = %d\n", ring
->cur
);
506 start_index
= ring
->cur
;
507 cur_index
= ring
->cur
;
509 packet
= &ring
->packet_data
;
510 packet
->rdesc_count
= 0;
513 tso
= XGMAC_GET_BITS(packet
->attributes
, TX_PACKET_ATTRIBUTES
,
515 vlan
= XGMAC_GET_BITS(packet
->attributes
, TX_PACKET_ATTRIBUTES
,
518 /* Save space for a context descriptor if needed */
519 if ((tso
&& (packet
->mss
!= ring
->tx
.cur_mss
)) ||
520 (vlan
&& (packet
->vlan_ctag
!= ring
->tx
.cur_vlan_ctag
)))
522 rdata
= XGBE_GET_DESC_DATA(ring
, cur_index
);
525 /* Map the TSO header */
526 skb_dma
= dma_map_single(pdata
->dev
, skb
->data
,
527 packet
->header_len
, DMA_TO_DEVICE
);
528 if (dma_mapping_error(pdata
->dev
, skb_dma
)) {
529 netdev_alert(pdata
->netdev
, "dma_map_single failed\n");
532 rdata
->skb_dma
= skb_dma
;
533 rdata
->skb_dma_len
= packet
->header_len
;
534 netif_dbg(pdata
, tx_queued
, pdata
->netdev
,
535 "skb header: index=%u, dma=%pad, len=%u\n",
536 cur_index
, &skb_dma
, packet
->header_len
);
538 offset
= packet
->header_len
;
540 packet
->length
+= packet
->header_len
;
543 rdata
= XGBE_GET_DESC_DATA(ring
, cur_index
);
546 /* Map the (remainder of the) packet */
547 for (datalen
= skb_headlen(skb
) - offset
; datalen
; ) {
548 len
= min_t(unsigned int, datalen
, XGBE_TX_MAX_BUF_SIZE
);
550 skb_dma
= dma_map_single(pdata
->dev
, skb
->data
+ offset
, len
,
552 if (dma_mapping_error(pdata
->dev
, skb_dma
)) {
553 netdev_alert(pdata
->netdev
, "dma_map_single failed\n");
556 rdata
->skb_dma
= skb_dma
;
557 rdata
->skb_dma_len
= len
;
558 netif_dbg(pdata
, tx_queued
, pdata
->netdev
,
559 "skb data: index=%u, dma=%pad, len=%u\n",
560 cur_index
, &skb_dma
, len
);
565 packet
->length
+= len
;
568 rdata
= XGBE_GET_DESC_DATA(ring
, cur_index
);
571 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
572 netif_dbg(pdata
, tx_queued
, pdata
->netdev
,
573 "mapping frag %u\n", i
);
575 frag
= &skb_shinfo(skb
)->frags
[i
];
578 for (datalen
= skb_frag_size(frag
); datalen
; ) {
579 len
= min_t(unsigned int, datalen
,
580 XGBE_TX_MAX_BUF_SIZE
);
582 skb_dma
= skb_frag_dma_map(pdata
->dev
, frag
, offset
,
584 if (dma_mapping_error(pdata
->dev
, skb_dma
)) {
585 netdev_alert(pdata
->netdev
,
586 "skb_frag_dma_map failed\n");
589 rdata
->skb_dma
= skb_dma
;
590 rdata
->skb_dma_len
= len
;
591 rdata
->mapped_as_page
= 1;
592 netif_dbg(pdata
, tx_queued
, pdata
->netdev
,
593 "skb frag: index=%u, dma=%pad, len=%u\n",
594 cur_index
, &skb_dma
, len
);
599 packet
->length
+= len
;
602 rdata
= XGBE_GET_DESC_DATA(ring
, cur_index
);
606 /* Save the skb address in the last entry. We always have some data
607 * that has been mapped so rdata is always advanced past the last
608 * piece of mapped data - use the entry pointed to by cur_index - 1.
610 rdata
= XGBE_GET_DESC_DATA(ring
, cur_index
- 1);
613 /* Save the number of descriptor entries used */
614 packet
->rdesc_count
= cur_index
- start_index
;
616 DBGPR("<--xgbe_map_tx_skb: count=%u\n", packet
->rdesc_count
);
618 return packet
->rdesc_count
;
621 while (start_index
< cur_index
) {
622 rdata
= XGBE_GET_DESC_DATA(ring
, start_index
++);
623 xgbe_unmap_rdata(pdata
, rdata
);
626 DBGPR("<--xgbe_map_tx_skb: count=0\n");
631 void xgbe_init_function_ptrs_desc(struct xgbe_desc_if
*desc_if
)
633 DBGPR("-->xgbe_init_function_ptrs_desc\n");
635 desc_if
->alloc_ring_resources
= xgbe_alloc_ring_resources
;
636 desc_if
->free_ring_resources
= xgbe_free_ring_resources
;
637 desc_if
->map_tx_skb
= xgbe_map_tx_skb
;
638 desc_if
->map_rx_buffer
= xgbe_map_rx_buffer
;
639 desc_if
->unmap_rdata
= xgbe_unmap_rdata
;
640 desc_if
->wrapper_tx_desc_init
= xgbe_wrapper_tx_descriptor_init
;
641 desc_if
->wrapper_rx_desc_init
= xgbe_wrapper_rx_descriptor_init
;
643 DBGPR("<--xgbe_init_function_ptrs_desc\n");