blob: bdb373c87050c555df40899f9bcfefc99865cea5 [file] [log] [blame]
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001/*
2 * AMD 10Gb Ethernet driver
3 *
4 * This file is available to you under your choice of the following two
5 * licenses:
6 *
7 * License 1: GPLv2
8 *
9 * Copyright (c) 2014 Advanced Micro Devices, Inc.
10 *
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.
15 *
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.
20 *
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/>.
23 *
24 * This file incorporates work covered by the following copyright and
25 * permission notice:
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
29 * and you.
30 *
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:
40 *
41 * The above copyright notice and this permission notice shall be included
42 * in all copies or substantial portions of the Software.
43 *
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.
55 *
56 *
57 * License 2: Modified BSD
58 *
59 * Copyright (c) 2014 Advanced Micro Devices, Inc.
60 * All rights reserved.
61 *
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.
72 *
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.
83 *
84 * This file incorporates work covered by the following copyright and
85 * permission notice:
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
89 * and you.
90 *
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:
100 *
101 * The above copyright notice and this permission notice shall be included
102 * in all copies or substantial portions of the Software.
103 *
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.
115 */
116
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600117#include <linux/platform_device.h>
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500118#include <linux/spinlock.h>
119#include <linux/tcp.h>
120#include <linux/if_vlan.h>
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500121#include <net/busy_poll.h>
122#include <linux/clk.h>
123#include <linux/if_ether.h>
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500124#include <linux/net_tstamp.h>
Lendacky, Thomas88131a82014-08-05 13:30:44 -0500125#include <linux/phy.h>
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500126
127#include "xgbe.h"
128#include "xgbe-common.h"
129
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600130static int xgbe_one_poll(struct napi_struct *, int);
131static int xgbe_all_poll(struct napi_struct *, int);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500132static void xgbe_set_rx_mode(struct net_device *);
133
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600134static int xgbe_alloc_channels(struct xgbe_prv_data *pdata)
135{
136 struct xgbe_channel *channel_mem, *channel;
137 struct xgbe_ring *tx_ring, *rx_ring;
138 unsigned int count, i;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600139 int ret = -ENOMEM;
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600140
141 count = max_t(unsigned int, pdata->tx_ring_count, pdata->rx_ring_count);
142
143 channel_mem = kcalloc(count, sizeof(struct xgbe_channel), GFP_KERNEL);
144 if (!channel_mem)
145 goto err_channel;
146
147 tx_ring = kcalloc(pdata->tx_ring_count, sizeof(struct xgbe_ring),
148 GFP_KERNEL);
149 if (!tx_ring)
150 goto err_tx_ring;
151
152 rx_ring = kcalloc(pdata->rx_ring_count, sizeof(struct xgbe_ring),
153 GFP_KERNEL);
154 if (!rx_ring)
155 goto err_rx_ring;
156
157 for (i = 0, channel = channel_mem; i < count; i++, channel++) {
158 snprintf(channel->name, sizeof(channel->name), "channel-%d", i);
159 channel->pdata = pdata;
160 channel->queue_index = i;
161 channel->dma_regs = pdata->xgmac_regs + DMA_CH_BASE +
162 (DMA_CH_INC * i);
163
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600164 if (pdata->per_channel_irq) {
165 /* Get the DMA interrupt (offset 1) */
166 ret = platform_get_irq(pdata->pdev, i + 1);
167 if (ret < 0) {
168 netdev_err(pdata->netdev,
169 "platform_get_irq %u failed\n",
170 i + 1);
171 goto err_irq;
172 }
173
174 channel->dma_irq = ret;
175 }
176
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600177 if (i < pdata->tx_ring_count) {
178 spin_lock_init(&tx_ring->lock);
179 channel->tx_ring = tx_ring++;
180 }
181
182 if (i < pdata->rx_ring_count) {
183 spin_lock_init(&rx_ring->lock);
184 channel->rx_ring = rx_ring++;
185 }
186
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600187 DBGPR(" %s: queue=%u, dma_regs=%p, dma_irq=%d, tx=%p, rx=%p\n",
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600188 channel->name, channel->queue_index, channel->dma_regs,
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600189 channel->dma_irq, channel->tx_ring, channel->rx_ring);
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600190 }
191
192 pdata->channel = channel_mem;
193 pdata->channel_count = count;
194
195 return 0;
196
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600197err_irq:
198 kfree(rx_ring);
199
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600200err_rx_ring:
201 kfree(tx_ring);
202
203err_tx_ring:
204 kfree(channel_mem);
205
206err_channel:
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600207 return ret;
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -0600208}
209
210static void xgbe_free_channels(struct xgbe_prv_data *pdata)
211{
212 if (!pdata->channel)
213 return;
214
215 kfree(pdata->channel->rx_ring);
216 kfree(pdata->channel->tx_ring);
217 kfree(pdata->channel);
218
219 pdata->channel = NULL;
220 pdata->channel_count = 0;
221}
222
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500223static inline unsigned int xgbe_tx_avail_desc(struct xgbe_ring *ring)
224{
225 return (ring->rdesc_count - (ring->cur - ring->dirty));
226}
227
Lendacky, Thomas16958a22014-11-20 11:04:08 -0600228static int xgbe_maybe_stop_tx_queue(struct xgbe_channel *channel,
229 struct xgbe_ring *ring, unsigned int count)
230{
231 struct xgbe_prv_data *pdata = channel->pdata;
232
233 if (count > xgbe_tx_avail_desc(ring)) {
234 DBGPR(" Tx queue stopped, not enough descriptors available\n");
235 netif_stop_subqueue(pdata->netdev, channel->queue_index);
236 ring->tx.queue_stopped = 1;
237
238 /* If we haven't notified the hardware because of xmit_more
239 * support, tell it now
240 */
241 if (ring->tx.xmit_more)
242 pdata->hw_if.tx_start_xmit(channel, ring);
243
244 return NETDEV_TX_BUSY;
245 }
246
247 return 0;
248}
249
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500250static int xgbe_calc_rx_buf_size(struct net_device *netdev, unsigned int mtu)
251{
252 unsigned int rx_buf_size;
253
254 if (mtu > XGMAC_JUMBO_PACKET_MTU) {
255 netdev_alert(netdev, "MTU exceeds maximum supported value\n");
256 return -EINVAL;
257 }
258
259 rx_buf_size = mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600260 rx_buf_size = clamp_val(rx_buf_size, XGBE_RX_MIN_BUF_SIZE, PAGE_SIZE);
261
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500262 rx_buf_size = (rx_buf_size + XGBE_RX_BUF_ALIGN - 1) &
263 ~(XGBE_RX_BUF_ALIGN - 1);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500264
265 return rx_buf_size;
266}
267
268static void xgbe_enable_rx_tx_ints(struct xgbe_prv_data *pdata)
269{
270 struct xgbe_hw_if *hw_if = &pdata->hw_if;
271 struct xgbe_channel *channel;
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500272 enum xgbe_int int_id;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500273 unsigned int i;
274
275 channel = pdata->channel;
276 for (i = 0; i < pdata->channel_count; i++, channel++) {
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500277 if (channel->tx_ring && channel->rx_ring)
278 int_id = XGMAC_INT_DMA_CH_SR_TI_RI;
279 else if (channel->tx_ring)
280 int_id = XGMAC_INT_DMA_CH_SR_TI;
281 else if (channel->rx_ring)
282 int_id = XGMAC_INT_DMA_CH_SR_RI;
283 else
284 continue;
285
286 hw_if->enable_int(channel, int_id);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500287 }
288}
289
290static void xgbe_disable_rx_tx_ints(struct xgbe_prv_data *pdata)
291{
292 struct xgbe_hw_if *hw_if = &pdata->hw_if;
293 struct xgbe_channel *channel;
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500294 enum xgbe_int int_id;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500295 unsigned int i;
296
297 channel = pdata->channel;
298 for (i = 0; i < pdata->channel_count; i++, channel++) {
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500299 if (channel->tx_ring && channel->rx_ring)
300 int_id = XGMAC_INT_DMA_CH_SR_TI_RI;
301 else if (channel->tx_ring)
302 int_id = XGMAC_INT_DMA_CH_SR_TI;
303 else if (channel->rx_ring)
304 int_id = XGMAC_INT_DMA_CH_SR_RI;
305 else
306 continue;
307
308 hw_if->disable_int(channel, int_id);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500309 }
310}
311
312static irqreturn_t xgbe_isr(int irq, void *data)
313{
314 struct xgbe_prv_data *pdata = data;
315 struct xgbe_hw_if *hw_if = &pdata->hw_if;
316 struct xgbe_channel *channel;
317 unsigned int dma_isr, dma_ch_isr;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500318 unsigned int mac_isr, mac_tssr;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500319 unsigned int i;
320
321 /* The DMA interrupt status register also reports MAC and MTL
322 * interrupts. So for polling mode, we just need to check for
323 * this register to be non-zero
324 */
325 dma_isr = XGMAC_IOREAD(pdata, DMA_ISR);
326 if (!dma_isr)
327 goto isr_done;
328
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500329 DBGPR(" DMA_ISR = %08x\n", dma_isr);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500330
331 for (i = 0; i < pdata->channel_count; i++) {
332 if (!(dma_isr & (1 << i)))
333 continue;
334
335 channel = pdata->channel + i;
336
337 dma_ch_isr = XGMAC_DMA_IOREAD(channel, DMA_CH_SR);
338 DBGPR(" DMA_CH%u_ISR = %08x\n", i, dma_ch_isr);
339
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600340 /* If we get a TI or RI interrupt that means per channel DMA
341 * interrupts are not enabled, so we use the private data napi
342 * structure, not the per channel napi structure
343 */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500344 if (XGMAC_GET_BITS(dma_ch_isr, DMA_CH_SR, TI) ||
345 XGMAC_GET_BITS(dma_ch_isr, DMA_CH_SR, RI)) {
346 if (napi_schedule_prep(&pdata->napi)) {
347 /* Disable Tx and Rx interrupts */
348 xgbe_disable_rx_tx_ints(pdata);
349
350 /* Turn on polling */
351 __napi_schedule(&pdata->napi);
352 }
353 }
354
355 /* Restart the device on a Fatal Bus Error */
356 if (XGMAC_GET_BITS(dma_ch_isr, DMA_CH_SR, FBE))
357 schedule_work(&pdata->restart_work);
358
359 /* Clear all interrupt signals */
360 XGMAC_DMA_IOWRITE(channel, DMA_CH_SR, dma_ch_isr);
361 }
362
363 if (XGMAC_GET_BITS(dma_isr, DMA_ISR, MACIS)) {
364 mac_isr = XGMAC_IOREAD(pdata, MAC_ISR);
365
366 if (XGMAC_GET_BITS(mac_isr, MAC_ISR, MMCTXIS))
367 hw_if->tx_mmc_int(pdata);
368
369 if (XGMAC_GET_BITS(mac_isr, MAC_ISR, MMCRXIS))
370 hw_if->rx_mmc_int(pdata);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500371
372 if (XGMAC_GET_BITS(mac_isr, MAC_ISR, TSIS)) {
373 mac_tssr = XGMAC_IOREAD(pdata, MAC_TSSR);
374
375 if (XGMAC_GET_BITS(mac_tssr, MAC_TSSR, TXTSC)) {
376 /* Read Tx Timestamp to clear interrupt */
377 pdata->tx_tstamp =
378 hw_if->get_tx_tstamp(pdata);
379 schedule_work(&pdata->tx_tstamp_work);
380 }
381 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500382 }
383
384 DBGPR(" DMA_ISR = %08x\n", XGMAC_IOREAD(pdata, DMA_ISR));
385
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500386isr_done:
387 return IRQ_HANDLED;
388}
389
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600390static irqreturn_t xgbe_dma_isr(int irq, void *data)
391{
392 struct xgbe_channel *channel = data;
393
394 /* Per channel DMA interrupts are enabled, so we use the per
395 * channel napi structure and not the private data napi structure
396 */
397 if (napi_schedule_prep(&channel->napi)) {
398 /* Disable Tx and Rx interrupts */
Lendacky, Thomasf9c5c622014-12-09 14:54:08 -0600399 disable_irq_nosync(channel->dma_irq);
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600400
401 /* Turn on polling */
402 __napi_schedule(&channel->napi);
403 }
404
405 return IRQ_HANDLED;
406}
407
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500408static enum hrtimer_restart xgbe_tx_timer(struct hrtimer *timer)
409{
410 struct xgbe_channel *channel = container_of(timer,
411 struct xgbe_channel,
412 tx_timer);
413 struct xgbe_ring *ring = channel->tx_ring;
414 struct xgbe_prv_data *pdata = channel->pdata;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600415 struct napi_struct *napi;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500416 unsigned long flags;
417
418 DBGPR("-->xgbe_tx_timer\n");
419
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600420 napi = (pdata->per_channel_irq) ? &channel->napi : &pdata->napi;
421
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500422 spin_lock_irqsave(&ring->lock, flags);
423
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600424 if (napi_schedule_prep(napi)) {
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500425 /* Disable Tx and Rx interrupts */
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600426 if (pdata->per_channel_irq)
427 disable_irq(channel->dma_irq);
428 else
429 xgbe_disable_rx_tx_ints(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500430
431 /* Turn on polling */
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600432 __napi_schedule(napi);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500433 }
434
435 channel->tx_timer_active = 0;
436
437 spin_unlock_irqrestore(&ring->lock, flags);
438
439 DBGPR("<--xgbe_tx_timer\n");
440
441 return HRTIMER_NORESTART;
442}
443
444static void xgbe_init_tx_timers(struct xgbe_prv_data *pdata)
445{
446 struct xgbe_channel *channel;
447 unsigned int i;
448
449 DBGPR("-->xgbe_init_tx_timers\n");
450
451 channel = pdata->channel;
452 for (i = 0; i < pdata->channel_count; i++, channel++) {
453 if (!channel->tx_ring)
454 break;
455
456 DBGPR(" %s adding tx timer\n", channel->name);
457 hrtimer_init(&channel->tx_timer, CLOCK_MONOTONIC,
458 HRTIMER_MODE_REL);
459 channel->tx_timer.function = xgbe_tx_timer;
460 }
461
462 DBGPR("<--xgbe_init_tx_timers\n");
463}
464
465static void xgbe_stop_tx_timers(struct xgbe_prv_data *pdata)
466{
467 struct xgbe_channel *channel;
468 unsigned int i;
469
470 DBGPR("-->xgbe_stop_tx_timers\n");
471
472 channel = pdata->channel;
473 for (i = 0; i < pdata->channel_count; i++, channel++) {
474 if (!channel->tx_ring)
475 break;
476
477 DBGPR(" %s deleting tx timer\n", channel->name);
478 channel->tx_timer_active = 0;
479 hrtimer_cancel(&channel->tx_timer);
480 }
481
482 DBGPR("<--xgbe_stop_tx_timers\n");
483}
484
485void xgbe_get_all_hw_features(struct xgbe_prv_data *pdata)
486{
487 unsigned int mac_hfr0, mac_hfr1, mac_hfr2;
488 struct xgbe_hw_features *hw_feat = &pdata->hw_feat;
489
490 DBGPR("-->xgbe_get_all_hw_features\n");
491
492 mac_hfr0 = XGMAC_IOREAD(pdata, MAC_HWF0R);
493 mac_hfr1 = XGMAC_IOREAD(pdata, MAC_HWF1R);
494 mac_hfr2 = XGMAC_IOREAD(pdata, MAC_HWF2R);
495
496 memset(hw_feat, 0, sizeof(*hw_feat));
497
Lendacky, Thomasa9a4a2d2014-08-29 13:16:50 -0500498 hw_feat->version = XGMAC_IOREAD(pdata, MAC_VR);
499
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500500 /* Hardware feature register 0 */
501 hw_feat->gmii = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, GMIISEL);
502 hw_feat->vlhash = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, VLHASH);
503 hw_feat->sma = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, SMASEL);
504 hw_feat->rwk = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, RWKSEL);
505 hw_feat->mgk = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, MGKSEL);
506 hw_feat->mmc = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, MMCSEL);
507 hw_feat->aoe = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, ARPOFFSEL);
508 hw_feat->ts = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, TSSEL);
509 hw_feat->eee = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, EEESEL);
510 hw_feat->tx_coe = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, TXCOESEL);
511 hw_feat->rx_coe = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, RXCOESEL);
512 hw_feat->addn_mac = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R,
513 ADDMACADRSEL);
514 hw_feat->ts_src = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, TSSTSSEL);
515 hw_feat->sa_vlan_ins = XGMAC_GET_BITS(mac_hfr0, MAC_HWF0R, SAVLANINS);
516
517 /* Hardware feature register 1 */
518 hw_feat->rx_fifo_size = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
519 RXFIFOSIZE);
520 hw_feat->tx_fifo_size = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
521 TXFIFOSIZE);
522 hw_feat->dcb = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, DCBEN);
523 hw_feat->sph = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, SPHEN);
524 hw_feat->tso = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, TSOEN);
525 hw_feat->dma_debug = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, DBGMEMA);
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500526 hw_feat->tc_cnt = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R, NUMTC);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500527 hw_feat->hash_table_size = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
528 HASHTBLSZ);
529 hw_feat->l3l4_filter_num = XGMAC_GET_BITS(mac_hfr1, MAC_HWF1R,
530 L3L4FNUM);
531
532 /* Hardware feature register 2 */
533 hw_feat->rx_q_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, RXQCNT);
534 hw_feat->tx_q_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, TXQCNT);
535 hw_feat->rx_ch_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, RXCHCNT);
536 hw_feat->tx_ch_cnt = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, TXCHCNT);
537 hw_feat->pps_out_num = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, PPSOUTNUM);
538 hw_feat->aux_snap_num = XGMAC_GET_BITS(mac_hfr2, MAC_HWF2R, AUXSNAPNUM);
539
Lendacky, Thomasb85e4d82014-06-24 16:19:29 -0500540 /* Translate the Hash Table size into actual number */
541 switch (hw_feat->hash_table_size) {
542 case 0:
543 break;
544 case 1:
545 hw_feat->hash_table_size = 64;
546 break;
547 case 2:
548 hw_feat->hash_table_size = 128;
549 break;
550 case 3:
551 hw_feat->hash_table_size = 256;
552 break;
553 }
554
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500555 /* The Queue and Channel counts are zero based so increment them
556 * to get the actual number
557 */
558 hw_feat->rx_q_cnt++;
559 hw_feat->tx_q_cnt++;
560 hw_feat->rx_ch_cnt++;
561 hw_feat->tx_ch_cnt++;
562
563 DBGPR("<--xgbe_get_all_hw_features\n");
564}
565
566static void xgbe_napi_enable(struct xgbe_prv_data *pdata, unsigned int add)
567{
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600568 struct xgbe_channel *channel;
569 unsigned int i;
570
571 if (pdata->per_channel_irq) {
572 channel = pdata->channel;
573 for (i = 0; i < pdata->channel_count; i++, channel++) {
574 if (add)
575 netif_napi_add(pdata->netdev, &channel->napi,
576 xgbe_one_poll, NAPI_POLL_WEIGHT);
577
578 napi_enable(&channel->napi);
579 }
580 } else {
581 if (add)
582 netif_napi_add(pdata->netdev, &pdata->napi,
583 xgbe_all_poll, NAPI_POLL_WEIGHT);
584
585 napi_enable(&pdata->napi);
586 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500587}
588
Lendacky, Thomasff426062014-07-02 13:04:40 -0500589static void xgbe_napi_disable(struct xgbe_prv_data *pdata, unsigned int del)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500590{
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600591 struct xgbe_channel *channel;
592 unsigned int i;
Lendacky, Thomasff426062014-07-02 13:04:40 -0500593
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600594 if (pdata->per_channel_irq) {
595 channel = pdata->channel;
596 for (i = 0; i < pdata->channel_count; i++, channel++) {
597 napi_disable(&channel->napi);
598
599 if (del)
600 netif_napi_del(&channel->napi);
601 }
602 } else {
603 napi_disable(&pdata->napi);
604
605 if (del)
606 netif_napi_del(&pdata->napi);
607 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500608}
609
610void xgbe_init_tx_coalesce(struct xgbe_prv_data *pdata)
611{
612 struct xgbe_hw_if *hw_if = &pdata->hw_if;
613
614 DBGPR("-->xgbe_init_tx_coalesce\n");
615
616 pdata->tx_usecs = XGMAC_INIT_DMA_TX_USECS;
617 pdata->tx_frames = XGMAC_INIT_DMA_TX_FRAMES;
618
619 hw_if->config_tx_coalesce(pdata);
620
621 DBGPR("<--xgbe_init_tx_coalesce\n");
622}
623
624void xgbe_init_rx_coalesce(struct xgbe_prv_data *pdata)
625{
626 struct xgbe_hw_if *hw_if = &pdata->hw_if;
627
628 DBGPR("-->xgbe_init_rx_coalesce\n");
629
630 pdata->rx_riwt = hw_if->usec_to_riwt(pdata, XGMAC_INIT_DMA_RX_USECS);
631 pdata->rx_frames = XGMAC_INIT_DMA_RX_FRAMES;
632
633 hw_if->config_rx_coalesce(pdata);
634
635 DBGPR("<--xgbe_init_rx_coalesce\n");
636}
637
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600638static void xgbe_free_tx_data(struct xgbe_prv_data *pdata)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500639{
640 struct xgbe_desc_if *desc_if = &pdata->desc_if;
641 struct xgbe_channel *channel;
642 struct xgbe_ring *ring;
643 struct xgbe_ring_data *rdata;
644 unsigned int i, j;
645
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600646 DBGPR("-->xgbe_free_tx_data\n");
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500647
648 channel = pdata->channel;
649 for (i = 0; i < pdata->channel_count; i++, channel++) {
650 ring = channel->tx_ring;
651 if (!ring)
652 break;
653
654 for (j = 0; j < ring->rdesc_count; j++) {
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500655 rdata = XGBE_GET_DESC_DATA(ring, j);
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600656 desc_if->unmap_rdata(pdata, rdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500657 }
658 }
659
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600660 DBGPR("<--xgbe_free_tx_data\n");
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500661}
662
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600663static void xgbe_free_rx_data(struct xgbe_prv_data *pdata)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500664{
665 struct xgbe_desc_if *desc_if = &pdata->desc_if;
666 struct xgbe_channel *channel;
667 struct xgbe_ring *ring;
668 struct xgbe_ring_data *rdata;
669 unsigned int i, j;
670
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600671 DBGPR("-->xgbe_free_rx_data\n");
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500672
673 channel = pdata->channel;
674 for (i = 0; i < pdata->channel_count; i++, channel++) {
675 ring = channel->rx_ring;
676 if (!ring)
677 break;
678
679 for (j = 0; j < ring->rdesc_count; j++) {
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500680 rdata = XGBE_GET_DESC_DATA(ring, j);
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600681 desc_if->unmap_rdata(pdata, rdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500682 }
683 }
684
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600685 DBGPR("<--xgbe_free_rx_data\n");
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500686}
687
Lendacky, Thomas88131a82014-08-05 13:30:44 -0500688static void xgbe_adjust_link(struct net_device *netdev)
689{
690 struct xgbe_prv_data *pdata = netdev_priv(netdev);
691 struct xgbe_hw_if *hw_if = &pdata->hw_if;
692 struct phy_device *phydev = pdata->phydev;
693 int new_state = 0;
694
Lendacky, Thomas1d67d7f62015-01-16 12:46:24 -0600695 if (!phydev)
Lendacky, Thomas88131a82014-08-05 13:30:44 -0500696 return;
697
698 if (phydev->link) {
699 /* Flow control support */
700 if (pdata->pause_autoneg) {
701 if (phydev->pause || phydev->asym_pause) {
702 pdata->tx_pause = 1;
703 pdata->rx_pause = 1;
704 } else {
705 pdata->tx_pause = 0;
706 pdata->rx_pause = 0;
707 }
708 }
709
710 if (pdata->tx_pause != pdata->phy_tx_pause) {
711 hw_if->config_tx_flow_control(pdata);
712 pdata->phy_tx_pause = pdata->tx_pause;
713 }
714
715 if (pdata->rx_pause != pdata->phy_rx_pause) {
716 hw_if->config_rx_flow_control(pdata);
717 pdata->phy_rx_pause = pdata->rx_pause;
718 }
719
720 /* Speed support */
721 if (phydev->speed != pdata->phy_speed) {
722 new_state = 1;
723
724 switch (phydev->speed) {
725 case SPEED_10000:
726 hw_if->set_xgmii_speed(pdata);
727 break;
728
729 case SPEED_2500:
730 hw_if->set_gmii_2500_speed(pdata);
731 break;
732
733 case SPEED_1000:
734 hw_if->set_gmii_speed(pdata);
735 break;
736 }
737 pdata->phy_speed = phydev->speed;
738 }
739
740 if (phydev->link != pdata->phy_link) {
741 new_state = 1;
742 pdata->phy_link = 1;
743 }
744 } else if (pdata->phy_link) {
745 new_state = 1;
746 pdata->phy_link = 0;
747 pdata->phy_speed = SPEED_UNKNOWN;
748 }
749
750 if (new_state)
751 phy_print_status(phydev);
752}
753
754static int xgbe_phy_init(struct xgbe_prv_data *pdata)
755{
756 struct net_device *netdev = pdata->netdev;
757 struct phy_device *phydev = pdata->phydev;
758 int ret;
759
760 pdata->phy_link = -1;
761 pdata->phy_speed = SPEED_UNKNOWN;
762 pdata->phy_tx_pause = pdata->tx_pause;
763 pdata->phy_rx_pause = pdata->rx_pause;
764
765 ret = phy_connect_direct(netdev, phydev, &xgbe_adjust_link,
766 pdata->phy_mode);
767 if (ret) {
768 netdev_err(netdev, "phy_connect_direct failed\n");
769 return ret;
770 }
771
772 if (!phydev->drv || (phydev->drv->phy_id == 0)) {
773 netdev_err(netdev, "phy_id not valid\n");
774 ret = -ENODEV;
775 goto err_phy_connect;
776 }
777 DBGPR(" phy_connect_direct succeeded for PHY %s, link=%d\n",
778 dev_name(&phydev->dev), phydev->link);
779
780 return 0;
781
782err_phy_connect:
783 phy_disconnect(phydev);
784
785 return ret;
786}
787
788static void xgbe_phy_exit(struct xgbe_prv_data *pdata)
789{
790 if (!pdata->phydev)
791 return;
792
793 phy_disconnect(pdata->phydev);
794}
795
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500796int xgbe_powerdown(struct net_device *netdev, unsigned int caller)
797{
798 struct xgbe_prv_data *pdata = netdev_priv(netdev);
799 struct xgbe_hw_if *hw_if = &pdata->hw_if;
800 unsigned long flags;
801
802 DBGPR("-->xgbe_powerdown\n");
803
804 if (!netif_running(netdev) ||
805 (caller == XGMAC_IOCTL_CONTEXT && pdata->power_down)) {
806 netdev_alert(netdev, "Device is already powered down\n");
807 DBGPR("<--xgbe_powerdown\n");
808 return -EINVAL;
809 }
810
811 phy_stop(pdata->phydev);
812
813 spin_lock_irqsave(&pdata->lock, flags);
814
815 if (caller == XGMAC_DRIVER_CONTEXT)
816 netif_device_detach(netdev);
817
818 netif_tx_stop_all_queues(netdev);
Lendacky, Thomasff426062014-07-02 13:04:40 -0500819 xgbe_napi_disable(pdata, 0);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500820
821 /* Powerdown Tx/Rx */
822 hw_if->powerdown_tx(pdata);
823 hw_if->powerdown_rx(pdata);
824
825 pdata->power_down = 1;
826
827 spin_unlock_irqrestore(&pdata->lock, flags);
828
829 DBGPR("<--xgbe_powerdown\n");
830
831 return 0;
832}
833
834int xgbe_powerup(struct net_device *netdev, unsigned int caller)
835{
836 struct xgbe_prv_data *pdata = netdev_priv(netdev);
837 struct xgbe_hw_if *hw_if = &pdata->hw_if;
838 unsigned long flags;
839
840 DBGPR("-->xgbe_powerup\n");
841
842 if (!netif_running(netdev) ||
843 (caller == XGMAC_IOCTL_CONTEXT && !pdata->power_down)) {
844 netdev_alert(netdev, "Device is already powered up\n");
845 DBGPR("<--xgbe_powerup\n");
846 return -EINVAL;
847 }
848
849 spin_lock_irqsave(&pdata->lock, flags);
850
851 pdata->power_down = 0;
852
853 phy_start(pdata->phydev);
854
855 /* Enable Tx/Rx */
856 hw_if->powerup_tx(pdata);
857 hw_if->powerup_rx(pdata);
858
859 if (caller == XGMAC_DRIVER_CONTEXT)
860 netif_device_attach(netdev);
861
862 xgbe_napi_enable(pdata, 0);
863 netif_tx_start_all_queues(netdev);
864
865 spin_unlock_irqrestore(&pdata->lock, flags);
866
867 DBGPR("<--xgbe_powerup\n");
868
869 return 0;
870}
871
872static int xgbe_start(struct xgbe_prv_data *pdata)
873{
874 struct xgbe_hw_if *hw_if = &pdata->hw_if;
875 struct net_device *netdev = pdata->netdev;
876
877 DBGPR("-->xgbe_start\n");
878
879 xgbe_set_rx_mode(netdev);
880
881 hw_if->init(pdata);
882
883 phy_start(pdata->phydev);
884
885 hw_if->enable_tx(pdata);
886 hw_if->enable_rx(pdata);
887
888 xgbe_init_tx_timers(pdata);
889
890 xgbe_napi_enable(pdata, 1);
891 netif_tx_start_all_queues(netdev);
892
893 DBGPR("<--xgbe_start\n");
894
895 return 0;
896}
897
898static void xgbe_stop(struct xgbe_prv_data *pdata)
899{
900 struct xgbe_hw_if *hw_if = &pdata->hw_if;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -0600901 struct xgbe_channel *channel;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500902 struct net_device *netdev = pdata->netdev;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -0600903 struct netdev_queue *txq;
904 unsigned int i;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500905
906 DBGPR("-->xgbe_stop\n");
907
908 phy_stop(pdata->phydev);
909
910 netif_tx_stop_all_queues(netdev);
Lendacky, Thomasff426062014-07-02 13:04:40 -0500911 xgbe_napi_disable(pdata, 1);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500912
913 xgbe_stop_tx_timers(pdata);
914
915 hw_if->disable_tx(pdata);
916 hw_if->disable_rx(pdata);
917
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -0600918 channel = pdata->channel;
919 for (i = 0; i < pdata->channel_count; i++, channel++) {
920 if (!channel->tx_ring)
921 continue;
922
923 txq = netdev_get_tx_queue(netdev, channel->queue_index);
924 netdev_tx_reset_queue(txq);
925 }
926
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500927 DBGPR("<--xgbe_stop\n");
928}
929
Lendacky, Thomas916102c2015-01-16 12:46:45 -0600930static void xgbe_restart_dev(struct xgbe_prv_data *pdata)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500931{
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600932 struct xgbe_channel *channel;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500933 struct xgbe_hw_if *hw_if = &pdata->hw_if;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600934 unsigned int i;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500935
936 DBGPR("-->xgbe_restart_dev\n");
937
938 /* If not running, "restart" will happen on open */
939 if (!netif_running(pdata->netdev))
940 return;
941
942 xgbe_stop(pdata);
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600943 synchronize_irq(pdata->dev_irq);
944 if (pdata->per_channel_irq) {
945 channel = pdata->channel;
946 for (i = 0; i < pdata->channel_count; i++, channel++)
947 synchronize_irq(channel->dma_irq);
948 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500949
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600950 xgbe_free_tx_data(pdata);
951 xgbe_free_rx_data(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500952
Lendacky, Thomas916102c2015-01-16 12:46:45 -0600953 /* Issue software reset to device */
954 hw_if->exit(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500955
956 xgbe_start(pdata);
957
958 DBGPR("<--xgbe_restart_dev\n");
959}
960
961static void xgbe_restart(struct work_struct *work)
962{
963 struct xgbe_prv_data *pdata = container_of(work,
964 struct xgbe_prv_data,
965 restart_work);
966
967 rtnl_lock();
968
Lendacky, Thomas916102c2015-01-16 12:46:45 -0600969 xgbe_restart_dev(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500970
971 rtnl_unlock();
972}
973
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500974static void xgbe_tx_tstamp(struct work_struct *work)
975{
976 struct xgbe_prv_data *pdata = container_of(work,
977 struct xgbe_prv_data,
978 tx_tstamp_work);
979 struct skb_shared_hwtstamps hwtstamps;
980 u64 nsec;
981 unsigned long flags;
982
983 if (pdata->tx_tstamp) {
984 nsec = timecounter_cyc2time(&pdata->tstamp_tc,
985 pdata->tx_tstamp);
986
987 memset(&hwtstamps, 0, sizeof(hwtstamps));
988 hwtstamps.hwtstamp = ns_to_ktime(nsec);
989 skb_tstamp_tx(pdata->tx_tstamp_skb, &hwtstamps);
990 }
991
992 dev_kfree_skb_any(pdata->tx_tstamp_skb);
993
994 spin_lock_irqsave(&pdata->tstamp_lock, flags);
995 pdata->tx_tstamp_skb = NULL;
996 spin_unlock_irqrestore(&pdata->tstamp_lock, flags);
997}
998
999static int xgbe_get_hwtstamp_settings(struct xgbe_prv_data *pdata,
1000 struct ifreq *ifreq)
1001{
1002 if (copy_to_user(ifreq->ifr_data, &pdata->tstamp_config,
1003 sizeof(pdata->tstamp_config)))
1004 return -EFAULT;
1005
1006 return 0;
1007}
1008
1009static int xgbe_set_hwtstamp_settings(struct xgbe_prv_data *pdata,
1010 struct ifreq *ifreq)
1011{
1012 struct hwtstamp_config config;
1013 unsigned int mac_tscr;
1014
1015 if (copy_from_user(&config, ifreq->ifr_data, sizeof(config)))
1016 return -EFAULT;
1017
1018 if (config.flags)
1019 return -EINVAL;
1020
1021 mac_tscr = 0;
1022
1023 switch (config.tx_type) {
1024 case HWTSTAMP_TX_OFF:
1025 break;
1026
1027 case HWTSTAMP_TX_ON:
1028 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1029 break;
1030
1031 default:
1032 return -ERANGE;
1033 }
1034
1035 switch (config.rx_filter) {
1036 case HWTSTAMP_FILTER_NONE:
1037 break;
1038
1039 case HWTSTAMP_FILTER_ALL:
1040 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENALL, 1);
1041 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1042 break;
1043
1044 /* PTP v2, UDP, any kind of event packet */
1045 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1046 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSVER2ENA, 1);
1047 /* PTP v1, UDP, any kind of event packet */
1048 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1049 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV4ENA, 1);
1050 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV6ENA, 1);
1051 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, SNAPTYPSEL, 1);
1052 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1053 break;
1054
1055 /* PTP v2, UDP, Sync packet */
1056 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1057 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSVER2ENA, 1);
1058 /* PTP v1, UDP, Sync packet */
1059 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1060 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV4ENA, 1);
1061 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV6ENA, 1);
1062 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSEVNTENA, 1);
1063 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1064 break;
1065
1066 /* PTP v2, UDP, Delay_req packet */
1067 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1068 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSVER2ENA, 1);
1069 /* PTP v1, UDP, Delay_req packet */
1070 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1071 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV4ENA, 1);
1072 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV6ENA, 1);
1073 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSEVNTENA, 1);
1074 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSMSTRENA, 1);
1075 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1076 break;
1077
1078 /* 802.AS1, Ethernet, any kind of event packet */
1079 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1080 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, AV8021ASMEN, 1);
1081 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, SNAPTYPSEL, 1);
1082 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1083 break;
1084
1085 /* 802.AS1, Ethernet, Sync packet */
1086 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1087 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, AV8021ASMEN, 1);
1088 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSEVNTENA, 1);
1089 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1090 break;
1091
1092 /* 802.AS1, Ethernet, Delay_req packet */
1093 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1094 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, AV8021ASMEN, 1);
1095 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSMSTRENA, 1);
1096 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSEVNTENA, 1);
1097 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1098 break;
1099
1100 /* PTP v2/802.AS1, any layer, any kind of event packet */
1101 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1102 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSVER2ENA, 1);
1103 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPENA, 1);
1104 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV4ENA, 1);
1105 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV6ENA, 1);
1106 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, SNAPTYPSEL, 1);
1107 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1108 break;
1109
1110 /* PTP v2/802.AS1, any layer, Sync packet */
1111 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1112 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSVER2ENA, 1);
1113 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPENA, 1);
1114 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV4ENA, 1);
1115 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV6ENA, 1);
1116 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSEVNTENA, 1);
1117 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1118 break;
1119
1120 /* PTP v2/802.AS1, any layer, Delay_req packet */
1121 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1122 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSVER2ENA, 1);
1123 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPENA, 1);
1124 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV4ENA, 1);
1125 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSIPV6ENA, 1);
1126 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSMSTRENA, 1);
1127 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSEVNTENA, 1);
1128 XGMAC_SET_BITS(mac_tscr, MAC_TSCR, TSENA, 1);
1129 break;
1130
1131 default:
1132 return -ERANGE;
1133 }
1134
1135 pdata->hw_if.config_tstamp(pdata, mac_tscr);
1136
1137 memcpy(&pdata->tstamp_config, &config, sizeof(config));
1138
1139 return 0;
1140}
1141
1142static void xgbe_prep_tx_tstamp(struct xgbe_prv_data *pdata,
1143 struct sk_buff *skb,
1144 struct xgbe_packet_data *packet)
1145{
1146 unsigned long flags;
1147
1148 if (XGMAC_GET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES, PTP)) {
1149 spin_lock_irqsave(&pdata->tstamp_lock, flags);
1150 if (pdata->tx_tstamp_skb) {
1151 /* Another timestamp in progress, ignore this one */
1152 XGMAC_SET_BITS(packet->attributes,
1153 TX_PACKET_ATTRIBUTES, PTP, 0);
1154 } else {
1155 pdata->tx_tstamp_skb = skb_get(skb);
1156 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1157 }
1158 spin_unlock_irqrestore(&pdata->tstamp_lock, flags);
1159 }
1160
1161 if (!XGMAC_GET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES, PTP))
1162 skb_tx_timestamp(skb);
1163}
1164
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001165static void xgbe_prep_vlan(struct sk_buff *skb, struct xgbe_packet_data *packet)
1166{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001167 if (skb_vlan_tag_present(skb))
1168 packet->vlan_ctag = skb_vlan_tag_get(skb);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001169}
1170
1171static int xgbe_prep_tso(struct sk_buff *skb, struct xgbe_packet_data *packet)
1172{
1173 int ret;
1174
1175 if (!XGMAC_GET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES,
1176 TSO_ENABLE))
1177 return 0;
1178
1179 ret = skb_cow_head(skb, 0);
1180 if (ret)
1181 return ret;
1182
1183 packet->header_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
1184 packet->tcp_header_len = tcp_hdrlen(skb);
1185 packet->tcp_payload_len = skb->len - packet->header_len;
1186 packet->mss = skb_shinfo(skb)->gso_size;
1187 DBGPR(" packet->header_len=%u\n", packet->header_len);
1188 DBGPR(" packet->tcp_header_len=%u, packet->tcp_payload_len=%u\n",
1189 packet->tcp_header_len, packet->tcp_payload_len);
1190 DBGPR(" packet->mss=%u\n", packet->mss);
1191
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001192 /* Update the number of packets that will ultimately be transmitted
1193 * along with the extra bytes for each extra packet
1194 */
1195 packet->tx_packets = skb_shinfo(skb)->gso_segs;
1196 packet->tx_bytes += (packet->tx_packets - 1) * packet->header_len;
1197
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001198 return 0;
1199}
1200
1201static int xgbe_is_tso(struct sk_buff *skb)
1202{
1203 if (skb->ip_summed != CHECKSUM_PARTIAL)
1204 return 0;
1205
1206 if (!skb_is_gso(skb))
1207 return 0;
1208
1209 DBGPR(" TSO packet to be processed\n");
1210
1211 return 1;
1212}
1213
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001214static void xgbe_packet_info(struct xgbe_prv_data *pdata,
1215 struct xgbe_ring *ring, struct sk_buff *skb,
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001216 struct xgbe_packet_data *packet)
1217{
1218 struct skb_frag_struct *frag;
1219 unsigned int context_desc;
1220 unsigned int len;
1221 unsigned int i;
1222
Lendacky, Thomas16958a22014-11-20 11:04:08 -06001223 packet->skb = skb;
1224
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001225 context_desc = 0;
1226 packet->rdesc_count = 0;
1227
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001228 packet->tx_packets = 1;
1229 packet->tx_bytes = skb->len;
1230
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001231 if (xgbe_is_tso(skb)) {
Lendacky, Thomasa7beaf22014-11-04 16:07:29 -06001232 /* TSO requires an extra descriptor if mss is different */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001233 if (skb_shinfo(skb)->gso_size != ring->tx.cur_mss) {
1234 context_desc = 1;
1235 packet->rdesc_count++;
1236 }
1237
Lendacky, Thomasa7beaf22014-11-04 16:07:29 -06001238 /* TSO requires an extra descriptor for TSO header */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001239 packet->rdesc_count++;
1240
1241 XGMAC_SET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES,
1242 TSO_ENABLE, 1);
1243 XGMAC_SET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES,
1244 CSUM_ENABLE, 1);
1245 } else if (skb->ip_summed == CHECKSUM_PARTIAL)
1246 XGMAC_SET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES,
1247 CSUM_ENABLE, 1);
1248
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001249 if (skb_vlan_tag_present(skb)) {
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001250 /* VLAN requires an extra descriptor if tag is different */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001251 if (skb_vlan_tag_get(skb) != ring->tx.cur_vlan_ctag)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001252 /* We can share with the TSO context descriptor */
1253 if (!context_desc) {
1254 context_desc = 1;
1255 packet->rdesc_count++;
1256 }
1257
1258 XGMAC_SET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES,
1259 VLAN_CTAG, 1);
1260 }
1261
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001262 if ((skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
1263 (pdata->tstamp_config.tx_type == HWTSTAMP_TX_ON))
1264 XGMAC_SET_BITS(packet->attributes, TX_PACKET_ATTRIBUTES,
1265 PTP, 1);
1266
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001267 for (len = skb_headlen(skb); len;) {
1268 packet->rdesc_count++;
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -05001269 len -= min_t(unsigned int, len, XGBE_TX_MAX_BUF_SIZE);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001270 }
1271
1272 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1273 frag = &skb_shinfo(skb)->frags[i];
1274 for (len = skb_frag_size(frag); len; ) {
1275 packet->rdesc_count++;
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -05001276 len -= min_t(unsigned int, len, XGBE_TX_MAX_BUF_SIZE);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001277 }
1278 }
1279}
1280
1281static int xgbe_open(struct net_device *netdev)
1282{
1283 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1284 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1285 struct xgbe_desc_if *desc_if = &pdata->desc_if;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001286 struct xgbe_channel *channel = NULL;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001287 unsigned int i = 0;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001288 int ret;
1289
1290 DBGPR("-->xgbe_open\n");
1291
Lendacky, Thomas88131a82014-08-05 13:30:44 -05001292 /* Initialize the phy */
1293 ret = xgbe_phy_init(pdata);
1294 if (ret)
1295 return ret;
1296
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001297 /* Enable the clocks */
1298 ret = clk_prepare_enable(pdata->sysclk);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001299 if (ret) {
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001300 netdev_alert(netdev, "dma clk_prepare_enable failed\n");
Lendacky, Thomas88131a82014-08-05 13:30:44 -05001301 goto err_phy_init;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001302 }
1303
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001304 ret = clk_prepare_enable(pdata->ptpclk);
1305 if (ret) {
1306 netdev_alert(netdev, "ptp clk_prepare_enable failed\n");
1307 goto err_sysclk;
1308 }
1309
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001310 /* Calculate the Rx buffer size before allocating rings */
1311 ret = xgbe_calc_rx_buf_size(netdev, netdev->mtu);
1312 if (ret < 0)
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001313 goto err_ptpclk;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001314 pdata->rx_buf_size = ret;
1315
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -06001316 /* Allocate the channel and ring structures */
1317 ret = xgbe_alloc_channels(pdata);
1318 if (ret)
1319 goto err_ptpclk;
1320
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001321 /* Allocate the ring descriptors and buffers */
1322 ret = desc_if->alloc_ring_resources(pdata);
1323 if (ret)
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -06001324 goto err_channels;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001325
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001326 /* Initialize the device restart and Tx timestamp work struct */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001327 INIT_WORK(&pdata->restart_work, xgbe_restart);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001328 INIT_WORK(&pdata->tx_tstamp_work, xgbe_tx_tstamp);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001329
1330 /* Request interrupts */
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001331 ret = devm_request_irq(pdata->dev, pdata->dev_irq, xgbe_isr, 0,
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001332 netdev->name, pdata);
1333 if (ret) {
1334 netdev_alert(netdev, "error requesting irq %d\n",
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001335 pdata->dev_irq);
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -06001336 goto err_rings;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001337 }
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001338
1339 if (pdata->per_channel_irq) {
1340 channel = pdata->channel;
1341 for (i = 0; i < pdata->channel_count; i++, channel++) {
Lendacky, Thomas54ceb9e2014-12-02 18:07:18 -06001342 snprintf(channel->dma_irq_name,
1343 sizeof(channel->dma_irq_name) - 1,
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001344 "%s-TxRx-%u", netdev_name(netdev),
1345 channel->queue_index);
1346
1347 ret = devm_request_irq(pdata->dev, channel->dma_irq,
Lendacky, Thomas54ceb9e2014-12-02 18:07:18 -06001348 xgbe_dma_isr, 0,
1349 channel->dma_irq_name, channel);
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001350 if (ret) {
1351 netdev_alert(netdev,
1352 "error requesting irq %d\n",
1353 channel->dma_irq);
1354 goto err_irq;
1355 }
1356 }
1357 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001358
1359 ret = xgbe_start(pdata);
1360 if (ret)
1361 goto err_start;
1362
1363 DBGPR("<--xgbe_open\n");
1364
1365 return 0;
1366
1367err_start:
1368 hw_if->exit(pdata);
1369
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001370err_irq:
1371 if (pdata->per_channel_irq) {
1372 /* Using an unsigned int, 'i' will go to UINT_MAX and exit */
1373 for (i--, channel--; i < pdata->channel_count; i--, channel--)
1374 devm_free_irq(pdata->dev, channel->dma_irq, channel);
1375 }
1376
1377 devm_free_irq(pdata->dev, pdata->dev_irq, pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001378
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -06001379err_rings:
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001380 desc_if->free_ring_resources(pdata);
1381
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -06001382err_channels:
1383 xgbe_free_channels(pdata);
1384
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001385err_ptpclk:
1386 clk_disable_unprepare(pdata->ptpclk);
1387
1388err_sysclk:
1389 clk_disable_unprepare(pdata->sysclk);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001390
Lendacky, Thomas88131a82014-08-05 13:30:44 -05001391err_phy_init:
1392 xgbe_phy_exit(pdata);
1393
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001394 return ret;
1395}
1396
1397static int xgbe_close(struct net_device *netdev)
1398{
1399 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1400 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1401 struct xgbe_desc_if *desc_if = &pdata->desc_if;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001402 struct xgbe_channel *channel;
1403 unsigned int i;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001404
1405 DBGPR("-->xgbe_close\n");
1406
1407 /* Stop the device */
1408 xgbe_stop(pdata);
1409
1410 /* Issue software reset to device */
1411 hw_if->exit(pdata);
1412
Lendacky, Thomas4780b7c2014-11-04 16:06:26 -06001413 /* Free the ring descriptors and buffers */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001414 desc_if->free_ring_resources(pdata);
1415
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001416 /* Release the interrupts */
1417 devm_free_irq(pdata->dev, pdata->dev_irq, pdata);
1418 if (pdata->per_channel_irq) {
1419 channel = pdata->channel;
1420 for (i = 0; i < pdata->channel_count; i++, channel++)
1421 devm_free_irq(pdata->dev, channel->dma_irq, channel);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001422 }
1423
Lendacky, Thomase98c72c2014-11-06 17:02:13 -06001424 /* Free the channel and ring structures */
1425 xgbe_free_channels(pdata);
1426
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001427 /* Disable the clocks */
1428 clk_disable_unprepare(pdata->ptpclk);
1429 clk_disable_unprepare(pdata->sysclk);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001430
Lendacky, Thomas88131a82014-08-05 13:30:44 -05001431 /* Release the phy */
1432 xgbe_phy_exit(pdata);
1433
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001434 DBGPR("<--xgbe_close\n");
1435
1436 return 0;
1437}
1438
1439static int xgbe_xmit(struct sk_buff *skb, struct net_device *netdev)
1440{
1441 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1442 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1443 struct xgbe_desc_if *desc_if = &pdata->desc_if;
1444 struct xgbe_channel *channel;
1445 struct xgbe_ring *ring;
1446 struct xgbe_packet_data *packet;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001447 struct netdev_queue *txq;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001448 unsigned long flags;
1449 int ret;
1450
1451 DBGPR("-->xgbe_xmit: skb->len = %d\n", skb->len);
1452
1453 channel = pdata->channel + skb->queue_mapping;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001454 txq = netdev_get_tx_queue(netdev, channel->queue_index);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001455 ring = channel->tx_ring;
1456 packet = &ring->packet_data;
1457
1458 ret = NETDEV_TX_OK;
1459
1460 spin_lock_irqsave(&ring->lock, flags);
1461
1462 if (skb->len == 0) {
1463 netdev_err(netdev, "empty skb received from stack\n");
1464 dev_kfree_skb_any(skb);
1465 goto tx_netdev_return;
1466 }
1467
1468 /* Calculate preliminary packet info */
1469 memset(packet, 0, sizeof(*packet));
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001470 xgbe_packet_info(pdata, ring, skb, packet);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001471
1472 /* Check that there are enough descriptors available */
Lendacky, Thomas16958a22014-11-20 11:04:08 -06001473 ret = xgbe_maybe_stop_tx_queue(channel, ring, packet->rdesc_count);
1474 if (ret)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001475 goto tx_netdev_return;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001476
1477 ret = xgbe_prep_tso(skb, packet);
1478 if (ret) {
1479 netdev_err(netdev, "error processing TSO packet\n");
1480 dev_kfree_skb_any(skb);
1481 goto tx_netdev_return;
1482 }
1483 xgbe_prep_vlan(skb, packet);
1484
1485 if (!desc_if->map_tx_skb(channel, skb)) {
1486 dev_kfree_skb_any(skb);
1487 goto tx_netdev_return;
1488 }
1489
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001490 xgbe_prep_tx_tstamp(pdata, skb, packet);
1491
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001492 /* Report on the actual number of bytes (to be) sent */
1493 netdev_tx_sent_queue(txq, packet->tx_bytes);
1494
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001495 /* Configure required descriptor fields for transmission */
Lendacky, Thomasa9d41982014-11-04 16:06:32 -06001496 hw_if->dev_xmit(channel);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001497
1498#ifdef XGMAC_ENABLE_TX_PKT_DUMP
1499 xgbe_print_pkt(netdev, skb, true);
1500#endif
1501
Lendacky, Thomas16958a22014-11-20 11:04:08 -06001502 /* Stop the queue in advance if there may not be enough descriptors */
1503 xgbe_maybe_stop_tx_queue(channel, ring, XGBE_TX_MAX_DESCS);
1504
1505 ret = NETDEV_TX_OK;
1506
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001507tx_netdev_return:
1508 spin_unlock_irqrestore(&ring->lock, flags);
1509
1510 DBGPR("<--xgbe_xmit\n");
1511
1512 return ret;
1513}
1514
1515static void xgbe_set_rx_mode(struct net_device *netdev)
1516{
1517 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1518 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1519 unsigned int pr_mode, am_mode;
1520
1521 DBGPR("-->xgbe_set_rx_mode\n");
1522
1523 pr_mode = ((netdev->flags & IFF_PROMISC) != 0);
1524 am_mode = ((netdev->flags & IFF_ALLMULTI) != 0);
1525
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001526 hw_if->set_promiscuous_mode(pdata, pr_mode);
1527 hw_if->set_all_multicast_mode(pdata, am_mode);
Lendacky, Thomasb85e4d82014-06-24 16:19:29 -05001528
1529 hw_if->add_mac_addresses(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001530
1531 DBGPR("<--xgbe_set_rx_mode\n");
1532}
1533
1534static int xgbe_set_mac_address(struct net_device *netdev, void *addr)
1535{
1536 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1537 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1538 struct sockaddr *saddr = addr;
1539
1540 DBGPR("-->xgbe_set_mac_address\n");
1541
1542 if (!is_valid_ether_addr(saddr->sa_data))
1543 return -EADDRNOTAVAIL;
1544
1545 memcpy(netdev->dev_addr, saddr->sa_data, netdev->addr_len);
1546
1547 hw_if->set_mac_address(pdata, netdev->dev_addr);
1548
1549 DBGPR("<--xgbe_set_mac_address\n");
1550
1551 return 0;
1552}
1553
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001554static int xgbe_ioctl(struct net_device *netdev, struct ifreq *ifreq, int cmd)
1555{
1556 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1557 int ret;
1558
1559 switch (cmd) {
1560 case SIOCGHWTSTAMP:
1561 ret = xgbe_get_hwtstamp_settings(pdata, ifreq);
1562 break;
1563
1564 case SIOCSHWTSTAMP:
1565 ret = xgbe_set_hwtstamp_settings(pdata, ifreq);
1566 break;
1567
1568 default:
1569 ret = -EOPNOTSUPP;
1570 }
1571
1572 return ret;
1573}
1574
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001575static int xgbe_change_mtu(struct net_device *netdev, int mtu)
1576{
1577 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1578 int ret;
1579
1580 DBGPR("-->xgbe_change_mtu\n");
1581
1582 ret = xgbe_calc_rx_buf_size(netdev, mtu);
1583 if (ret < 0)
1584 return ret;
1585
1586 pdata->rx_buf_size = ret;
1587 netdev->mtu = mtu;
1588
Lendacky, Thomas916102c2015-01-16 12:46:45 -06001589 xgbe_restart_dev(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001590
1591 DBGPR("<--xgbe_change_mtu\n");
1592
1593 return 0;
1594}
1595
1596static struct rtnl_link_stats64 *xgbe_get_stats64(struct net_device *netdev,
1597 struct rtnl_link_stats64 *s)
1598{
1599 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1600 struct xgbe_mmc_stats *pstats = &pdata->mmc_stats;
1601
1602 DBGPR("-->%s\n", __func__);
1603
1604 pdata->hw_if.read_mmc_stats(pdata);
1605
1606 s->rx_packets = pstats->rxframecount_gb;
1607 s->rx_bytes = pstats->rxoctetcount_gb;
1608 s->rx_errors = pstats->rxframecount_gb -
1609 pstats->rxbroadcastframes_g -
1610 pstats->rxmulticastframes_g -
1611 pstats->rxunicastframes_g;
1612 s->multicast = pstats->rxmulticastframes_g;
1613 s->rx_length_errors = pstats->rxlengtherror;
1614 s->rx_crc_errors = pstats->rxcrcerror;
1615 s->rx_fifo_errors = pstats->rxfifooverflow;
1616
1617 s->tx_packets = pstats->txframecount_gb;
1618 s->tx_bytes = pstats->txoctetcount_gb;
1619 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g;
1620 s->tx_dropped = netdev->stats.tx_dropped;
1621
1622 DBGPR("<--%s\n", __func__);
1623
1624 return s;
1625}
1626
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001627static int xgbe_vlan_rx_add_vid(struct net_device *netdev, __be16 proto,
1628 u16 vid)
1629{
1630 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1631 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1632
1633 DBGPR("-->%s\n", __func__);
1634
1635 set_bit(vid, pdata->active_vlans);
1636 hw_if->update_vlan_hash_table(pdata);
1637
1638 DBGPR("<--%s\n", __func__);
1639
1640 return 0;
1641}
1642
1643static int xgbe_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto,
1644 u16 vid)
1645{
1646 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1647 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1648
1649 DBGPR("-->%s\n", __func__);
1650
1651 clear_bit(vid, pdata->active_vlans);
1652 hw_if->update_vlan_hash_table(pdata);
1653
1654 DBGPR("<--%s\n", __func__);
1655
1656 return 0;
1657}
1658
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001659#ifdef CONFIG_NET_POLL_CONTROLLER
1660static void xgbe_poll_controller(struct net_device *netdev)
1661{
1662 struct xgbe_prv_data *pdata = netdev_priv(netdev);
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001663 struct xgbe_channel *channel;
1664 unsigned int i;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001665
1666 DBGPR("-->xgbe_poll_controller\n");
1667
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001668 if (pdata->per_channel_irq) {
1669 channel = pdata->channel;
1670 for (i = 0; i < pdata->channel_count; i++, channel++)
1671 xgbe_dma_isr(channel->dma_irq, channel);
1672 } else {
1673 disable_irq(pdata->dev_irq);
1674 xgbe_isr(pdata->dev_irq, pdata);
1675 enable_irq(pdata->dev_irq);
1676 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001677
1678 DBGPR("<--xgbe_poll_controller\n");
1679}
1680#endif /* End CONFIG_NET_POLL_CONTROLLER */
1681
Lendacky, Thomasfca2d992014-07-29 08:57:55 -05001682static int xgbe_setup_tc(struct net_device *netdev, u8 tc)
1683{
1684 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1685 unsigned int offset, queue;
1686 u8 i;
1687
1688 if (tc && (tc != pdata->hw_feat.tc_cnt))
1689 return -EINVAL;
1690
1691 if (tc) {
1692 netdev_set_num_tc(netdev, tc);
1693 for (i = 0, queue = 0, offset = 0; i < tc; i++) {
1694 while ((queue < pdata->tx_q_count) &&
1695 (pdata->q2tc_map[queue] == i))
1696 queue++;
1697
1698 DBGPR(" TC%u using TXq%u-%u\n", i, offset, queue - 1);
1699 netdev_set_tc_queue(netdev, i, queue - offset, offset);
1700 offset = queue;
1701 }
1702 } else {
1703 netdev_reset_tc(netdev);
1704 }
1705
1706 return 0;
1707}
1708
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001709static int xgbe_set_features(struct net_device *netdev,
1710 netdev_features_t features)
1711{
1712 struct xgbe_prv_data *pdata = netdev_priv(netdev);
1713 struct xgbe_hw_if *hw_if = &pdata->hw_if;
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -06001714 netdev_features_t rxhash, rxcsum, rxvlan, rxvlan_filter;
1715 int ret = 0;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001716
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -06001717 rxhash = pdata->netdev_features & NETIF_F_RXHASH;
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001718 rxcsum = pdata->netdev_features & NETIF_F_RXCSUM;
1719 rxvlan = pdata->netdev_features & NETIF_F_HW_VLAN_CTAG_RX;
1720 rxvlan_filter = pdata->netdev_features & NETIF_F_HW_VLAN_CTAG_FILTER;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001721
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -06001722 if ((features & NETIF_F_RXHASH) && !rxhash)
1723 ret = hw_if->enable_rss(pdata);
1724 else if (!(features & NETIF_F_RXHASH) && rxhash)
1725 ret = hw_if->disable_rss(pdata);
1726 if (ret)
1727 return ret;
1728
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001729 if ((features & NETIF_F_RXCSUM) && !rxcsum)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001730 hw_if->enable_rx_csum(pdata);
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001731 else if (!(features & NETIF_F_RXCSUM) && rxcsum)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001732 hw_if->disable_rx_csum(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001733
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001734 if ((features & NETIF_F_HW_VLAN_CTAG_RX) && !rxvlan)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001735 hw_if->enable_rx_vlan_stripping(pdata);
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001736 else if (!(features & NETIF_F_HW_VLAN_CTAG_RX) && rxvlan)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001737 hw_if->disable_rx_vlan_stripping(pdata);
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001738
1739 if ((features & NETIF_F_HW_VLAN_CTAG_FILTER) && !rxvlan_filter)
1740 hw_if->enable_rx_vlan_filtering(pdata);
1741 else if (!(features & NETIF_F_HW_VLAN_CTAG_FILTER) && rxvlan_filter)
1742 hw_if->disable_rx_vlan_filtering(pdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001743
1744 pdata->netdev_features = features;
1745
1746 DBGPR("<--xgbe_set_features\n");
1747
1748 return 0;
1749}
1750
1751static const struct net_device_ops xgbe_netdev_ops = {
1752 .ndo_open = xgbe_open,
1753 .ndo_stop = xgbe_close,
1754 .ndo_start_xmit = xgbe_xmit,
1755 .ndo_set_rx_mode = xgbe_set_rx_mode,
1756 .ndo_set_mac_address = xgbe_set_mac_address,
1757 .ndo_validate_addr = eth_validate_addr,
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001758 .ndo_do_ioctl = xgbe_ioctl,
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001759 .ndo_change_mtu = xgbe_change_mtu,
1760 .ndo_get_stats64 = xgbe_get_stats64,
Lendacky, Thomas801c62d2014-06-24 16:19:24 -05001761 .ndo_vlan_rx_add_vid = xgbe_vlan_rx_add_vid,
1762 .ndo_vlan_rx_kill_vid = xgbe_vlan_rx_kill_vid,
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001763#ifdef CONFIG_NET_POLL_CONTROLLER
1764 .ndo_poll_controller = xgbe_poll_controller,
1765#endif
Lendacky, Thomasfca2d992014-07-29 08:57:55 -05001766 .ndo_setup_tc = xgbe_setup_tc,
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001767 .ndo_set_features = xgbe_set_features,
1768};
1769
1770struct net_device_ops *xgbe_get_netdev_ops(void)
1771{
1772 return (struct net_device_ops *)&xgbe_netdev_ops;
1773}
1774
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -05001775static void xgbe_rx_refresh(struct xgbe_channel *channel)
1776{
1777 struct xgbe_prv_data *pdata = channel->pdata;
1778 struct xgbe_desc_if *desc_if = &pdata->desc_if;
1779 struct xgbe_ring *ring = channel->rx_ring;
1780 struct xgbe_ring_data *rdata;
1781
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001782 desc_if->realloc_rx_buffer(channel);
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -05001783
1784 /* Update the Rx Tail Pointer Register with address of
1785 * the last cleaned entry */
1786 rdata = XGBE_GET_DESC_DATA(ring, ring->rx.realloc_index - 1);
1787 XGMAC_DMA_IOWRITE(channel, DMA_CH_RDTR_LO,
1788 lower_32_bits(rdata->rdesc_dma));
1789}
1790
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001791static struct sk_buff *xgbe_create_skb(struct xgbe_prv_data *pdata,
1792 struct xgbe_ring_data *rdata,
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001793 unsigned int *len)
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001794{
1795 struct net_device *netdev = pdata->netdev;
1796 struct sk_buff *skb;
1797 u8 *packet;
1798 unsigned int copy_len;
1799
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -06001800 skb = netdev_alloc_skb_ip_align(netdev, rdata->rx.hdr.dma_len);
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001801 if (!skb)
1802 return NULL;
1803
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -06001804 packet = page_address(rdata->rx.hdr.pa.pages) +
1805 rdata->rx.hdr.pa.pages_offset;
1806 copy_len = (rdata->rx.hdr_len) ? rdata->rx.hdr_len : *len;
1807 copy_len = min(rdata->rx.hdr.dma_len, copy_len);
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001808 skb_copy_to_linear_data(skb, packet, copy_len);
1809 skb_put(skb, copy_len);
1810
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001811 *len -= copy_len;
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001812
1813 return skb;
1814}
1815
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001816static int xgbe_tx_poll(struct xgbe_channel *channel)
1817{
1818 struct xgbe_prv_data *pdata = channel->pdata;
1819 struct xgbe_hw_if *hw_if = &pdata->hw_if;
1820 struct xgbe_desc_if *desc_if = &pdata->desc_if;
1821 struct xgbe_ring *ring = channel->tx_ring;
1822 struct xgbe_ring_data *rdata;
1823 struct xgbe_ring_desc *rdesc;
1824 struct net_device *netdev = pdata->netdev;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001825 struct netdev_queue *txq;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001826 unsigned long flags;
1827 int processed = 0;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001828 unsigned int tx_packets = 0, tx_bytes = 0;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001829
1830 DBGPR("-->xgbe_tx_poll\n");
1831
1832 /* Nothing to do if there isn't a Tx ring for this channel */
1833 if (!ring)
1834 return 0;
1835
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001836 txq = netdev_get_tx_queue(netdev, channel->queue_index);
1837
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001838 spin_lock_irqsave(&ring->lock, flags);
1839
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -05001840 while ((processed < XGBE_TX_DESC_MAX_PROC) &&
Lendacky, Thomas244d62b2014-12-04 11:52:35 -06001841 (ring->dirty != ring->cur)) {
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -05001842 rdata = XGBE_GET_DESC_DATA(ring, ring->dirty);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001843 rdesc = rdata->rdesc;
1844
1845 if (!hw_if->tx_complete(rdesc))
1846 break;
1847
Lendacky, Thomas5449e272014-11-20 11:03:26 -06001848 /* Make sure descriptor fields are read after reading the OWN
1849 * bit */
1850 rmb();
1851
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001852#ifdef XGMAC_ENABLE_TX_DESC_DUMP
1853 xgbe_dump_tx_desc(ring, ring->dirty, 1, 0);
1854#endif
1855
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001856 if (hw_if->is_last_desc(rdesc)) {
1857 tx_packets += rdata->tx.packets;
1858 tx_bytes += rdata->tx.bytes;
1859 }
1860
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001861 /* Free the SKB and reset the descriptor for re-use */
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001862 desc_if->unmap_rdata(pdata, rdata);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001863 hw_if->tx_desc_reset(rdata);
1864
1865 processed++;
1866 ring->dirty++;
1867 }
1868
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001869 if (!processed)
1870 goto unlock;
1871
1872 netdev_tx_completed_queue(txq, tx_packets, tx_bytes);
1873
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001874 if ((ring->tx.queue_stopped == 1) &&
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -05001875 (xgbe_tx_avail_desc(ring) > XGBE_TX_DESC_MIN_FREE)) {
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001876 ring->tx.queue_stopped = 0;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001877 netif_tx_wake_queue(txq);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001878 }
1879
1880 DBGPR("<--xgbe_tx_poll: processed=%d\n", processed);
1881
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -06001882unlock:
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001883 spin_unlock_irqrestore(&ring->lock, flags);
1884
1885 return processed;
1886}
1887
1888static int xgbe_rx_poll(struct xgbe_channel *channel, int budget)
1889{
1890 struct xgbe_prv_data *pdata = channel->pdata;
1891 struct xgbe_hw_if *hw_if = &pdata->hw_if;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001892 struct xgbe_ring *ring = channel->rx_ring;
1893 struct xgbe_ring_data *rdata;
1894 struct xgbe_packet_data *packet;
1895 struct net_device *netdev = pdata->netdev;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001896 struct napi_struct *napi;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001897 struct sk_buff *skb;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001898 struct skb_shared_hwtstamps *hwtstamps;
1899 unsigned int incomplete, error, context_next, context;
1900 unsigned int len, put_len, max_len;
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05001901 unsigned int received = 0;
1902 int packet_count = 0;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001903
1904 DBGPR("-->xgbe_rx_poll: budget=%d\n", budget);
1905
1906 /* Nothing to do if there isn't a Rx ring for this channel */
1907 if (!ring)
1908 return 0;
1909
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06001910 napi = (pdata->per_channel_irq) ? &channel->napi : &pdata->napi;
1911
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001912 rdata = XGBE_GET_DESC_DATA(ring, ring->cur);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001913 packet = &ring->packet_data;
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05001914 while (packet_count < budget) {
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001915 DBGPR(" cur = %d\n", ring->cur);
1916
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001917 /* First time in loop see if we need to restore state */
1918 if (!received && rdata->state_saved) {
1919 incomplete = rdata->state.incomplete;
1920 context_next = rdata->state.context_next;
1921 skb = rdata->state.skb;
1922 error = rdata->state.error;
1923 len = rdata->state.len;
1924 } else {
1925 memset(packet, 0, sizeof(*packet));
1926 incomplete = 0;
1927 context_next = 0;
1928 skb = NULL;
1929 error = 0;
1930 len = 0;
1931 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001932
1933read_again:
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001934 rdata = XGBE_GET_DESC_DATA(ring, ring->cur);
1935
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -05001936 if (ring->dirty > (XGBE_RX_DESC_CNT >> 3))
1937 xgbe_rx_refresh(channel);
1938
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001939 if (hw_if->dev_read(channel))
1940 break;
1941
1942 received++;
1943 ring->cur++;
1944 ring->dirty++;
1945
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001946 incomplete = XGMAC_GET_BITS(packet->attributes,
1947 RX_PACKET_ATTRIBUTES,
1948 INCOMPLETE);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001949 context_next = XGMAC_GET_BITS(packet->attributes,
1950 RX_PACKET_ATTRIBUTES,
1951 CONTEXT_NEXT);
1952 context = XGMAC_GET_BITS(packet->attributes,
1953 RX_PACKET_ATTRIBUTES,
1954 CONTEXT);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001955
1956 /* Earlier error, just drain the remaining data */
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001957 if ((incomplete || context_next) && error)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001958 goto read_again;
1959
1960 if (error || packet->errors) {
1961 if (packet->errors)
1962 DBGPR("Error in received packet\n");
1963 dev_kfree_skb(skb);
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05001964 goto next_packet;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001965 }
1966
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001967 if (!context) {
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -06001968 put_len = rdata->rx.len - len;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001969 len += put_len;
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001970
1971 if (!skb) {
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001972 dma_sync_single_for_cpu(pdata->dev,
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -06001973 rdata->rx.hdr.dma,
1974 rdata->rx.hdr.dma_len,
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001975 DMA_FROM_DEVICE);
1976
1977 skb = xgbe_create_skb(pdata, rdata, &put_len);
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001978 if (!skb) {
1979 error = 1;
Lendacky, Thomasf5eecbb2014-11-06 17:02:19 -06001980 goto skip_data;
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001981 }
Lendacky, Thomas08dcc472014-11-04 16:06:44 -06001982 }
1983
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001984 if (put_len) {
1985 dma_sync_single_for_cpu(pdata->dev,
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -06001986 rdata->rx.buf.dma,
1987 rdata->rx.buf.dma_len,
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001988 DMA_FROM_DEVICE);
1989
1990 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -06001991 rdata->rx.buf.pa.pages,
1992 rdata->rx.buf.pa.pages_offset,
1993 put_len, rdata->rx.buf.dma_len);
1994 rdata->rx.buf.pa.pages = NULL;
Lendacky, Thomas174fd252014-11-04 16:06:50 -06001995 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001996 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001997
Lendacky, Thomasf5eecbb2014-11-06 17:02:19 -06001998skip_data:
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05001999 if (incomplete || context_next)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002000 goto read_again;
2001
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05002002 if (!skb)
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05002003 goto next_packet;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05002004
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002005 /* Be sure we don't exceed the configured MTU */
2006 max_len = netdev->mtu + ETH_HLEN;
2007 if (!(netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2008 (skb->protocol == htons(ETH_P_8021Q)))
2009 max_len += VLAN_HLEN;
2010
2011 if (skb->len > max_len) {
2012 DBGPR("packet length exceeds configured MTU\n");
2013 dev_kfree_skb(skb);
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05002014 goto next_packet;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002015 }
2016
2017#ifdef XGMAC_ENABLE_RX_PKT_DUMP
2018 xgbe_print_pkt(netdev, skb, false);
2019#endif
2020
2021 skb_checksum_none_assert(skb);
2022 if (XGMAC_GET_BITS(packet->attributes,
2023 RX_PACKET_ATTRIBUTES, CSUM_DONE))
2024 skb->ip_summed = CHECKSUM_UNNECESSARY;
2025
2026 if (XGMAC_GET_BITS(packet->attributes,
2027 RX_PACKET_ATTRIBUTES, VLAN_CTAG))
2028 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
2029 packet->vlan_ctag);
2030
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05002031 if (XGMAC_GET_BITS(packet->attributes,
2032 RX_PACKET_ATTRIBUTES, RX_TSTAMP)) {
2033 u64 nsec;
2034
2035 nsec = timecounter_cyc2time(&pdata->tstamp_tc,
2036 packet->rx_tstamp);
2037 hwtstamps = skb_hwtstamps(skb);
2038 hwtstamps->hwtstamp = ns_to_ktime(nsec);
2039 }
2040
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -06002041 if (XGMAC_GET_BITS(packet->attributes,
2042 RX_PACKET_ATTRIBUTES, RSS_HASH))
2043 skb_set_hash(skb, packet->rss_hash,
2044 packet->rss_hash_type);
2045
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002046 skb->dev = netdev;
2047 skb->protocol = eth_type_trans(skb, netdev);
2048 skb_record_rx_queue(skb, channel->queue_index);
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06002049 skb_mark_napi_id(skb, napi);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002050
2051 netdev->last_rx = jiffies;
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06002052 napi_gro_receive(napi, skb);
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05002053
2054next_packet:
2055 packet_count++;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002056 }
2057
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -05002058 /* Check if we need to save state before leaving */
2059 if (received && (incomplete || context_next)) {
2060 rdata = XGBE_GET_DESC_DATA(ring, ring->cur);
2061 rdata->state_saved = 1;
2062 rdata->state.incomplete = incomplete;
2063 rdata->state.context_next = context_next;
2064 rdata->state.skb = skb;
2065 rdata->state.len = len;
2066 rdata->state.error = error;
2067 }
2068
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05002069 DBGPR("<--xgbe_rx_poll: packet_count = %d\n", packet_count);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002070
Lendacky, Thomas55ca6bc2014-10-22 11:26:17 -05002071 return packet_count;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002072}
2073
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06002074static int xgbe_one_poll(struct napi_struct *napi, int budget)
2075{
2076 struct xgbe_channel *channel = container_of(napi, struct xgbe_channel,
2077 napi);
2078 int processed = 0;
2079
2080 DBGPR("-->xgbe_one_poll: budget=%d\n", budget);
2081
2082 /* Cleanup Tx ring first */
2083 xgbe_tx_poll(channel);
2084
2085 /* Process Rx ring next */
2086 processed = xgbe_rx_poll(channel, budget);
2087
2088 /* If we processed everything, we are done */
2089 if (processed < budget) {
2090 /* Turn off polling */
2091 napi_complete(napi);
2092
2093 /* Enable Tx and Rx interrupts */
2094 enable_irq(channel->dma_irq);
2095 }
2096
2097 DBGPR("<--xgbe_one_poll: received = %d\n", processed);
2098
2099 return processed;
2100}
2101
2102static int xgbe_all_poll(struct napi_struct *napi, int budget)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002103{
2104 struct xgbe_prv_data *pdata = container_of(napi, struct xgbe_prv_data,
2105 napi);
2106 struct xgbe_channel *channel;
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -05002107 int ring_budget;
2108 int processed, last_processed;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002109 unsigned int i;
2110
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06002111 DBGPR("-->xgbe_all_poll: budget=%d\n", budget);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002112
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002113 processed = 0;
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -05002114 ring_budget = budget / pdata->rx_ring_count;
2115 do {
2116 last_processed = processed;
2117
2118 channel = pdata->channel;
2119 for (i = 0; i < pdata->channel_count; i++, channel++) {
2120 /* Cleanup Tx ring first */
2121 xgbe_tx_poll(channel);
2122
2123 /* Process Rx ring next */
2124 if (ring_budget > (budget - processed))
2125 ring_budget = budget - processed;
2126 processed += xgbe_rx_poll(channel, ring_budget);
2127 }
2128 } while ((processed < budget) && (processed != last_processed));
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002129
2130 /* If we processed everything, we are done */
2131 if (processed < budget) {
2132 /* Turn off polling */
2133 napi_complete(napi);
2134
2135 /* Enable Tx and Rx interrupts */
2136 xgbe_enable_rx_tx_ints(pdata);
2137 }
2138
Lendacky, Thomas9227dc52014-11-04 16:06:56 -06002139 DBGPR("<--xgbe_all_poll: received = %d\n", processed);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002140
2141 return processed;
2142}
2143
2144void xgbe_dump_tx_desc(struct xgbe_ring *ring, unsigned int idx,
2145 unsigned int count, unsigned int flag)
2146{
2147 struct xgbe_ring_data *rdata;
2148 struct xgbe_ring_desc *rdesc;
2149
2150 while (count--) {
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -05002151 rdata = XGBE_GET_DESC_DATA(ring, idx);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002152 rdesc = rdata->rdesc;
Lendacky, Thomas174fd252014-11-04 16:06:50 -06002153 pr_alert("TX_NORMAL_DESC[%d %s] = %08x:%08x:%08x:%08x\n", idx,
2154 (flag == 1) ? "QUEUED FOR TX" : "TX BY DEVICE",
2155 le32_to_cpu(rdesc->desc0), le32_to_cpu(rdesc->desc1),
2156 le32_to_cpu(rdesc->desc2), le32_to_cpu(rdesc->desc3));
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002157 idx++;
2158 }
2159}
2160
2161void xgbe_dump_rx_desc(struct xgbe_ring *ring, struct xgbe_ring_desc *desc,
2162 unsigned int idx)
2163{
Lendacky, Thomas174fd252014-11-04 16:06:50 -06002164 pr_alert("RX_NORMAL_DESC[%d RX BY DEVICE] = %08x:%08x:%08x:%08x\n", idx,
2165 le32_to_cpu(desc->desc0), le32_to_cpu(desc->desc1),
2166 le32_to_cpu(desc->desc2), le32_to_cpu(desc->desc3));
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05002167}
2168
2169void xgbe_print_pkt(struct net_device *netdev, struct sk_buff *skb, bool tx_rx)
2170{
2171 struct ethhdr *eth = (struct ethhdr *)skb->data;
2172 unsigned char *buf = skb->data;
2173 unsigned char buffer[128];
2174 unsigned int i, j;
2175
2176 netdev_alert(netdev, "\n************** SKB dump ****************\n");
2177
2178 netdev_alert(netdev, "%s packet of %d bytes\n",
2179 (tx_rx ? "TX" : "RX"), skb->len);
2180
2181 netdev_alert(netdev, "Dst MAC addr: %pM\n", eth->h_dest);
2182 netdev_alert(netdev, "Src MAC addr: %pM\n", eth->h_source);
2183 netdev_alert(netdev, "Protocol: 0x%04hx\n", ntohs(eth->h_proto));
2184
2185 for (i = 0, j = 0; i < skb->len;) {
2186 j += snprintf(buffer + j, sizeof(buffer) - j, "%02hhx",
2187 buf[i++]);
2188
2189 if ((i % 32) == 0) {
2190 netdev_alert(netdev, " 0x%04x: %s\n", i - 32, buffer);
2191 j = 0;
2192 } else if ((i % 16) == 0) {
2193 buffer[j++] = ' ';
2194 buffer[j++] = ' ';
2195 } else if ((i % 4) == 0) {
2196 buffer[j++] = ' ';
2197 }
2198 }
2199 if (i % 32)
2200 netdev_alert(netdev, " 0x%04x: %s\n", i - (i % 32), buffer);
2201
2202 netdev_alert(netdev, "\n************** SKB dump ****************\n");
2203}