blob: d654c234aaf75364416d3a1eadfa4fb8fa6924ba [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Santiago Leonf148f612010-09-03 18:29:30 +00002/*
Santiago Leon9d348af2010-09-03 18:29:53 +00003 * IBM Power Virtual Ethernet Device Driver
Santiago Leonf148f612010-09-03 18:29:30 +00004 *
Santiago Leon9d348af2010-09-03 18:29:53 +00005 * Copyright (C) IBM Corporation, 2003, 2010
6 *
7 * Authors: Dave Larson <larson1@us.ibm.com>
8 * Santiago Leon <santil@linux.vnet.ibm.com>
9 * Brian King <brking@linux.vnet.ibm.com>
10 * Robert Jennings <rcj@linux.vnet.ibm.com>
11 * Anton Blanchard <anton@au.ibm.com>
Santiago Leonf148f612010-09-03 18:29:30 +000012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/dma-mapping.h>
18#include <linux/kernel.h>
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
21#include <linux/skbuff.h>
22#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000023#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000025#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070027#include <linux/in.h>
28#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000029#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/hvcall.h>
Arun Sharma600634972011-07-26 16:09:06 -070032#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100034#include <asm/iommu.h>
Robert Jennings1096d632008-07-24 04:34:52 +100035#include <asm/firmware.h>
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -040036#include <net/tcp.h>
37#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include "ibmveth.h"
40
David Howells7d12e782006-10-05 14:55:46 +010041static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100042static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100043static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000044
Santiago Leon860f2422006-04-25 11:19:59 -050045static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Robert Jennings1096d632008-07-24 04:34:52 +100047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leon9d348af2010-09-03 18:29:53 +000049static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
Thomas Falcon7b596732016-12-08 16:40:03 -060050#define ibmveth_driver_version "1.06"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Santiago Leon9d348af2010-09-03 18:29:53 +000052MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
53MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_LICENSE("GPL");
55MODULE_VERSION(ibmveth_driver_version);
56
Santiago Leonc08cc3c2010-09-03 18:28:20 +000057static unsigned int tx_copybreak __read_mostly = 128;
58module_param(tx_copybreak, uint, 0644);
59MODULE_PARM_DESC(tx_copybreak,
60 "Maximum size of packet that is copied to a new buffer on transmit");
61
Santiago Leon8d86c612010-09-03 18:28:25 +000062static unsigned int rx_copybreak __read_mostly = 128;
63module_param(rx_copybreak, uint, 0644);
64MODULE_PARM_DESC(rx_copybreak,
65 "Maximum size of packet that is copied to a new buffer on receive");
66
Santiago Leon0c26b672010-09-03 18:28:41 +000067static unsigned int rx_flush __read_mostly = 0;
68module_param(rx_flush, uint, 0644);
69MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
70
Thomas Falcon07e6a972015-07-14 10:51:51 -050071static bool old_large_send __read_mostly;
Joe Perchesd3757ba2018-03-23 16:34:44 -070072module_param(old_large_send, bool, 0444);
Thomas Falcon07e6a972015-07-14 10:51:51 -050073MODULE_PARM_DESC(old_large_send,
74 "Use old large send method on firmware that supports the new method");
75
Brian Kingddbb4de2007-08-17 09:16:43 -050076struct ibmveth_stat {
77 char name[ETH_GSTRING_LEN];
78 int offset;
79};
80
81#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
82#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
83
YueHaibinga0cfa792019-03-19 22:42:37 +080084static struct ibmveth_stat ibmveth_stats[] = {
Brian Kingddbb4de2007-08-17 09:16:43 -050085 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
86 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +000087 { "replenish_add_buff_failure",
88 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
89 { "replenish_add_buff_success",
90 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -050091 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
92 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -050093 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
94 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +000095 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
96 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Thomas Falcon8641dd82015-04-29 16:25:45 -050097 { "tx_large_packets", IBMVETH_STAT_OFF(tx_large_packets) },
Thomas Falcon07e6a972015-07-14 10:51:51 -050098 { "rx_large_packets", IBMVETH_STAT_OFF(rx_large_packets) },
99 { "fw_enabled_large_send", IBMVETH_STAT_OFF(fw_large_send_support) }
Brian Kingddbb4de2007-08-17 09:16:43 -0500100};
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500103static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
104{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000105 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off);
Brian King79ef4a42007-08-17 09:16:56 -0500106}
107
108static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
109{
Santiago Leonf148f612010-09-03 18:29:30 +0000110 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
111 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
115{
Santiago Leonf148f612010-09-03 18:29:30 +0000116 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
120{
Santiago Leonf148f612010-09-03 18:29:30 +0000121 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
125{
Santiago Leonf148f612010-09-03 18:29:30 +0000126 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Thomas Falcon7b596732016-12-08 16:40:03 -0600129static inline int ibmveth_rxq_large_packet(struct ibmveth_adapter *adapter)
130{
131 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_LRG_PKT;
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
135{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000136 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Brian Kingf4ff2872007-09-15 13:36:07 -0700139static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
140{
Santiago Leonf148f612010-09-03 18:29:30 +0000141 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000145static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
146 u32 pool_index, u32 pool_size,
147 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 pool->size = pool_size;
150 pool->index = pool_index;
151 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000152 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500153 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156/* allocate and setup an buffer pool - called during open */
157static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
158{
159 int i;
160
Kees Cook6da2ec52018-06-12 13:55:00 -0700161 pool->free_map = kmalloc_array(pool->size, sizeof(u16), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Santiago Leonf148f612010-09-03 18:29:30 +0000163 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Nicholas Mc Guire076ef442015-12-20 15:06:18 +0100166 pool->dma_addr = kcalloc(pool->size, sizeof(dma_addr_t), GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000167 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 kfree(pool->free_map);
169 pool->free_map = NULL;
170 return -1;
171 }
172
Julia Lawalla05abcb2010-05-13 10:06:01 +0000173 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Santiago Leonf148f612010-09-03 18:29:30 +0000175 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 kfree(pool->dma_addr);
177 pool->dma_addr = NULL;
178
179 kfree(pool->free_map);
180 pool->free_map = NULL;
181 return -1;
182 }
183
Santiago Leonf148f612010-09-03 18:29:30 +0000184 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 atomic_set(&pool->available, 0);
188 pool->producer_index = 0;
189 pool->consumer_index = 0;
190
191 return 0;
192}
193
Santiago Leon0c26b672010-09-03 18:28:41 +0000194static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
195{
196 unsigned long offset;
197
198 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
199 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* replenish the buffers for a pool. note that we don't need to
203 * skb_reserve these since they are used for incoming...
204 */
Santiago Leonf148f612010-09-03 18:29:30 +0000205static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
206 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 u32 i;
209 u32 count = pool->size - atomic_read(&pool->available);
210 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000211 struct sk_buff *skb;
212 unsigned int free_index, index;
213 u64 correlator;
214 unsigned long lpar_rc;
215 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 mb();
218
Santiago Leonf148f612010-09-03 18:29:30 +0000219 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Santiago Leon003212c2010-09-03 18:29:03 +0000222 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Santiago Leonf148f612010-09-03 18:29:30 +0000224 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000225 netdev_dbg(adapter->netdev,
226 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 adapter->replenish_no_mem++;
228 break;
229 }
230
David Gibson047a66d2006-10-21 10:24:13 -0700231 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000232 pool->consumer_index++;
233 if (pool->consumer_index >= pool->size)
234 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400236
Santiago Leon64859112010-09-03 18:29:41 +0000237 BUG_ON(index == IBM_VETH_INVALID_MAP);
238 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
241 pool->buff_size, DMA_FROM_DEVICE);
242
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000243 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000244 goto failure;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
247 pool->dma_addr[index] = dma_addr;
248 pool->skbuff[index] = skb;
249
250 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000251 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Brian King79ef4a42007-08-17 09:16:56 -0500253 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400254 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Santiago Leon0c26b672010-09-03 18:28:41 +0000256 if (rx_flush) {
257 unsigned int len = min(pool->buff_size,
258 adapter->netdev->mtu +
259 IBMVETH_BUFF_OH);
260 ibmveth_flush_buffer(skb->data, len);
261 }
Santiago Leonf148f612010-09-03 18:29:30 +0000262 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
263 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400264
Santiago Leonf148f612010-09-03 18:29:30 +0000265 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000266 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000267 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 buffers_added++;
269 adapter->replenish_add_buff_success++;
270 }
271 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 mb();
274 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000275 return;
276
277failure:
278 pool->free_map[free_index] = index;
279 pool->skbuff[index] = NULL;
280 if (pool->consumer_index == 0)
281 pool->consumer_index = pool->size - 1;
282 else
283 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000284 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000285 dma_unmap_single(&adapter->vdev->dev,
286 pool->dma_addr[index], pool->buff_size,
287 DMA_FROM_DEVICE);
288 dev_kfree_skb_any(skb);
289 adapter->replenish_add_buff_failure++;
290
291 mb();
292 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Anton Blanchardcbd52282014-08-22 11:36:52 +1000295/*
296 * The final 8 bytes of the buffer list is a counter of frames dropped
297 * because there was not a buffer in the buffer list capable of holding
298 * the frame.
299 */
300static void ibmveth_update_rx_no_buffer(struct ibmveth_adapter *adapter)
301{
302 __be64 *p = adapter->buffer_list_addr + 4096 - 8;
303
304 adapter->rx_no_buffer = be64_to_cpup(p);
305}
306
Santiago Leone2adbcb2005-10-26 10:47:08 -0600307/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400308static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Santiago Leonb6d35182005-10-26 10:47:01 -0600310 int i;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 adapter->replenish_task_cycles++;
313
Santiago Leon517e80e2010-09-03 18:29:25 +0000314 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000315 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
316
317 if (pool->active &&
318 (atomic_read(&pool->available) < pool->threshold))
319 ibmveth_replenish_buffer_pool(adapter, pool);
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Anton Blanchardcbd52282014-08-22 11:36:52 +1000322 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000326static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
327 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 int i;
330
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400331 kfree(pool->free_map);
332 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Santiago Leonf148f612010-09-03 18:29:30 +0000334 if (pool->skbuff && pool->dma_addr) {
335 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000337 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 dma_unmap_single(&adapter->vdev->dev,
339 pool->dma_addr[i],
340 pool->buff_size,
341 DMA_FROM_DEVICE);
342 dev_kfree_skb_any(skb);
343 pool->skbuff[i] = NULL;
344 }
345 }
346 }
347
Santiago Leonf148f612010-09-03 18:29:30 +0000348 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 kfree(pool->dma_addr);
350 pool->dma_addr = NULL;
351 }
352
Santiago Leonf148f612010-09-03 18:29:30 +0000353 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 kfree(pool->skbuff);
355 pool->skbuff = NULL;
356 }
357}
358
359/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000360static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
361 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 unsigned int pool = correlator >> 32;
364 unsigned int index = correlator & 0xffffffffUL;
365 unsigned int free_index;
366 struct sk_buff *skb;
367
Santiago Leon64859112010-09-03 18:29:41 +0000368 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
369 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 skb = adapter->rx_buff_pool[pool].skbuff[index];
372
Santiago Leon64859112010-09-03 18:29:41 +0000373 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
376
377 dma_unmap_single(&adapter->vdev->dev,
378 adapter->rx_buff_pool[pool].dma_addr[index],
379 adapter->rx_buff_pool[pool].buff_size,
380 DMA_FROM_DEVICE);
381
David Gibson047a66d2006-10-21 10:24:13 -0700382 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000383 adapter->rx_buff_pool[pool].producer_index++;
384 if (adapter->rx_buff_pool[pool].producer_index >=
385 adapter->rx_buff_pool[pool].size)
386 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 adapter->rx_buff_pool[pool].free_map[free_index] = index;
388
389 mb();
390
391 atomic_dec(&(adapter->rx_buff_pool[pool].available));
392}
393
394/* get the current buffer on the rx queue */
395static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
396{
397 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
398 unsigned int pool = correlator >> 32;
399 unsigned int index = correlator & 0xffffffffUL;
400
Santiago Leon64859112010-09-03 18:29:41 +0000401 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
402 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 return adapter->rx_buff_pool[pool].skbuff[index];
405}
406
407/* recycle the current buffer on the rx queue */
David S. Miller8decf862011-09-22 03:23:13 -0400408static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 u32 q_index = adapter->rx_queue.index;
411 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
412 unsigned int pool = correlator >> 32;
413 unsigned int index = correlator & 0xffffffffUL;
414 union ibmveth_buf_desc desc;
415 unsigned long lpar_rc;
David S. Miller8decf862011-09-22 03:23:13 -0400416 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Santiago Leon64859112010-09-03 18:29:41 +0000418 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
419 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Santiago Leonf148f612010-09-03 18:29:30 +0000421 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600422 ibmveth_rxq_harvest_buffer(adapter);
423 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
David S. Miller8decf862011-09-22 03:23:13 -0400424 goto out;
Santiago Leonb6d35182005-10-26 10:47:01 -0600425 }
426
Brian King79ef4a42007-08-17 09:16:56 -0500427 desc.fields.flags_len = IBMVETH_BUF_VALID |
428 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
430
431 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400432
Santiago Leonf148f612010-09-03 18:29:30 +0000433 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000434 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
435 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
David S. Miller8decf862011-09-22 03:23:13 -0400437 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
Santiago Leonf148f612010-09-03 18:29:30 +0000440 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 adapter->rx_queue.index = 0;
442 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
443 }
David S. Miller8decf862011-09-22 03:23:13 -0400444
445out:
446 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Michael Ellerman493a6842007-04-17 13:12:55 +1000449static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
452
Santiago Leonf148f612010-09-03 18:29:30 +0000453 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 adapter->rx_queue.index = 0;
455 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
456 }
457}
458
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500459static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
460 union ibmveth_buf_desc rxq_desc, u64 mac_address)
461{
462 int rc, try_again = 1;
463
Santiago Leonf148f612010-09-03 18:29:30 +0000464 /*
465 * After a kexec the adapter will still be open, so our attempt to
466 * open it will fail. So if we get a failure we free the adapter and
467 * try again, but only once.
468 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500469retry:
470 rc = h_register_logical_lan(adapter->vdev->unit_address,
471 adapter->buffer_list_dma, rxq_desc.desc,
472 adapter->filter_list_dma, mac_address);
473
474 if (rc != H_SUCCESS && try_again) {
475 do {
476 rc = h_free_logical_lan(adapter->vdev->unit_address);
477 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
478
479 try_again = 0;
480 goto retry;
481 }
482
483 return rc;
484}
485
Anton Blanchardd746ca92014-03-05 14:51:37 +1100486static u64 ibmveth_encode_mac_addr(u8 *mac)
487{
488 int i;
489 u64 encoded = 0;
490
491 for (i = 0; i < ETH_ALEN; i++)
492 encoded = (encoded << 8) | mac[i];
493
494 return encoded;
495}
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int ibmveth_open(struct net_device *netdev)
498{
Wang Chen4cf16532008-11-12 23:38:14 -0800499 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Anton Blanchardd746ca92014-03-05 14:51:37 +1100500 u64 mac_address;
Santiago Leonb6d35182005-10-26 10:47:01 -0600501 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 unsigned long lpar_rc;
503 int rc;
504 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600505 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700506 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Santiago Leonc43ced12010-09-03 18:29:14 +0000508 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700510 napi_enable(&adapter->napi);
511
Santiago Leon517e80e2010-09-03 18:29:25 +0000512 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600513 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400514
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200515 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200517 if (!adapter->buffer_list_addr) {
518 netdev_err(netdev, "unable to allocate list pages\n");
519 goto out;
520 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400521
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200522 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
523 if (!adapter->filter_list_addr) {
524 netdev_err(netdev, "unable to allocate filter pages\n");
525 goto out_free_buffer_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527
Santiago Leond90c92f2012-09-04 14:41:37 +0000528 dev = &adapter->vdev->dev;
529
Santiago Leonf148f612010-09-03 18:29:30 +0000530 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
531 rxq_entries;
Santiago Leond90c92f2012-09-04 14:41:37 +0000532 adapter->rx_queue.queue_addr =
Joe Perchesd0320f72013-03-14 13:07:21 +0000533 dma_alloc_coherent(dev, adapter->rx_queue.queue_len,
534 &adapter->rx_queue.queue_dma, GFP_KERNEL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200535 if (!adapter->rx_queue.queue_addr)
536 goto out_free_filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700538 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200540 if (dma_mapping_error(dev, adapter->buffer_list_dma)) {
541 netdev_err(netdev, "unable to map buffer list pages\n");
542 goto out_free_queue_mem;
543 }
544
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700545 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200547 if (dma_mapping_error(dev, adapter->filter_list_dma)) {
548 netdev_err(netdev, "unable to map filter list pages\n");
549 goto out_unmap_buffer_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
552 adapter->rx_queue.index = 0;
553 adapter->rx_queue.num_slots = rxq_entries;
554 adapter->rx_queue.toggle = 1;
555
Anton Blanchardd746ca92014-03-05 14:51:37 +1100556 mac_address = ibmveth_encode_mac_addr(netdev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Santiago Leonf148f612010-09-03 18:29:30 +0000558 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
559 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
561
Santiago Leonc43ced12010-09-03 18:29:14 +0000562 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
563 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
564 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Santiago Leon4347ef12006-10-03 12:24:34 -0500566 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
567
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500568 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Santiago Leonf148f612010-09-03 18:29:30 +0000570 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000571 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
572 lpar_rc);
573 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
574 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 adapter->buffer_list_dma,
576 adapter->filter_list_dma,
577 rxq_desc.desc,
578 mac_address);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000579 rc = -ENONET;
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200580 goto out_unmap_filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
582
Santiago Leonf148f612010-09-03 18:29:30 +0000583 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
584 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500585 continue;
586 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000587 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500588 adapter->rx_buff_pool[i].active = 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000589 rc = -ENOMEM;
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200590 goto out_free_buffer_pools;
Santiago Leon860f2422006-04-25 11:19:59 -0500591 }
592 }
593
Santiago Leonc43ced12010-09-03 18:29:14 +0000594 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000595 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
596 netdev);
597 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000598 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
599 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 do {
David S. Miller88c51002011-10-07 13:38:43 -0400601 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
602 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200604 goto out_free_buffer_pools;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200607 rc = -ENOMEM;
Robert Jennings1096d632008-07-24 04:34:52 +1000608 adapter->bounce_buffer =
609 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200610 if (!adapter->bounce_buffer)
611 goto out_free_irq;
612
Robert Jennings1096d632008-07-24 04:34:52 +1000613 adapter->bounce_buffer_dma =
614 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
615 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700616 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000617 netdev_err(netdev, "unable to map bounce buffer\n");
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200618 goto out_free_bounce_buffer;
Robert Jennings1096d632008-07-24 04:34:52 +1000619 }
620
Santiago Leonc43ced12010-09-03 18:29:14 +0000621 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100622 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Santiago Leone2adbcb2005-10-26 10:47:08 -0600624 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Santiago Leonc43ced12010-09-03 18:29:14 +0000626 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 return 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000629
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200630out_free_bounce_buffer:
631 kfree(adapter->bounce_buffer);
632out_free_irq:
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000633 free_irq(netdev->irq, netdev);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200634out_free_buffer_pools:
635 while (--i >= 0) {
636 if (adapter->rx_buff_pool[i].active)
637 ibmveth_free_buffer_pool(adapter,
638 &adapter->rx_buff_pool[i]);
639 }
640out_unmap_filter_list:
641 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
642 DMA_BIDIRECTIONAL);
643out_unmap_buffer_list:
644 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
645 DMA_BIDIRECTIONAL);
646out_free_queue_mem:
647 dma_free_coherent(dev, adapter->rx_queue.queue_len,
648 adapter->rx_queue.queue_addr,
649 adapter->rx_queue.queue_dma);
650out_free_filter_list:
651 free_page((unsigned long)adapter->filter_list_addr);
652out_free_buffer_list:
653 free_page((unsigned long)adapter->buffer_list_addr);
654out:
Denis Kirjanov88426f22010-10-20 04:21:13 +0000655 napi_disable(&adapter->napi);
656 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659static int ibmveth_close(struct net_device *netdev)
660{
Wang Chen4cf16532008-11-12 23:38:14 -0800661 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200662 struct device *dev = &adapter->vdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 long lpar_rc;
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200664 int i;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400665
Santiago Leonc43ced12010-09-03 18:29:14 +0000666 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700668 napi_disable(&adapter->napi);
669
Santiago Leon860f2422006-04-25 11:19:59 -0500670 if (!adapter->pool_config)
671 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Robert Jenningsee2e6112010-07-16 04:57:25 +0000673 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 do {
676 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200677 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Santiago Leonf148f612010-09-03 18:29:30 +0000679 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000680 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
681 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
Robert Jenningsee2e6112010-07-16 04:57:25 +0000684 free_irq(netdev->irq, netdev);
685
Anton Blanchardcbd52282014-08-22 11:36:52 +1000686 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200688 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
689 DMA_BIDIRECTIONAL);
690 free_page((unsigned long)adapter->buffer_list_addr);
691
692 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
693 DMA_BIDIRECTIONAL);
694 free_page((unsigned long)adapter->filter_list_addr);
695
696 dma_free_coherent(dev, adapter->rx_queue.queue_len,
697 adapter->rx_queue.queue_addr,
698 adapter->rx_queue.queue_dma);
699
700 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
701 if (adapter->rx_buff_pool[i].active)
702 ibmveth_free_buffer_pool(adapter,
703 &adapter->rx_buff_pool[i]);
704
705 dma_unmap_single(&adapter->vdev->dev, adapter->bounce_buffer_dma,
706 adapter->netdev->mtu + IBMVETH_BUFF_OH,
707 DMA_BIDIRECTIONAL);
708 kfree(adapter->bounce_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Santiago Leonc43ced12010-09-03 18:29:14 +0000710 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 return 0;
713}
714
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100715static int netdev_get_link_ksettings(struct net_device *dev,
716 struct ethtool_link_ksettings *cmd)
Santiago Leonf148f612010-09-03 18:29:30 +0000717{
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100718 u32 supported, advertising;
719
720 supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000721 SUPPORTED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100722 advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000723 ADVERTISED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100724 cmd->base.speed = SPEED_1000;
725 cmd->base.duplex = DUPLEX_FULL;
726 cmd->base.port = PORT_FIBRE;
727 cmd->base.phy_address = 0;
728 cmd->base.autoneg = AUTONEG_ENABLE;
729
730 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
731 supported);
732 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
733 advertising);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return 0;
736}
737
Santiago Leonf148f612010-09-03 18:29:30 +0000738static void netdev_get_drvinfo(struct net_device *dev,
739 struct ethtool_drvinfo *info)
740{
Jiri Pirko7826d432013-01-06 00:44:26 +0000741 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
742 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000745static netdev_features_t ibmveth_fix_features(struct net_device *dev,
746 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500747{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000748 /*
749 * Since the ibmveth firmware interface does not have the
750 * concept of separate tx/rx checksum offload enable, if rx
751 * checksum is disabled we also have to disable tx checksum
752 * offload. Once we disable rx checksum offload, we are no
753 * longer allowed to send tx buffers that are not properly
754 * checksummed.
755 */
Brian King5fc7e012007-08-17 09:16:31 -0500756
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000757 if (!(features & NETIF_F_RXCSUM))
Tom Herberta1882222015-12-14 11:19:43 -0800758 features &= ~NETIF_F_CSUM_MASK;
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000759
760 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500761}
762
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000763static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500764{
Wang Chen4cf16532008-11-12 23:38:14 -0800765 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800766 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000767 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400768 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500769 int rc1 = 0, rc2 = 0;
770 int restart = 0;
771
772 if (netif_running(dev)) {
773 restart = 1;
774 adapter->pool_config = 1;
775 ibmveth_close(dev);
776 adapter->pool_config = 0;
777 }
778
Brian King79ef4a42007-08-17 09:16:56 -0500779 set_attr = 0;
780 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400781 set_attr6 = 0;
782 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500783
Santiago Leonab78df72010-09-03 18:28:52 +0000784 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500785 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000786 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
787 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500788 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000789 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
790 }
Brian King5fc7e012007-08-17 09:16:31 -0500791
Brian King79ef4a42007-08-17 09:16:56 -0500792 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500793
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -0400794 if (ret == H_SUCCESS &&
Brian King79ef4a42007-08-17 09:16:56 -0500795 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400796 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500797 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500798
David S. Miller8decf862011-09-22 03:23:13 -0400799 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000800 netdev_err(dev, "unable to change IPv4 checksum "
801 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400802 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500803
David S. Miller8decf862011-09-22 03:23:13 -0400804 h_illan_attributes(adapter->vdev->unit_address,
805 set_attr, clr_attr, &ret_attr);
806
807 if (data == 1)
808 dev->features &= ~NETIF_F_IP_CSUM;
809
Santiago Leonf148f612010-09-03 18:29:30 +0000810 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000811 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000812 }
Santiago Leonab78df72010-09-03 18:28:52 +0000813
814 ret6 = h_illan_attributes(adapter->vdev->unit_address,
815 clr_attr6, set_attr6, &ret_attr);
816
817 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000818 netdev_err(dev, "unable to change IPv6 checksum "
819 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400820 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000821
David S. Miller8decf862011-09-22 03:23:13 -0400822 h_illan_attributes(adapter->vdev->unit_address,
823 set_attr6, clr_attr6, &ret_attr);
824
825 if (data == 1)
826 dev->features &= ~NETIF_F_IPV6_CSUM;
827
Santiago Leonab78df72010-09-03 18:28:52 +0000828 } else
829 adapter->fw_ipv6_csum_support = data;
830
David S. Miller8decf862011-09-22 03:23:13 -0400831 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000832 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000833 else
834 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500835 } else {
836 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000837 netdev_err(dev, "unable to change checksum offload settings."
838 " %d rc=%ld ret_attr=%lx\n", data, ret,
839 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500840 }
841
842 if (restart)
843 rc2 = ibmveth_open(dev);
844
845 return rc1 ? rc1 : rc2;
846}
847
Thomas Falcon07e6a972015-07-14 10:51:51 -0500848static int ibmveth_set_tso(struct net_device *dev, u32 data)
849{
850 struct ibmveth_adapter *adapter = netdev_priv(dev);
851 unsigned long set_attr, clr_attr, ret_attr;
852 long ret1, ret2;
853 int rc1 = 0, rc2 = 0;
854 int restart = 0;
855
856 if (netif_running(dev)) {
857 restart = 1;
858 adapter->pool_config = 1;
859 ibmveth_close(dev);
860 adapter->pool_config = 0;
861 }
862
863 set_attr = 0;
864 clr_attr = 0;
865
866 if (data)
867 set_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
868 else
869 clr_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
870
871 ret1 = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
872
873 if (ret1 == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
874 !old_large_send) {
875 ret2 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
876 set_attr, &ret_attr);
877
878 if (ret2 != H_SUCCESS) {
879 netdev_err(dev, "unable to change tso settings. %d rc=%ld\n",
880 data, ret2);
881
882 h_illan_attributes(adapter->vdev->unit_address,
883 set_attr, clr_attr, &ret_attr);
884
885 if (data == 1)
886 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
887 rc1 = -EIO;
888
889 } else {
890 adapter->fw_large_send_support = data;
891 adapter->large_send = data;
892 }
893 } else {
894 /* Older firmware version of large send offload does not
895 * support tcp6/ipv6
896 */
897 if (data == 1) {
898 dev->features &= ~NETIF_F_TSO6;
899 netdev_info(dev, "TSO feature requires all partitions to have updated driver");
900 }
901 adapter->large_send = data;
902 }
903
904 if (restart)
905 rc2 = ibmveth_open(dev);
906
907 return rc1 ? rc1 : rc2;
908}
909
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000910static int ibmveth_set_features(struct net_device *dev,
911 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500912{
Wang Chen4cf16532008-11-12 23:38:14 -0800913 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000914 int rx_csum = !!(features & NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500915 int large_send = !!(features & (NETIF_F_TSO | NETIF_F_TSO6));
916 int rc1 = 0, rc2 = 0;
Thomas Falcon8641dd82015-04-29 16:25:45 -0500917
Thomas Falcon07e6a972015-07-14 10:51:51 -0500918 if (rx_csum != adapter->rx_csum) {
919 rc1 = ibmveth_set_csum_offload(dev, rx_csum);
920 if (rc1 && !adapter->rx_csum)
921 dev->features =
Tom Herberta1882222015-12-14 11:19:43 -0800922 features & ~(NETIF_F_CSUM_MASK |
923 NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500924 }
Brian King5fc7e012007-08-17 09:16:31 -0500925
Thomas Falcon07e6a972015-07-14 10:51:51 -0500926 if (large_send != adapter->large_send) {
927 rc2 = ibmveth_set_tso(dev, large_send);
928 if (rc2 && !adapter->large_send)
929 dev->features =
930 features & ~(NETIF_F_TSO | NETIF_F_TSO6);
931 }
Brian King5fc7e012007-08-17 09:16:31 -0500932
Thomas Falcon07e6a972015-07-14 10:51:51 -0500933 return rc1 ? rc1 : rc2;
Brian King5fc7e012007-08-17 09:16:31 -0500934}
935
Brian Kingddbb4de2007-08-17 09:16:43 -0500936static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
937{
938 int i;
939
940 if (stringset != ETH_SS_STATS)
941 return;
942
943 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
944 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
945}
946
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700947static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500948{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700949 switch (sset) {
950 case ETH_SS_STATS:
951 return ARRAY_SIZE(ibmveth_stats);
952 default:
953 return -EOPNOTSUPP;
954 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500955}
956
957static void ibmveth_get_ethtool_stats(struct net_device *dev,
958 struct ethtool_stats *stats, u64 *data)
959{
960 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800961 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500962
963 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
964 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
965}
966
Jeff Garzik7282d492006-09-13 14:30:00 -0400967static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 .get_drvinfo = netdev_get_drvinfo,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000969 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500970 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700971 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500972 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100973 .get_link_ksettings = netdev_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974};
975
976static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
977{
978 return -EOPNOTSUPP;
979}
980
981#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
982
Santiago Leon6e8ab302010-09-03 18:28:36 +0000983static int ibmveth_send(struct ibmveth_adapter *adapter,
Thomas Falcon07e6a972015-07-14 10:51:51 -0500984 union ibmveth_buf_desc *descs, unsigned long mss)
Santiago Leon6e8ab302010-09-03 18:28:36 +0000985{
986 unsigned long correlator;
987 unsigned int retry_count;
988 unsigned long ret;
989
990 /*
991 * The retry count sets a maximum for the number of broadcast and
992 * multicast destinations within the system.
993 */
994 retry_count = 1024;
995 correlator = 0;
996 do {
997 ret = h_send_logical_lan(adapter->vdev->unit_address,
998 descs[0].desc, descs[1].desc,
999 descs[2].desc, descs[3].desc,
1000 descs[4].desc, descs[5].desc,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001001 correlator, &correlator, mss,
1002 adapter->fw_large_send_support);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001003 } while ((ret == H_BUSY) && (retry_count--));
1004
1005 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001006 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
1007 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001008 return 1;
1009 }
1010
1011 return 0;
1012}
1013
Stephen Hemminger613573252009-08-31 19:50:58 +00001014static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
1015 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Wang Chen4cf16532008-11-12 23:38:14 -08001017 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001018 unsigned int desc_flags;
1019 union ibmveth_buf_desc descs[6];
1020 int last, i;
1021 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -04001022 dma_addr_t dma_addr;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001023 unsigned long mss = 0;
Santiago Leon60296d92005-10-26 10:47:16 -06001024
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001025 /* veth doesn't handle frag_list, so linearize the skb.
1026 * When GRO is enabled SKB's can have frag_list.
1027 */
1028 if (adapter->is_active_trunk &&
1029 skb_has_frag_list(skb) && __skb_linearize(skb)) {
1030 netdev->stats.tx_dropped++;
1031 goto out;
1032 }
1033
Santiago Leon6e8ab302010-09-03 18:28:36 +00001034 /*
1035 * veth handles a maximum of 6 segments including the header, so
1036 * we have to linearize the skb if there are more than this.
1037 */
1038 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
1039 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -07001040 goto out;
1041 }
1042
Santiago Leon6e8ab302010-09-03 18:28:36 +00001043 /* veth can't checksum offload UDP */
1044 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +00001045 ((skb->protocol == htons(ETH_P_IP) &&
1046 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
1047 (skb->protocol == htons(ETH_P_IPV6) &&
1048 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
1049 skb_checksum_help(skb)) {
1050
Santiago Leon21c2dec2010-09-03 18:29:19 +00001051 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001052 netdev->stats.tx_dropped++;
1053 goto out;
1054 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001055
Santiago Leon6e8ab302010-09-03 18:28:36 +00001056 desc_flags = IBMVETH_BUF_VALID;
1057
1058 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1059 unsigned char *buf = skb_transport_header(skb) +
1060 skb->csum_offset;
1061
1062 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001063
1064 /* Need to zero out the checksum */
1065 buf[0] = 0;
1066 buf[1] = 0;
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001067
1068 if (skb_is_gso(skb) && adapter->fw_large_send_support)
1069 desc_flags |= IBMVETH_BUF_LRG_SND;
Brian Kingf4ff2872007-09-15 13:36:07 -07001070 }
1071
Santiago Leon6e8ab302010-09-03 18:28:36 +00001072retry_bounce:
1073 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001074
Santiago Leon6e8ab302010-09-03 18:28:36 +00001075 /*
1076 * If a linear packet is below the rx threshold then
1077 * copy it into the static bounce buffer. This avoids the
1078 * cost of a TCE insert and remove.
1079 */
1080 if (force_bounce || (!skb_is_nonlinear(skb) &&
1081 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001082 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1083 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Santiago Leon6e8ab302010-09-03 18:28:36 +00001085 descs[0].fields.flags_len = desc_flags | skb->len;
1086 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001087
Thomas Falcon07e6a972015-07-14 10:51:51 -05001088 if (ibmveth_send(adapter, descs, 0)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001089 adapter->tx_send_failed++;
1090 netdev->stats.tx_dropped++;
1091 } else {
1092 netdev->stats.tx_packets++;
1093 netdev->stats.tx_bytes += skb->len;
1094 }
1095
1096 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
Santiago Leon6e8ab302010-09-03 18:28:36 +00001099 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001100 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1101 skb_headlen(skb), DMA_TO_DEVICE);
1102 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001103 goto map_failed;
1104
1105 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001106 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001107
1108 /* Map the frags */
1109 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001110 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001111
Ian Campbell8838a532011-08-31 00:46:53 +00001112 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001113 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001114
1115 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1116 goto map_failed_frags;
1117
Eric Dumazet9e903e02011-10-18 21:00:24 +00001118 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001119 descs[i+1].fields.address = dma_addr;
1120 }
1121
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001122 if (skb->ip_summed == CHECKSUM_PARTIAL && skb_is_gso(skb)) {
Thomas Falcon07e6a972015-07-14 10:51:51 -05001123 if (adapter->fw_large_send_support) {
1124 mss = (unsigned long)skb_shinfo(skb)->gso_size;
1125 adapter->tx_large_packets++;
1126 } else if (!skb_is_gso_v6(skb)) {
1127 /* Put -1 in the IP checksum to tell phyp it
1128 * is a largesend packet. Put the mss in
1129 * the TCP checksum.
1130 */
1131 ip_hdr(skb)->check = 0xffff;
1132 tcp_hdr(skb)->check =
1133 cpu_to_be16(skb_shinfo(skb)->gso_size);
1134 adapter->tx_large_packets++;
1135 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001136 }
1137
Thomas Falcon07e6a972015-07-14 10:51:51 -05001138 if (ibmveth_send(adapter, descs, mss)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001139 adapter->tx_send_failed++;
1140 netdev->stats.tx_dropped++;
1141 } else {
1142 netdev->stats.tx_packets++;
1143 netdev->stats.tx_bytes += skb->len;
1144 }
1145
David S. Miller8decf862011-09-22 03:23:13 -04001146 dma_unmap_single(&adapter->vdev->dev,
1147 descs[0].fields.address,
1148 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1149 DMA_TO_DEVICE);
1150
1151 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001152 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1153 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1154 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001156out:
Eric W. Biederman26faa9d2014-03-15 17:29:34 -07001157 dev_consume_skb_any(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001158 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001159
1160map_failed_frags:
1161 last = i+1;
Tyrel Datwyler756af9c2018-12-31 15:43:01 -06001162 for (i = 1; i < last; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001163 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1164 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1165 DMA_TO_DEVICE);
1166
Tyrel Datwyler756af9c2018-12-31 15:43:01 -06001167 dma_unmap_single(&adapter->vdev->dev,
1168 descs[0].fields.address,
1169 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1170 DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001171map_failed:
1172 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001173 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001174 adapter->tx_map_failed++;
Thomas Falcon2c42bf42016-03-03 15:22:36 -06001175 if (skb_linearize(skb)) {
1176 netdev->stats.tx_dropped++;
1177 goto out;
1178 }
Santiago Leon6e8ab302010-09-03 18:28:36 +00001179 force_bounce = 1;
1180 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Thomas Falcon7b596732016-12-08 16:40:03 -06001183static void ibmveth_rx_mss_helper(struct sk_buff *skb, u16 mss, int lrg_pkt)
1184{
Thomas Falcon94acf162016-12-13 18:15:09 -06001185 struct tcphdr *tcph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001186 int offset = 0;
Thomas Falcon94acf162016-12-13 18:15:09 -06001187 int hdr_len;
Thomas Falcon7b596732016-12-08 16:40:03 -06001188
1189 /* only TCP packets will be aggregated */
1190 if (skb->protocol == htons(ETH_P_IP)) {
1191 struct iphdr *iph = (struct iphdr *)skb->data;
1192
1193 if (iph->protocol == IPPROTO_TCP) {
1194 offset = iph->ihl * 4;
1195 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1196 } else {
1197 return;
1198 }
1199 } else if (skb->protocol == htons(ETH_P_IPV6)) {
1200 struct ipv6hdr *iph6 = (struct ipv6hdr *)skb->data;
1201
1202 if (iph6->nexthdr == IPPROTO_TCP) {
1203 offset = sizeof(struct ipv6hdr);
1204 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1205 } else {
1206 return;
1207 }
1208 } else {
1209 return;
1210 }
1211 /* if mss is not set through Large Packet bit/mss in rx buffer,
1212 * expect that the mss will be written to the tcp header checksum.
1213 */
Thomas Falcon94acf162016-12-13 18:15:09 -06001214 tcph = (struct tcphdr *)(skb->data + offset);
Thomas Falcon7b596732016-12-08 16:40:03 -06001215 if (lrg_pkt) {
1216 skb_shinfo(skb)->gso_size = mss;
1217 } else if (offset) {
Thomas Falcon7b596732016-12-08 16:40:03 -06001218 skb_shinfo(skb)->gso_size = ntohs(tcph->check);
1219 tcph->check = 0;
1220 }
Thomas Falcon94acf162016-12-13 18:15:09 -06001221
1222 if (skb_shinfo(skb)->gso_size) {
1223 hdr_len = offset + tcph->doff * 4;
1224 skb_shinfo(skb)->gso_segs =
1225 DIV_ROUND_UP(skb->len - hdr_len,
1226 skb_shinfo(skb)->gso_size);
1227 }
Thomas Falcon7b596732016-12-08 16:40:03 -06001228}
1229
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001230static void ibmveth_rx_csum_helper(struct sk_buff *skb,
1231 struct ibmveth_adapter *adapter)
1232{
1233 struct iphdr *iph = NULL;
1234 struct ipv6hdr *iph6 = NULL;
1235 __be16 skb_proto = 0;
1236 u16 iphlen = 0;
1237 u16 iph_proto = 0;
1238 u16 tcphdrlen = 0;
1239
1240 skb_proto = be16_to_cpu(skb->protocol);
1241
1242 if (skb_proto == ETH_P_IP) {
1243 iph = (struct iphdr *)skb->data;
1244
1245 /* If the IP checksum is not offloaded and if the packet
1246 * is large send, the checksum must be rebuilt.
1247 */
1248 if (iph->check == 0xffff) {
1249 iph->check = 0;
1250 iph->check = ip_fast_csum((unsigned char *)iph,
1251 iph->ihl);
1252 }
1253
1254 iphlen = iph->ihl * 4;
1255 iph_proto = iph->protocol;
1256 } else if (skb_proto == ETH_P_IPV6) {
1257 iph6 = (struct ipv6hdr *)skb->data;
1258 iphlen = sizeof(struct ipv6hdr);
1259 iph_proto = iph6->nexthdr;
1260 }
1261
1262 /* In OVS environment, when a flow is not cached, specifically for a
1263 * new TCP connection, the first packet information is passed up
1264 * the user space for finding a flow. During this process, OVS computes
1265 * checksum on the first packet when CHECKSUM_PARTIAL flag is set.
1266 *
1267 * Given that we zeroed out TCP checksum field in transmit path
1268 * (refer ibmveth_start_xmit routine) as we set "no checksum bit",
1269 * OVS computed checksum will be incorrect w/o TCP pseudo checksum
1270 * in the packet. This leads to OVS dropping the packet and hence
1271 * TCP retransmissions are seen.
1272 *
1273 * So, re-compute TCP pseudo header checksum.
1274 */
1275 if (iph_proto == IPPROTO_TCP && adapter->is_active_trunk) {
1276 struct tcphdr *tcph = (struct tcphdr *)(skb->data + iphlen);
1277
1278 tcphdrlen = skb->len - iphlen;
1279
1280 /* Recompute TCP pseudo header checksum */
1281 if (skb_proto == ETH_P_IP)
1282 tcph->check = ~csum_tcpudp_magic(iph->saddr,
1283 iph->daddr, tcphdrlen, iph_proto, 0);
1284 else if (skb_proto == ETH_P_IPV6)
1285 tcph->check = ~csum_ipv6_magic(&iph6->saddr,
1286 &iph6->daddr, tcphdrlen, iph_proto, 0);
1287
1288 /* Setup SKB fields for checksum offload */
1289 skb_partial_csum_set(skb, iphlen,
1290 offsetof(struct tcphdr, check));
1291 skb_reset_network_header(skb);
1292 }
1293}
1294
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001295static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Santiago Leonf148f612010-09-03 18:29:30 +00001297 struct ibmveth_adapter *adapter =
1298 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001299 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 unsigned long lpar_rc;
Thomas Falcon7b596732016-12-08 16:40:03 -06001302 u16 mss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001304 while (frames_processed < budget) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001305 if (!ibmveth_rxq_pending_buffer(adapter))
1306 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001308 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001309 if (!ibmveth_rxq_buffer_valid(adapter)) {
1310 wmb(); /* suggested by larson1 */
1311 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001312 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001313 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001315 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001316 int length = ibmveth_rxq_frame_length(adapter);
1317 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001318 int csum_good = ibmveth_rxq_csum_good(adapter);
Thomas Falcon7b596732016-12-08 16:40:03 -06001319 int lrg_pkt = ibmveth_rxq_large_packet(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001320
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001321 skb = ibmveth_rxq_get_buffer(adapter);
1322
Thomas Falcon7b596732016-12-08 16:40:03 -06001323 /* if the large packet bit is set in the rx queue
1324 * descriptor, the mss will be written by PHYP eight
1325 * bytes from the start of the rx buffer, which is
1326 * skb->data at this stage
1327 */
1328 if (lrg_pkt) {
1329 __be64 *rxmss = (__be64 *)(skb->data + 8);
1330
1331 mss = (u16)be64_to_cpu(*rxmss);
1332 }
1333
Santiago Leon8d86c612010-09-03 18:28:25 +00001334 new_skb = NULL;
1335 if (length < rx_copybreak)
1336 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001337
Santiago Leon8d86c612010-09-03 18:28:25 +00001338 if (new_skb) {
1339 skb_copy_to_linear_data(new_skb,
1340 skb->data + offset,
1341 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001342 if (rx_flush)
1343 ibmveth_flush_buffer(skb->data,
1344 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001345 if (!ibmveth_rxq_recycle_buffer(adapter))
1346 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001347 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001348 } else {
1349 ibmveth_rxq_harvest_buffer(adapter);
1350 skb_reserve(skb, offset);
1351 }
1352
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001353 skb_put(skb, length);
1354 skb->protocol = eth_type_trans(skb, netdev);
1355
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001356 if (csum_good) {
Santiago Leon8d86c612010-09-03 18:28:25 +00001357 skb->ip_summed = CHECKSUM_UNNECESSARY;
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001358 ibmveth_rx_csum_helper(skb, adapter);
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001359 }
Santiago Leon8d86c612010-09-03 18:28:25 +00001360
Thomas Falcon7b596732016-12-08 16:40:03 -06001361 if (length > netdev->mtu + ETH_HLEN) {
1362 ibmveth_rx_mss_helper(skb, mss, lrg_pkt);
1363 adapter->rx_large_packets++;
1364 }
1365
Thomas Falcon92ec8272015-04-29 16:25:46 -05001366 napi_gro_receive(napi, skb); /* send it up */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001367
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001368 netdev->stats.rx_packets++;
1369 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001370 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Santiago Leone2adbcb2005-10-26 10:47:08 -06001374 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001376 if (frames_processed < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001377 napi_complete_done(napi, frames_processed);
Yongbae Park4736edc2015-03-10 11:15:39 +09001378
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001379 /* We think we are done - reenable interrupts,
1380 * then check once more to make sure we are done.
1381 */
1382 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1383 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Santiago Leon64859112010-09-03 18:29:41 +00001385 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001386
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001387 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001388 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001389 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1390 VIO_IRQ_DISABLE);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001394 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
David Howells7d12e782006-10-05 14:55:46 +01001397static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001398{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001400 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 unsigned long lpar_rc;
1402
Ben Hutchings288379f2009-01-19 16:43:59 -08001403 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001404 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1405 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001406 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001407 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 return IRQ_HANDLED;
1410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412static void ibmveth_set_multicast_list(struct net_device *netdev)
1413{
Wang Chen4cf16532008-11-12 23:38:14 -08001414 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 unsigned long lpar_rc;
1416
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001417 if ((netdev->flags & IFF_PROMISC) ||
1418 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1420 IbmVethMcastEnableRecv |
1421 IbmVethMcastDisableFiltering,
1422 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001423 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001424 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1425 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001428 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /* clear the filter table & disable filtering */
1430 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1431 IbmVethMcastEnableRecv |
1432 IbmVethMcastDisableFiltering |
1433 IbmVethMcastClearFilterTable,
1434 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001435 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001436 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1437 "attempting to clear filter table\n",
1438 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001441 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001442 /* add the multicast address to the filter table */
Anton Blanchardd746ca92014-03-05 14:51:37 +11001443 u64 mcast_addr;
1444 mcast_addr = ibmveth_encode_mac_addr(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1446 IbmVethMcastAddFilter,
1447 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001448 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001449 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1450 "when adding an entry to the filter "
1451 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* re-enable filtering */
1456 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1457 IbmVethMcastEnableFiltering,
1458 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001459 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001460 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1461 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463 }
1464}
1465
1466static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1467{
Wang Chen4cf16532008-11-12 23:38:14 -08001468 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001469 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001470 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001471 int i, rc;
1472 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001473
Santiago Leon517e80e2010-09-03 18:29:25 +00001474 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
David Gibson4fce1482015-04-23 14:43:05 +10001475 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size)
Brian Kingce6eea52007-06-08 14:05:17 -05001476 break;
1477
Santiago Leon517e80e2010-09-03 18:29:25 +00001478 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001479 return -EINVAL;
1480
Santiago Leonea866e62008-07-24 04:34:23 +10001481 /* Deactivate all the buffer pools so that the next loop can activate
1482 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001483 if (netif_running(adapter->netdev)) {
1484 need_restart = 1;
1485 adapter->pool_config = 1;
1486 ibmveth_close(adapter->netdev);
1487 adapter->pool_config = 0;
1488 }
Brian Kingce6eea52007-06-08 14:05:17 -05001489
Santiago Leonea866e62008-07-24 04:34:23 +10001490 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001491 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001492 adapter->rx_buff_pool[i].active = 1;
1493
David Gibson4fce1482015-04-23 14:43:05 +10001494 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001495 dev->mtu = new_mtu;
1496 vio_cmo_set_dev_desired(viodev,
1497 ibmveth_get_desired_dma
1498 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001499 if (need_restart) {
1500 return ibmveth_open(adapter->netdev);
1501 }
Santiago Leon860f2422006-04-25 11:19:59 -05001502 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001503 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001504 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001505
1506 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1507 return rc;
1508
Santiago Leon860f2422006-04-25 11:19:59 -05001509 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
Santiago Leon6b422372006-10-03 12:24:28 -05001512#ifdef CONFIG_NET_POLL_CONTROLLER
1513static void ibmveth_poll_controller(struct net_device *dev)
1514{
Wang Chen4cf16532008-11-12 23:38:14 -08001515 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001516 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001517}
1518#endif
1519
Robert Jennings1096d632008-07-24 04:34:52 +10001520/**
1521 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1522 *
1523 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1524 *
1525 * Return value:
1526 * Number of bytes of IO data the driver will need to perform well.
1527 */
1528static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1529{
1530 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1531 struct ibmveth_adapter *adapter;
Alistair Poppled0847752013-12-09 18:17:03 +11001532 struct iommu_table *tbl;
Robert Jennings1096d632008-07-24 04:34:52 +10001533 unsigned long ret;
1534 int i;
1535 int rxqentries = 1;
1536
Alistair Poppled0847752013-12-09 18:17:03 +11001537 tbl = get_iommu_table_base(&vdev->dev);
1538
Robert Jennings1096d632008-07-24 04:34:52 +10001539 /* netdev inits at probe time along with the structures we need below*/
1540 if (netdev == NULL)
Alistair Poppled0847752013-12-09 18:17:03 +11001541 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001542
1543 adapter = netdev_priv(netdev);
1544
1545 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
Alistair Poppled0847752013-12-09 18:17:03 +11001546 ret += IOMMU_PAGE_ALIGN(netdev->mtu, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001547
Santiago Leon517e80e2010-09-03 18:29:25 +00001548 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001549 /* add the size of the active receive buffers */
1550 if (adapter->rx_buff_pool[i].active)
1551 ret +=
1552 adapter->rx_buff_pool[i].size *
1553 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
Alistair Poppled0847752013-12-09 18:17:03 +11001554 buff_size, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001555 rxqentries += adapter->rx_buff_pool[i].size;
1556 }
1557 /* add the size of the receive queue entries */
Alistair Poppled0847752013-12-09 18:17:03 +11001558 ret += IOMMU_PAGE_ALIGN(
1559 rxqentries * sizeof(struct ibmveth_rx_q_entry), tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001560
1561 return ret;
1562}
1563
Thomas Falconc77c7612015-03-02 11:56:12 -06001564static int ibmveth_set_mac_addr(struct net_device *dev, void *p)
1565{
1566 struct ibmveth_adapter *adapter = netdev_priv(dev);
1567 struct sockaddr *addr = p;
1568 u64 mac_address;
1569 int rc;
1570
1571 if (!is_valid_ether_addr(addr->sa_data))
1572 return -EADDRNOTAVAIL;
1573
1574 mac_address = ibmveth_encode_mac_addr(addr->sa_data);
1575 rc = h_change_logical_lan_mac(adapter->vdev->unit_address, mac_address);
1576 if (rc) {
1577 netdev_err(adapter->netdev, "h_change_logical_lan_mac failed with rc=%d\n", rc);
1578 return rc;
1579 }
1580
1581 ether_addr_copy(dev->dev_addr, addr->sa_data);
1582
1583 return 0;
1584}
1585
Alexander Beregalove186d172009-04-15 12:52:39 +00001586static const struct net_device_ops ibmveth_netdev_ops = {
1587 .ndo_open = ibmveth_open,
1588 .ndo_stop = ibmveth_close,
1589 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001590 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001591 .ndo_do_ioctl = ibmveth_ioctl,
1592 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001593 .ndo_fix_features = ibmveth_fix_features,
1594 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001595 .ndo_validate_addr = eth_validate_addr,
Thomas Falconc77c7612015-03-02 11:56:12 -06001596 .ndo_set_mac_address = ibmveth_set_mac_addr,
Alexander Beregalove186d172009-04-15 12:52:39 +00001597#ifdef CONFIG_NET_POLL_CONTROLLER
1598 .ndo_poll_controller = ibmveth_poll_controller,
1599#endif
1600};
1601
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001602static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001604 int rc, i, mac_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001606 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 unsigned char *mac_addr_p;
1608 unsigned int *mcastFilterSize_p;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001609 long ret;
1610 unsigned long ret_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Santiago Leonc43ced12010-09-03 18:29:14 +00001612 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1613 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Santiago Leonf148f612010-09-03 18:29:30 +00001615 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001616 &mac_len);
Santiago Leonf148f612010-09-03 18:29:30 +00001617 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001618 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001619 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001621 /* Workaround for old/broken pHyp */
1622 if (mac_len == 8)
1623 mac_addr_p += 2;
1624 else if (mac_len != 6) {
1625 dev_err(&dev->dev, "VETH_MAC_ADDR attribute wrong len %d\n",
1626 mac_len);
1627 return -EINVAL;
1628 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001629
Santiago Leonf148f612010-09-03 18:29:30 +00001630 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001631 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001632 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001633 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1634 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001635 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1639
Santiago Leonf148f612010-09-03 18:29:30 +00001640 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return -ENOMEM;
1642
Wang Chen4cf16532008-11-12 23:38:14 -08001643 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001644 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 adapter->vdev = dev;
1647 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001648 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001649 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001650
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001651 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001654 netdev->netdev_ops = &ibmveth_netdev_ops;
1655 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 SET_NETDEV_DEV(netdev, &dev->dev);
Thomas Huth23d28a82017-01-24 07:28:41 +01001657 netdev->hw_features = NETIF_F_SG;
1658 if (vio_get_attribute(dev, "ibm,illan-options", NULL) != NULL) {
1659 netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1660 NETIF_F_RXCSUM;
1661 }
Thomas Falcon07e6a972015-07-14 10:51:51 -05001662
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001663 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Thomas Falcon07e6a972015-07-14 10:51:51 -05001665 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
1666
1667 /* If running older firmware, TSO should not be enabled by default */
1668 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
1669 !old_large_send) {
1670 netdev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
1671 netdev->features |= netdev->hw_features;
1672 } else {
1673 netdev->hw_features |= NETIF_F_TSO;
1674 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001675
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001676 adapter->is_active_trunk = false;
1677 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK)) {
1678 adapter->is_active_trunk = true;
1679 netdev->hw_features |= NETIF_F_FRAGLIST;
1680 netdev->features |= NETIF_F_FRAGLIST;
1681 }
1682
Jarod Wilsond894be52016-10-20 13:55:16 -04001683 netdev->min_mtu = IBMVETH_MIN_MTU;
Stefan Richter110447f82016-10-24 14:42:26 +02001684 netdev->max_mtu = ETH_MAX_MTU;
Jarod Wilsond894be52016-10-20 13:55:16 -04001685
Anton Blanchardd746ca92014-03-05 14:51:37 +11001686 memcpy(netdev->dev_addr, mac_addr_p, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Thomas Falconcd7c7ec2015-04-29 16:25:44 -05001688 if (firmware_has_feature(FW_FEATURE_CMO))
1689 memcpy(pool_count, pool_count_cmo, sizeof(pool_count));
1690
Santiago Leonf148f612010-09-03 18:29:30 +00001691 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001692 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001693 int error;
1694
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001695 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1696 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001697 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001698 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1699 &dev->dev.kobj, "pool%d", i);
1700 if (!error)
1701 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Santiago Leonc43ced12010-09-03 18:29:14 +00001704 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Santiago Leonc43ced12010-09-03 18:29:14 +00001705 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001707 ibmveth_set_features(netdev, netdev->features);
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 rc = register_netdev(netdev);
1710
Santiago Leonf148f612010-09-03 18:29:30 +00001711 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001712 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 free_netdev(netdev);
1714 return rc;
1715 }
1716
Santiago Leonc43ced12010-09-03 18:29:14 +00001717 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return 0;
1720}
1721
Bill Pembertone11787a2012-12-03 09:23:12 -05001722static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001724 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001725 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001726 int i;
1727
Santiago Leonf148f612010-09-03 18:29:30 +00001728 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001729 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
1731 unregister_netdev(netdev);
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001734 dev_set_drvdata(&dev->dev, NULL);
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return 0;
1737}
1738
Santiago Leon860f2422006-04-25 11:19:59 -05001739static struct attribute veth_active_attr;
1740static struct attribute veth_num_attr;
1741static struct attribute veth_size_attr;
1742
Santiago Leonf148f612010-09-03 18:29:30 +00001743static ssize_t veth_pool_show(struct kobject *kobj,
1744 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001745{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001746 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001747 struct ibmveth_buff_pool,
1748 kobj);
1749
1750 if (attr == &veth_active_attr)
1751 return sprintf(buf, "%d\n", pool->active);
1752 else if (attr == &veth_num_attr)
1753 return sprintf(buf, "%d\n", pool->size);
1754 else if (attr == &veth_size_attr)
1755 return sprintf(buf, "%d\n", pool->buff_size);
1756 return 0;
1757}
1758
Santiago Leonf148f612010-09-03 18:29:30 +00001759static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1760 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001761{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001762 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001763 struct ibmveth_buff_pool,
1764 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001765 struct net_device *netdev = dev_get_drvdata(
1766 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001767 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001768 long value = simple_strtol(buf, NULL, 10);
1769 long rc;
1770
1771 if (attr == &veth_active_attr) {
1772 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001773 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001774 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001775 netdev_err(netdev,
1776 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001777 return -ENOMEM;
1778 }
1779 pool->active = 1;
1780 adapter->pool_config = 1;
1781 ibmveth_close(netdev);
1782 adapter->pool_config = 0;
1783 if ((rc = ibmveth_open(netdev)))
1784 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001785 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001786 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001787 }
Santiago Leon860f2422006-04-25 11:19:59 -05001788 } else if (!value && pool->active) {
1789 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1790 int i;
1791 /* Make sure there is a buffer pool with buffers that
1792 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001793 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001794 if (pool == &adapter->rx_buff_pool[i])
1795 continue;
1796 if (!adapter->rx_buff_pool[i].active)
1797 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001798 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1799 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001800 }
Brian King76b9cfc2007-08-03 13:55:19 +10001801
Santiago Leon517e80e2010-09-03 18:29:25 +00001802 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001803 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001804 return -EPERM;
1805 }
Brian King76b9cfc2007-08-03 13:55:19 +10001806
Brian King76b9cfc2007-08-03 13:55:19 +10001807 if (netif_running(netdev)) {
1808 adapter->pool_config = 1;
1809 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001810 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001811 adapter->pool_config = 0;
1812 if ((rc = ibmveth_open(netdev)))
1813 return rc;
1814 }
Santiago Leonea866e62008-07-24 04:34:23 +10001815 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001816 }
1817 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001818 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001819 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001820 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001821 if (netif_running(netdev)) {
1822 adapter->pool_config = 1;
1823 ibmveth_close(netdev);
1824 adapter->pool_config = 0;
1825 pool->size = value;
1826 if ((rc = ibmveth_open(netdev)))
1827 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001828 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001829 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001830 }
Santiago Leon860f2422006-04-25 11:19:59 -05001831 }
1832 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001833 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001834 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001835 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001836 if (netif_running(netdev)) {
1837 adapter->pool_config = 1;
1838 ibmveth_close(netdev);
1839 adapter->pool_config = 0;
1840 pool->buff_size = value;
1841 if ((rc = ibmveth_open(netdev)))
1842 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001843 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001844 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001845 }
Santiago Leon860f2422006-04-25 11:19:59 -05001846 }
1847 }
1848
1849 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001850 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001851 return count;
1852}
1853
1854
Santiago Leonf148f612010-09-03 18:29:30 +00001855#define ATTR(_name, _mode) \
1856 struct attribute veth_##_name##_attr = { \
1857 .name = __stringify(_name), .mode = _mode, \
1858 };
Santiago Leon860f2422006-04-25 11:19:59 -05001859
1860static ATTR(active, 0644);
1861static ATTR(num, 0644);
1862static ATTR(size, 0644);
1863
Santiago Leonf148f612010-09-03 18:29:30 +00001864static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001865 &veth_active_attr,
1866 &veth_num_attr,
1867 &veth_size_attr,
1868 NULL,
1869};
1870
Emese Revfy52cf25d2010-01-19 02:58:23 +01001871static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001872 .show = veth_pool_show,
1873 .store = veth_pool_store,
1874};
1875
1876static struct kobj_type ktype_veth_pool = {
1877 .release = NULL,
1878 .sysfs_ops = &veth_pool_ops,
1879 .default_attrs = veth_pool_attrs,
1880};
1881
Brian Kinge7a3af52010-05-07 08:56:08 +00001882static int ibmveth_resume(struct device *dev)
1883{
1884 struct net_device *netdev = dev_get_drvdata(dev);
1885 ibmveth_interrupt(netdev->irq, netdev);
1886 return 0;
1887}
Santiago Leon860f2422006-04-25 11:19:59 -05001888
Arvind Yadav71450802017-08-17 18:52:53 +05301889static const struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001891 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1894
Arvind Yadaveb60a732017-06-29 11:14:50 +05301895static const struct dev_pm_ops ibmveth_pm_ops = {
Brian Kinge7a3af52010-05-07 08:56:08 +00001896 .resume = ibmveth_resume
1897};
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001900 .id_table = ibmveth_device_table,
1901 .probe = ibmveth_probe,
1902 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001903 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001904 .name = ibmveth_driver_name,
1905 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906};
1907
1908static int __init ibmveth_module_init(void)
1909{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001910 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1911 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return vio_register_driver(&ibmveth_driver);
1914}
1915
1916static void __exit ibmveth_module_exit(void)
1917{
1918 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001919}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921module_init(ibmveth_module_init);
1922module_exit(ibmveth_module_exit);