blob: 525d8b89187b9b92eec16f2c33bc33c7524a3e4e [file] [log] [blame]
Santiago Leonf148f612010-09-03 18:29:30 +00001/*
Santiago Leon9d348af2010-09-03 18:29:53 +00002 * IBM Power Virtual Ethernet Device Driver
Santiago Leonf148f612010-09-03 18:29:30 +00003 *
Santiago Leon9d348af2010-09-03 18:29:53 +00004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
Santiago Leonf148f612010-09-03 18:29:30 +00008 *
Santiago Leon9d348af2010-09-03 18:29:53 +00009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Santiago Leonf148f612010-09-03 18:29:30 +000013 *
Santiago Leon9d348af2010-09-03 18:29:53 +000014 * You should have received a copy of the GNU General Public License
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Santiago Leonf148f612010-09-03 18:29:30 +000016 *
Santiago Leon9d348af2010-09-03 18:29:53 +000017 * Copyright (C) IBM Corporation, 2003, 2010
18 *
19 * Authors: Dave Larson <larson1@us.ibm.com>
20 * Santiago Leon <santil@linux.vnet.ibm.com>
21 * Brian King <brking@linux.vnet.ibm.com>
22 * Robert Jennings <rcj@linux.vnet.ibm.com>
23 * Anton Blanchard <anton@au.ibm.com>
Santiago Leonf148f612010-09-03 18:29:30 +000024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
Robert Jennings1096d632008-07-24 04:34:52 +100027#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/dma-mapping.h>
31#include <linux/kernel.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000036#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000038#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070040#include <linux/in.h>
41#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000042#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/hvcall.h>
Arun Sharma600634972011-07-26 16:09:06 -070045#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100047#include <asm/iommu.h>
Robert Jennings1096d632008-07-24 04:34:52 +100048#include <asm/firmware.h>
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -040049#include <net/tcp.h>
50#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include "ibmveth.h"
53
David Howells7d12e782006-10-05 14:55:46 +010054static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100055static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100056static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000057
Santiago Leon860f2422006-04-25 11:19:59 -050058static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Robert Jennings1096d632008-07-24 04:34:52 +100060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leon9d348af2010-09-03 18:29:53 +000062static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
Thomas Falcon7b596732016-12-08 16:40:03 -060063#define ibmveth_driver_version "1.06"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Santiago Leon9d348af2010-09-03 18:29:53 +000065MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
66MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067MODULE_LICENSE("GPL");
68MODULE_VERSION(ibmveth_driver_version);
69
Santiago Leonc08cc3c2010-09-03 18:28:20 +000070static unsigned int tx_copybreak __read_mostly = 128;
71module_param(tx_copybreak, uint, 0644);
72MODULE_PARM_DESC(tx_copybreak,
73 "Maximum size of packet that is copied to a new buffer on transmit");
74
Santiago Leon8d86c612010-09-03 18:28:25 +000075static unsigned int rx_copybreak __read_mostly = 128;
76module_param(rx_copybreak, uint, 0644);
77MODULE_PARM_DESC(rx_copybreak,
78 "Maximum size of packet that is copied to a new buffer on receive");
79
Santiago Leon0c26b672010-09-03 18:28:41 +000080static unsigned int rx_flush __read_mostly = 0;
81module_param(rx_flush, uint, 0644);
82MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
83
Thomas Falcon07e6a972015-07-14 10:51:51 -050084static bool old_large_send __read_mostly;
Joe Perchesd3757ba2018-03-23 16:34:44 -070085module_param(old_large_send, bool, 0444);
Thomas Falcon07e6a972015-07-14 10:51:51 -050086MODULE_PARM_DESC(old_large_send,
87 "Use old large send method on firmware that supports the new method");
88
Brian Kingddbb4de2007-08-17 09:16:43 -050089struct ibmveth_stat {
90 char name[ETH_GSTRING_LEN];
91 int offset;
92};
93
94#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
95#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
96
97struct ibmveth_stat ibmveth_stats[] = {
98 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
99 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +0000100 { "replenish_add_buff_failure",
101 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
102 { "replenish_add_buff_success",
103 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500104 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
105 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500106 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
107 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000108 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
109 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Thomas Falcon8641dd82015-04-29 16:25:45 -0500110 { "tx_large_packets", IBMVETH_STAT_OFF(tx_large_packets) },
Thomas Falcon07e6a972015-07-14 10:51:51 -0500111 { "rx_large_packets", IBMVETH_STAT_OFF(rx_large_packets) },
112 { "fw_enabled_large_send", IBMVETH_STAT_OFF(fw_large_send_support) }
Brian Kingddbb4de2007-08-17 09:16:43 -0500113};
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500116static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
117{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000118 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off);
Brian King79ef4a42007-08-17 09:16:56 -0500119}
120
121static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
122{
Santiago Leonf148f612010-09-03 18:29:30 +0000123 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
124 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
128{
Santiago Leonf148f612010-09-03 18:29:30 +0000129 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
133{
Santiago Leonf148f612010-09-03 18:29:30 +0000134 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
138{
Santiago Leonf148f612010-09-03 18:29:30 +0000139 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Thomas Falcon7b596732016-12-08 16:40:03 -0600142static inline int ibmveth_rxq_large_packet(struct ibmveth_adapter *adapter)
143{
144 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_LRG_PKT;
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
148{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000149 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Brian Kingf4ff2872007-09-15 13:36:07 -0700152static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
153{
Santiago Leonf148f612010-09-03 18:29:30 +0000154 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000158static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
159 u32 pool_index, u32 pool_size,
160 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 pool->size = pool_size;
163 pool->index = pool_index;
164 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000165 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500166 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169/* allocate and setup an buffer pool - called during open */
170static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
171{
172 int i;
173
Kees Cook6da2ec52018-06-12 13:55:00 -0700174 pool->free_map = kmalloc_array(pool->size, sizeof(u16), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Santiago Leonf148f612010-09-03 18:29:30 +0000176 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Nicholas Mc Guire076ef442015-12-20 15:06:18 +0100179 pool->dma_addr = kcalloc(pool->size, sizeof(dma_addr_t), GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000180 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kfree(pool->free_map);
182 pool->free_map = NULL;
183 return -1;
184 }
185
Julia Lawalla05abcb2010-05-13 10:06:01 +0000186 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Santiago Leonf148f612010-09-03 18:29:30 +0000188 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 kfree(pool->dma_addr);
190 pool->dma_addr = NULL;
191
192 kfree(pool->free_map);
193 pool->free_map = NULL;
194 return -1;
195 }
196
Santiago Leonf148f612010-09-03 18:29:30 +0000197 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 atomic_set(&pool->available, 0);
201 pool->producer_index = 0;
202 pool->consumer_index = 0;
203
204 return 0;
205}
206
Santiago Leon0c26b672010-09-03 18:28:41 +0000207static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
208{
209 unsigned long offset;
210
211 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
212 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* replenish the buffers for a pool. note that we don't need to
216 * skb_reserve these since they are used for incoming...
217 */
Santiago Leonf148f612010-09-03 18:29:30 +0000218static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
219 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 u32 i;
222 u32 count = pool->size - atomic_read(&pool->available);
223 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000224 struct sk_buff *skb;
225 unsigned int free_index, index;
226 u64 correlator;
227 unsigned long lpar_rc;
228 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 mb();
231
Santiago Leonf148f612010-09-03 18:29:30 +0000232 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Santiago Leon003212c2010-09-03 18:29:03 +0000235 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Santiago Leonf148f612010-09-03 18:29:30 +0000237 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000238 netdev_dbg(adapter->netdev,
239 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 adapter->replenish_no_mem++;
241 break;
242 }
243
David Gibson047a66d2006-10-21 10:24:13 -0700244 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000245 pool->consumer_index++;
246 if (pool->consumer_index >= pool->size)
247 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400249
Santiago Leon64859112010-09-03 18:29:41 +0000250 BUG_ON(index == IBM_VETH_INVALID_MAP);
251 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
254 pool->buff_size, DMA_FROM_DEVICE);
255
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000256 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000257 goto failure;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
260 pool->dma_addr[index] = dma_addr;
261 pool->skbuff[index] = skb;
262
263 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000264 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Brian King79ef4a42007-08-17 09:16:56 -0500266 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400267 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Santiago Leon0c26b672010-09-03 18:28:41 +0000269 if (rx_flush) {
270 unsigned int len = min(pool->buff_size,
271 adapter->netdev->mtu +
272 IBMVETH_BUFF_OH);
273 ibmveth_flush_buffer(skb->data, len);
274 }
Santiago Leonf148f612010-09-03 18:29:30 +0000275 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
276 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400277
Santiago Leonf148f612010-09-03 18:29:30 +0000278 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000279 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000280 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 buffers_added++;
282 adapter->replenish_add_buff_success++;
283 }
284 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 mb();
287 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000288 return;
289
290failure:
291 pool->free_map[free_index] = index;
292 pool->skbuff[index] = NULL;
293 if (pool->consumer_index == 0)
294 pool->consumer_index = pool->size - 1;
295 else
296 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000297 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000298 dma_unmap_single(&adapter->vdev->dev,
299 pool->dma_addr[index], pool->buff_size,
300 DMA_FROM_DEVICE);
301 dev_kfree_skb_any(skb);
302 adapter->replenish_add_buff_failure++;
303
304 mb();
305 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Anton Blanchardcbd52282014-08-22 11:36:52 +1000308/*
309 * The final 8 bytes of the buffer list is a counter of frames dropped
310 * because there was not a buffer in the buffer list capable of holding
311 * the frame.
312 */
313static void ibmveth_update_rx_no_buffer(struct ibmveth_adapter *adapter)
314{
315 __be64 *p = adapter->buffer_list_addr + 4096 - 8;
316
317 adapter->rx_no_buffer = be64_to_cpup(p);
318}
319
Santiago Leone2adbcb2005-10-26 10:47:08 -0600320/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400321static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Santiago Leonb6d35182005-10-26 10:47:01 -0600323 int i;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 adapter->replenish_task_cycles++;
326
Santiago Leon517e80e2010-09-03 18:29:25 +0000327 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000328 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
329
330 if (pool->active &&
331 (atomic_read(&pool->available) < pool->threshold))
332 ibmveth_replenish_buffer_pool(adapter, pool);
333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Anton Blanchardcbd52282014-08-22 11:36:52 +1000335 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000339static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
340 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 int i;
343
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400344 kfree(pool->free_map);
345 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Santiago Leonf148f612010-09-03 18:29:30 +0000347 if (pool->skbuff && pool->dma_addr) {
348 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000350 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 dma_unmap_single(&adapter->vdev->dev,
352 pool->dma_addr[i],
353 pool->buff_size,
354 DMA_FROM_DEVICE);
355 dev_kfree_skb_any(skb);
356 pool->skbuff[i] = NULL;
357 }
358 }
359 }
360
Santiago Leonf148f612010-09-03 18:29:30 +0000361 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 kfree(pool->dma_addr);
363 pool->dma_addr = NULL;
364 }
365
Santiago Leonf148f612010-09-03 18:29:30 +0000366 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 kfree(pool->skbuff);
368 pool->skbuff = NULL;
369 }
370}
371
372/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000373static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
374 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 unsigned int pool = correlator >> 32;
377 unsigned int index = correlator & 0xffffffffUL;
378 unsigned int free_index;
379 struct sk_buff *skb;
380
Santiago Leon64859112010-09-03 18:29:41 +0000381 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
382 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 skb = adapter->rx_buff_pool[pool].skbuff[index];
385
Santiago Leon64859112010-09-03 18:29:41 +0000386 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
389
390 dma_unmap_single(&adapter->vdev->dev,
391 adapter->rx_buff_pool[pool].dma_addr[index],
392 adapter->rx_buff_pool[pool].buff_size,
393 DMA_FROM_DEVICE);
394
David Gibson047a66d2006-10-21 10:24:13 -0700395 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000396 adapter->rx_buff_pool[pool].producer_index++;
397 if (adapter->rx_buff_pool[pool].producer_index >=
398 adapter->rx_buff_pool[pool].size)
399 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 adapter->rx_buff_pool[pool].free_map[free_index] = index;
401
402 mb();
403
404 atomic_dec(&(adapter->rx_buff_pool[pool].available));
405}
406
407/* get the current buffer on the rx queue */
408static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
409{
410 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
411 unsigned int pool = correlator >> 32;
412 unsigned int index = correlator & 0xffffffffUL;
413
Santiago Leon64859112010-09-03 18:29:41 +0000414 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
415 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 return adapter->rx_buff_pool[pool].skbuff[index];
418}
419
420/* recycle the current buffer on the rx queue */
David S. Miller8decf862011-09-22 03:23:13 -0400421static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 u32 q_index = adapter->rx_queue.index;
424 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
425 unsigned int pool = correlator >> 32;
426 unsigned int index = correlator & 0xffffffffUL;
427 union ibmveth_buf_desc desc;
428 unsigned long lpar_rc;
David S. Miller8decf862011-09-22 03:23:13 -0400429 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Santiago Leon64859112010-09-03 18:29:41 +0000431 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
432 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Santiago Leonf148f612010-09-03 18:29:30 +0000434 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600435 ibmveth_rxq_harvest_buffer(adapter);
436 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
David S. Miller8decf862011-09-22 03:23:13 -0400437 goto out;
Santiago Leonb6d35182005-10-26 10:47:01 -0600438 }
439
Brian King79ef4a42007-08-17 09:16:56 -0500440 desc.fields.flags_len = IBMVETH_BUF_VALID |
441 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
443
444 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400445
Santiago Leonf148f612010-09-03 18:29:30 +0000446 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000447 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
448 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
David S. Miller8decf862011-09-22 03:23:13 -0400450 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
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 }
David S. Miller8decf862011-09-22 03:23:13 -0400457
458out:
459 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Michael Ellerman493a6842007-04-17 13:12:55 +1000462static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
465
Santiago Leonf148f612010-09-03 18:29:30 +0000466 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 adapter->rx_queue.index = 0;
468 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
469 }
470}
471
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500472static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
473 union ibmveth_buf_desc rxq_desc, u64 mac_address)
474{
475 int rc, try_again = 1;
476
Santiago Leonf148f612010-09-03 18:29:30 +0000477 /*
478 * After a kexec the adapter will still be open, so our attempt to
479 * open it will fail. So if we get a failure we free the adapter and
480 * try again, but only once.
481 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500482retry:
483 rc = h_register_logical_lan(adapter->vdev->unit_address,
484 adapter->buffer_list_dma, rxq_desc.desc,
485 adapter->filter_list_dma, mac_address);
486
487 if (rc != H_SUCCESS && try_again) {
488 do {
489 rc = h_free_logical_lan(adapter->vdev->unit_address);
490 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
491
492 try_again = 0;
493 goto retry;
494 }
495
496 return rc;
497}
498
Anton Blanchardd746ca92014-03-05 14:51:37 +1100499static u64 ibmveth_encode_mac_addr(u8 *mac)
500{
501 int i;
502 u64 encoded = 0;
503
504 for (i = 0; i < ETH_ALEN; i++)
505 encoded = (encoded << 8) | mac[i];
506
507 return encoded;
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static int ibmveth_open(struct net_device *netdev)
511{
Wang Chen4cf16532008-11-12 23:38:14 -0800512 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Anton Blanchardd746ca92014-03-05 14:51:37 +1100513 u64 mac_address;
Santiago Leonb6d35182005-10-26 10:47:01 -0600514 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 unsigned long lpar_rc;
516 int rc;
517 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600518 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700519 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Santiago Leonc43ced12010-09-03 18:29:14 +0000521 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700523 napi_enable(&adapter->napi);
524
Santiago Leon517e80e2010-09-03 18:29:25 +0000525 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600526 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400527
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200528 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200530 if (!adapter->buffer_list_addr) {
531 netdev_err(netdev, "unable to allocate list pages\n");
532 goto out;
533 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400534
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200535 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
536 if (!adapter->filter_list_addr) {
537 netdev_err(netdev, "unable to allocate filter pages\n");
538 goto out_free_buffer_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Santiago Leond90c92f2012-09-04 14:41:37 +0000541 dev = &adapter->vdev->dev;
542
Santiago Leonf148f612010-09-03 18:29:30 +0000543 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
544 rxq_entries;
Santiago Leond90c92f2012-09-04 14:41:37 +0000545 adapter->rx_queue.queue_addr =
Joe Perchesd0320f72013-03-14 13:07:21 +0000546 dma_alloc_coherent(dev, adapter->rx_queue.queue_len,
547 &adapter->rx_queue.queue_dma, GFP_KERNEL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200548 if (!adapter->rx_queue.queue_addr)
549 goto out_free_filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700551 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200553 if (dma_mapping_error(dev, adapter->buffer_list_dma)) {
554 netdev_err(netdev, "unable to map buffer list pages\n");
555 goto out_free_queue_mem;
556 }
557
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700558 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200560 if (dma_mapping_error(dev, adapter->filter_list_dma)) {
561 netdev_err(netdev, "unable to map filter list pages\n");
562 goto out_unmap_buffer_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
565 adapter->rx_queue.index = 0;
566 adapter->rx_queue.num_slots = rxq_entries;
567 adapter->rx_queue.toggle = 1;
568
Anton Blanchardd746ca92014-03-05 14:51:37 +1100569 mac_address = ibmveth_encode_mac_addr(netdev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Santiago Leonf148f612010-09-03 18:29:30 +0000571 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
572 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
574
Santiago Leonc43ced12010-09-03 18:29:14 +0000575 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
576 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
577 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Santiago Leon4347ef12006-10-03 12:24:34 -0500579 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
580
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500581 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Santiago Leonf148f612010-09-03 18:29:30 +0000583 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000584 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
585 lpar_rc);
586 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
587 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 adapter->buffer_list_dma,
589 adapter->filter_list_dma,
590 rxq_desc.desc,
591 mac_address);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000592 rc = -ENONET;
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200593 goto out_unmap_filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
Santiago Leonf148f612010-09-03 18:29:30 +0000596 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
597 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500598 continue;
599 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000600 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500601 adapter->rx_buff_pool[i].active = 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000602 rc = -ENOMEM;
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200603 goto out_free_buffer_pools;
Santiago Leon860f2422006-04-25 11:19:59 -0500604 }
605 }
606
Santiago Leonc43ced12010-09-03 18:29:14 +0000607 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000608 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
609 netdev);
610 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000611 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
612 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 do {
David S. Miller88c51002011-10-07 13:38:43 -0400614 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
615 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200617 goto out_free_buffer_pools;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200620 rc = -ENOMEM;
Robert Jennings1096d632008-07-24 04:34:52 +1000621 adapter->bounce_buffer =
622 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200623 if (!adapter->bounce_buffer)
624 goto out_free_irq;
625
Robert Jennings1096d632008-07-24 04:34:52 +1000626 adapter->bounce_buffer_dma =
627 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
628 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700629 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000630 netdev_err(netdev, "unable to map bounce buffer\n");
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200631 goto out_free_bounce_buffer;
Robert Jennings1096d632008-07-24 04:34:52 +1000632 }
633
Santiago Leonc43ced12010-09-03 18:29:14 +0000634 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100635 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Santiago Leone2adbcb2005-10-26 10:47:08 -0600637 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Santiago Leonc43ced12010-09-03 18:29:14 +0000639 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 return 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000642
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200643out_free_bounce_buffer:
644 kfree(adapter->bounce_buffer);
645out_free_irq:
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000646 free_irq(netdev->irq, netdev);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200647out_free_buffer_pools:
648 while (--i >= 0) {
649 if (adapter->rx_buff_pool[i].active)
650 ibmveth_free_buffer_pool(adapter,
651 &adapter->rx_buff_pool[i]);
652 }
653out_unmap_filter_list:
654 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
655 DMA_BIDIRECTIONAL);
656out_unmap_buffer_list:
657 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
658 DMA_BIDIRECTIONAL);
659out_free_queue_mem:
660 dma_free_coherent(dev, adapter->rx_queue.queue_len,
661 adapter->rx_queue.queue_addr,
662 adapter->rx_queue.queue_dma);
663out_free_filter_list:
664 free_page((unsigned long)adapter->filter_list_addr);
665out_free_buffer_list:
666 free_page((unsigned long)adapter->buffer_list_addr);
667out:
Denis Kirjanov88426f22010-10-20 04:21:13 +0000668 napi_disable(&adapter->napi);
669 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672static int ibmveth_close(struct net_device *netdev)
673{
Wang Chen4cf16532008-11-12 23:38:14 -0800674 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200675 struct device *dev = &adapter->vdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 long lpar_rc;
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200677 int i;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400678
Santiago Leonc43ced12010-09-03 18:29:14 +0000679 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700681 napi_disable(&adapter->napi);
682
Santiago Leon860f2422006-04-25 11:19:59 -0500683 if (!adapter->pool_config)
684 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Robert Jenningsee2e6112010-07-16 04:57:25 +0000686 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 do {
689 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200690 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Santiago Leonf148f612010-09-03 18:29:30 +0000692 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000693 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
694 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Robert Jenningsee2e6112010-07-16 04:57:25 +0000697 free_irq(netdev->irq, netdev);
698
Anton Blanchardcbd52282014-08-22 11:36:52 +1000699 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Christoph Hellwigd43732c2017-05-21 12:45:58 +0200701 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
702 DMA_BIDIRECTIONAL);
703 free_page((unsigned long)adapter->buffer_list_addr);
704
705 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
706 DMA_BIDIRECTIONAL);
707 free_page((unsigned long)adapter->filter_list_addr);
708
709 dma_free_coherent(dev, adapter->rx_queue.queue_len,
710 adapter->rx_queue.queue_addr,
711 adapter->rx_queue.queue_dma);
712
713 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
714 if (adapter->rx_buff_pool[i].active)
715 ibmveth_free_buffer_pool(adapter,
716 &adapter->rx_buff_pool[i]);
717
718 dma_unmap_single(&adapter->vdev->dev, adapter->bounce_buffer_dma,
719 adapter->netdev->mtu + IBMVETH_BUFF_OH,
720 DMA_BIDIRECTIONAL);
721 kfree(adapter->bounce_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Santiago Leonc43ced12010-09-03 18:29:14 +0000723 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 return 0;
726}
727
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100728static int netdev_get_link_ksettings(struct net_device *dev,
729 struct ethtool_link_ksettings *cmd)
Santiago Leonf148f612010-09-03 18:29:30 +0000730{
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100731 u32 supported, advertising;
732
733 supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000734 SUPPORTED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100735 advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000736 ADVERTISED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100737 cmd->base.speed = SPEED_1000;
738 cmd->base.duplex = DUPLEX_FULL;
739 cmd->base.port = PORT_FIBRE;
740 cmd->base.phy_address = 0;
741 cmd->base.autoneg = AUTONEG_ENABLE;
742
743 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
744 supported);
745 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
746 advertising);
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return 0;
749}
750
Santiago Leonf148f612010-09-03 18:29:30 +0000751static void netdev_get_drvinfo(struct net_device *dev,
752 struct ethtool_drvinfo *info)
753{
Jiri Pirko7826d432013-01-06 00:44:26 +0000754 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
755 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000758static netdev_features_t ibmveth_fix_features(struct net_device *dev,
759 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500760{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000761 /*
762 * Since the ibmveth firmware interface does not have the
763 * concept of separate tx/rx checksum offload enable, if rx
764 * checksum is disabled we also have to disable tx checksum
765 * offload. Once we disable rx checksum offload, we are no
766 * longer allowed to send tx buffers that are not properly
767 * checksummed.
768 */
Brian King5fc7e012007-08-17 09:16:31 -0500769
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000770 if (!(features & NETIF_F_RXCSUM))
Tom Herberta1882222015-12-14 11:19:43 -0800771 features &= ~NETIF_F_CSUM_MASK;
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000772
773 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500774}
775
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000776static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500777{
Wang Chen4cf16532008-11-12 23:38:14 -0800778 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800779 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000780 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400781 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500782 int rc1 = 0, rc2 = 0;
783 int restart = 0;
784
785 if (netif_running(dev)) {
786 restart = 1;
787 adapter->pool_config = 1;
788 ibmveth_close(dev);
789 adapter->pool_config = 0;
790 }
791
Brian King79ef4a42007-08-17 09:16:56 -0500792 set_attr = 0;
793 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400794 set_attr6 = 0;
795 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500796
Santiago Leonab78df72010-09-03 18:28:52 +0000797 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500798 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000799 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
800 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500801 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000802 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
803 }
Brian King5fc7e012007-08-17 09:16:31 -0500804
Brian King79ef4a42007-08-17 09:16:56 -0500805 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500806
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -0400807 if (ret == H_SUCCESS &&
Brian King79ef4a42007-08-17 09:16:56 -0500808 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400809 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500810 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500811
David S. Miller8decf862011-09-22 03:23:13 -0400812 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000813 netdev_err(dev, "unable to change IPv4 checksum "
814 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400815 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500816
David S. Miller8decf862011-09-22 03:23:13 -0400817 h_illan_attributes(adapter->vdev->unit_address,
818 set_attr, clr_attr, &ret_attr);
819
820 if (data == 1)
821 dev->features &= ~NETIF_F_IP_CSUM;
822
Santiago Leonf148f612010-09-03 18:29:30 +0000823 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000824 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000825 }
Santiago Leonab78df72010-09-03 18:28:52 +0000826
827 ret6 = h_illan_attributes(adapter->vdev->unit_address,
828 clr_attr6, set_attr6, &ret_attr);
829
830 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000831 netdev_err(dev, "unable to change IPv6 checksum "
832 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400833 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000834
David S. Miller8decf862011-09-22 03:23:13 -0400835 h_illan_attributes(adapter->vdev->unit_address,
836 set_attr6, clr_attr6, &ret_attr);
837
838 if (data == 1)
839 dev->features &= ~NETIF_F_IPV6_CSUM;
840
Santiago Leonab78df72010-09-03 18:28:52 +0000841 } else
842 adapter->fw_ipv6_csum_support = data;
843
David S. Miller8decf862011-09-22 03:23:13 -0400844 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000845 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000846 else
847 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500848 } else {
849 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000850 netdev_err(dev, "unable to change checksum offload settings."
851 " %d rc=%ld ret_attr=%lx\n", data, ret,
852 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500853 }
854
855 if (restart)
856 rc2 = ibmveth_open(dev);
857
858 return rc1 ? rc1 : rc2;
859}
860
Thomas Falcon07e6a972015-07-14 10:51:51 -0500861static int ibmveth_set_tso(struct net_device *dev, u32 data)
862{
863 struct ibmveth_adapter *adapter = netdev_priv(dev);
864 unsigned long set_attr, clr_attr, ret_attr;
865 long ret1, ret2;
866 int rc1 = 0, rc2 = 0;
867 int restart = 0;
868
869 if (netif_running(dev)) {
870 restart = 1;
871 adapter->pool_config = 1;
872 ibmveth_close(dev);
873 adapter->pool_config = 0;
874 }
875
876 set_attr = 0;
877 clr_attr = 0;
878
879 if (data)
880 set_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
881 else
882 clr_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
883
884 ret1 = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
885
886 if (ret1 == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
887 !old_large_send) {
888 ret2 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
889 set_attr, &ret_attr);
890
891 if (ret2 != H_SUCCESS) {
892 netdev_err(dev, "unable to change tso settings. %d rc=%ld\n",
893 data, ret2);
894
895 h_illan_attributes(adapter->vdev->unit_address,
896 set_attr, clr_attr, &ret_attr);
897
898 if (data == 1)
899 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
900 rc1 = -EIO;
901
902 } else {
903 adapter->fw_large_send_support = data;
904 adapter->large_send = data;
905 }
906 } else {
907 /* Older firmware version of large send offload does not
908 * support tcp6/ipv6
909 */
910 if (data == 1) {
911 dev->features &= ~NETIF_F_TSO6;
912 netdev_info(dev, "TSO feature requires all partitions to have updated driver");
913 }
914 adapter->large_send = data;
915 }
916
917 if (restart)
918 rc2 = ibmveth_open(dev);
919
920 return rc1 ? rc1 : rc2;
921}
922
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000923static int ibmveth_set_features(struct net_device *dev,
924 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500925{
Wang Chen4cf16532008-11-12 23:38:14 -0800926 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000927 int rx_csum = !!(features & NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500928 int large_send = !!(features & (NETIF_F_TSO | NETIF_F_TSO6));
929 int rc1 = 0, rc2 = 0;
Thomas Falcon8641dd82015-04-29 16:25:45 -0500930
Thomas Falcon07e6a972015-07-14 10:51:51 -0500931 if (rx_csum != adapter->rx_csum) {
932 rc1 = ibmveth_set_csum_offload(dev, rx_csum);
933 if (rc1 && !adapter->rx_csum)
934 dev->features =
Tom Herberta1882222015-12-14 11:19:43 -0800935 features & ~(NETIF_F_CSUM_MASK |
936 NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500937 }
Brian King5fc7e012007-08-17 09:16:31 -0500938
Thomas Falcon07e6a972015-07-14 10:51:51 -0500939 if (large_send != adapter->large_send) {
940 rc2 = ibmveth_set_tso(dev, large_send);
941 if (rc2 && !adapter->large_send)
942 dev->features =
943 features & ~(NETIF_F_TSO | NETIF_F_TSO6);
944 }
Brian King5fc7e012007-08-17 09:16:31 -0500945
Thomas Falcon07e6a972015-07-14 10:51:51 -0500946 return rc1 ? rc1 : rc2;
Brian King5fc7e012007-08-17 09:16:31 -0500947}
948
Brian Kingddbb4de2007-08-17 09:16:43 -0500949static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
950{
951 int i;
952
953 if (stringset != ETH_SS_STATS)
954 return;
955
956 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
957 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
958}
959
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700960static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500961{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700962 switch (sset) {
963 case ETH_SS_STATS:
964 return ARRAY_SIZE(ibmveth_stats);
965 default:
966 return -EOPNOTSUPP;
967 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500968}
969
970static void ibmveth_get_ethtool_stats(struct net_device *dev,
971 struct ethtool_stats *stats, u64 *data)
972{
973 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800974 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500975
976 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
977 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
978}
979
Jeff Garzik7282d492006-09-13 14:30:00 -0400980static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 .get_drvinfo = netdev_get_drvinfo,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000982 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500983 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700984 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500985 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100986 .get_link_ksettings = netdev_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987};
988
989static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
990{
991 return -EOPNOTSUPP;
992}
993
994#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
995
Santiago Leon6e8ab302010-09-03 18:28:36 +0000996static int ibmveth_send(struct ibmveth_adapter *adapter,
Thomas Falcon07e6a972015-07-14 10:51:51 -0500997 union ibmveth_buf_desc *descs, unsigned long mss)
Santiago Leon6e8ab302010-09-03 18:28:36 +0000998{
999 unsigned long correlator;
1000 unsigned int retry_count;
1001 unsigned long ret;
1002
1003 /*
1004 * The retry count sets a maximum for the number of broadcast and
1005 * multicast destinations within the system.
1006 */
1007 retry_count = 1024;
1008 correlator = 0;
1009 do {
1010 ret = h_send_logical_lan(adapter->vdev->unit_address,
1011 descs[0].desc, descs[1].desc,
1012 descs[2].desc, descs[3].desc,
1013 descs[4].desc, descs[5].desc,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001014 correlator, &correlator, mss,
1015 adapter->fw_large_send_support);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001016 } while ((ret == H_BUSY) && (retry_count--));
1017
1018 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001019 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
1020 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001021 return 1;
1022 }
1023
1024 return 0;
1025}
1026
Stephen Hemminger613573252009-08-31 19:50:58 +00001027static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
1028 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Wang Chen4cf16532008-11-12 23:38:14 -08001030 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001031 unsigned int desc_flags;
1032 union ibmveth_buf_desc descs[6];
1033 int last, i;
1034 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -04001035 dma_addr_t dma_addr;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001036 unsigned long mss = 0;
Santiago Leon60296d92005-10-26 10:47:16 -06001037
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001038 /* veth doesn't handle frag_list, so linearize the skb.
1039 * When GRO is enabled SKB's can have frag_list.
1040 */
1041 if (adapter->is_active_trunk &&
1042 skb_has_frag_list(skb) && __skb_linearize(skb)) {
1043 netdev->stats.tx_dropped++;
1044 goto out;
1045 }
1046
Santiago Leon6e8ab302010-09-03 18:28:36 +00001047 /*
1048 * veth handles a maximum of 6 segments including the header, so
1049 * we have to linearize the skb if there are more than this.
1050 */
1051 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
1052 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -07001053 goto out;
1054 }
1055
Santiago Leon6e8ab302010-09-03 18:28:36 +00001056 /* veth can't checksum offload UDP */
1057 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +00001058 ((skb->protocol == htons(ETH_P_IP) &&
1059 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
1060 (skb->protocol == htons(ETH_P_IPV6) &&
1061 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
1062 skb_checksum_help(skb)) {
1063
Santiago Leon21c2dec2010-09-03 18:29:19 +00001064 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001065 netdev->stats.tx_dropped++;
1066 goto out;
1067 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001068
Santiago Leon6e8ab302010-09-03 18:28:36 +00001069 desc_flags = IBMVETH_BUF_VALID;
1070
1071 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1072 unsigned char *buf = skb_transport_header(skb) +
1073 skb->csum_offset;
1074
1075 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001076
1077 /* Need to zero out the checksum */
1078 buf[0] = 0;
1079 buf[1] = 0;
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001080
1081 if (skb_is_gso(skb) && adapter->fw_large_send_support)
1082 desc_flags |= IBMVETH_BUF_LRG_SND;
Brian Kingf4ff2872007-09-15 13:36:07 -07001083 }
1084
Santiago Leon6e8ab302010-09-03 18:28:36 +00001085retry_bounce:
1086 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001087
Santiago Leon6e8ab302010-09-03 18:28:36 +00001088 /*
1089 * If a linear packet is below the rx threshold then
1090 * copy it into the static bounce buffer. This avoids the
1091 * cost of a TCE insert and remove.
1092 */
1093 if (force_bounce || (!skb_is_nonlinear(skb) &&
1094 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001095 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1096 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Santiago Leon6e8ab302010-09-03 18:28:36 +00001098 descs[0].fields.flags_len = desc_flags | skb->len;
1099 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001100
Thomas Falcon07e6a972015-07-14 10:51:51 -05001101 if (ibmveth_send(adapter, descs, 0)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001102 adapter->tx_send_failed++;
1103 netdev->stats.tx_dropped++;
1104 } else {
1105 netdev->stats.tx_packets++;
1106 netdev->stats.tx_bytes += skb->len;
1107 }
1108
1109 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111
Santiago Leon6e8ab302010-09-03 18:28:36 +00001112 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001113 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1114 skb_headlen(skb), DMA_TO_DEVICE);
1115 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001116 goto map_failed;
1117
1118 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001119 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001120
1121 /* Map the frags */
1122 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001123 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001124
Ian Campbell8838a532011-08-31 00:46:53 +00001125 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001126 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001127
1128 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1129 goto map_failed_frags;
1130
Eric Dumazet9e903e02011-10-18 21:00:24 +00001131 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001132 descs[i+1].fields.address = dma_addr;
1133 }
1134
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001135 if (skb->ip_summed == CHECKSUM_PARTIAL && skb_is_gso(skb)) {
Thomas Falcon07e6a972015-07-14 10:51:51 -05001136 if (adapter->fw_large_send_support) {
1137 mss = (unsigned long)skb_shinfo(skb)->gso_size;
1138 adapter->tx_large_packets++;
1139 } else if (!skb_is_gso_v6(skb)) {
1140 /* Put -1 in the IP checksum to tell phyp it
1141 * is a largesend packet. Put the mss in
1142 * the TCP checksum.
1143 */
1144 ip_hdr(skb)->check = 0xffff;
1145 tcp_hdr(skb)->check =
1146 cpu_to_be16(skb_shinfo(skb)->gso_size);
1147 adapter->tx_large_packets++;
1148 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001149 }
1150
Thomas Falcon07e6a972015-07-14 10:51:51 -05001151 if (ibmveth_send(adapter, descs, mss)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001152 adapter->tx_send_failed++;
1153 netdev->stats.tx_dropped++;
1154 } else {
1155 netdev->stats.tx_packets++;
1156 netdev->stats.tx_bytes += skb->len;
1157 }
1158
David S. Miller8decf862011-09-22 03:23:13 -04001159 dma_unmap_single(&adapter->vdev->dev,
1160 descs[0].fields.address,
1161 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1162 DMA_TO_DEVICE);
1163
1164 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001165 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1166 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1167 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001169out:
Eric W. Biederman26faa9d2014-03-15 17:29:34 -07001170 dev_consume_skb_any(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001171 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001172
1173map_failed_frags:
1174 last = i+1;
1175 for (i = 0; i < last; i++)
1176 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1177 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1178 DMA_TO_DEVICE);
1179
1180map_failed:
1181 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001182 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001183 adapter->tx_map_failed++;
Thomas Falcon2c42bf42016-03-03 15:22:36 -06001184 if (skb_linearize(skb)) {
1185 netdev->stats.tx_dropped++;
1186 goto out;
1187 }
Santiago Leon6e8ab302010-09-03 18:28:36 +00001188 force_bounce = 1;
1189 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
Thomas Falcon7b596732016-12-08 16:40:03 -06001192static void ibmveth_rx_mss_helper(struct sk_buff *skb, u16 mss, int lrg_pkt)
1193{
Thomas Falcon94acf162016-12-13 18:15:09 -06001194 struct tcphdr *tcph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001195 int offset = 0;
Thomas Falcon94acf162016-12-13 18:15:09 -06001196 int hdr_len;
Thomas Falcon7b596732016-12-08 16:40:03 -06001197
1198 /* only TCP packets will be aggregated */
1199 if (skb->protocol == htons(ETH_P_IP)) {
1200 struct iphdr *iph = (struct iphdr *)skb->data;
1201
1202 if (iph->protocol == IPPROTO_TCP) {
1203 offset = iph->ihl * 4;
1204 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1205 } else {
1206 return;
1207 }
1208 } else if (skb->protocol == htons(ETH_P_IPV6)) {
1209 struct ipv6hdr *iph6 = (struct ipv6hdr *)skb->data;
1210
1211 if (iph6->nexthdr == IPPROTO_TCP) {
1212 offset = sizeof(struct ipv6hdr);
1213 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1214 } else {
1215 return;
1216 }
1217 } else {
1218 return;
1219 }
1220 /* if mss is not set through Large Packet bit/mss in rx buffer,
1221 * expect that the mss will be written to the tcp header checksum.
1222 */
Thomas Falcon94acf162016-12-13 18:15:09 -06001223 tcph = (struct tcphdr *)(skb->data + offset);
Thomas Falcon7b596732016-12-08 16:40:03 -06001224 if (lrg_pkt) {
1225 skb_shinfo(skb)->gso_size = mss;
1226 } else if (offset) {
Thomas Falcon7b596732016-12-08 16:40:03 -06001227 skb_shinfo(skb)->gso_size = ntohs(tcph->check);
1228 tcph->check = 0;
1229 }
Thomas Falcon94acf162016-12-13 18:15:09 -06001230
1231 if (skb_shinfo(skb)->gso_size) {
1232 hdr_len = offset + tcph->doff * 4;
1233 skb_shinfo(skb)->gso_segs =
1234 DIV_ROUND_UP(skb->len - hdr_len,
1235 skb_shinfo(skb)->gso_size);
1236 }
Thomas Falcon7b596732016-12-08 16:40:03 -06001237}
1238
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001239static void ibmveth_rx_csum_helper(struct sk_buff *skb,
1240 struct ibmveth_adapter *adapter)
1241{
1242 struct iphdr *iph = NULL;
1243 struct ipv6hdr *iph6 = NULL;
1244 __be16 skb_proto = 0;
1245 u16 iphlen = 0;
1246 u16 iph_proto = 0;
1247 u16 tcphdrlen = 0;
1248
1249 skb_proto = be16_to_cpu(skb->protocol);
1250
1251 if (skb_proto == ETH_P_IP) {
1252 iph = (struct iphdr *)skb->data;
1253
1254 /* If the IP checksum is not offloaded and if the packet
1255 * is large send, the checksum must be rebuilt.
1256 */
1257 if (iph->check == 0xffff) {
1258 iph->check = 0;
1259 iph->check = ip_fast_csum((unsigned char *)iph,
1260 iph->ihl);
1261 }
1262
1263 iphlen = iph->ihl * 4;
1264 iph_proto = iph->protocol;
1265 } else if (skb_proto == ETH_P_IPV6) {
1266 iph6 = (struct ipv6hdr *)skb->data;
1267 iphlen = sizeof(struct ipv6hdr);
1268 iph_proto = iph6->nexthdr;
1269 }
1270
1271 /* In OVS environment, when a flow is not cached, specifically for a
1272 * new TCP connection, the first packet information is passed up
1273 * the user space for finding a flow. During this process, OVS computes
1274 * checksum on the first packet when CHECKSUM_PARTIAL flag is set.
1275 *
1276 * Given that we zeroed out TCP checksum field in transmit path
1277 * (refer ibmveth_start_xmit routine) as we set "no checksum bit",
1278 * OVS computed checksum will be incorrect w/o TCP pseudo checksum
1279 * in the packet. This leads to OVS dropping the packet and hence
1280 * TCP retransmissions are seen.
1281 *
1282 * So, re-compute TCP pseudo header checksum.
1283 */
1284 if (iph_proto == IPPROTO_TCP && adapter->is_active_trunk) {
1285 struct tcphdr *tcph = (struct tcphdr *)(skb->data + iphlen);
1286
1287 tcphdrlen = skb->len - iphlen;
1288
1289 /* Recompute TCP pseudo header checksum */
1290 if (skb_proto == ETH_P_IP)
1291 tcph->check = ~csum_tcpudp_magic(iph->saddr,
1292 iph->daddr, tcphdrlen, iph_proto, 0);
1293 else if (skb_proto == ETH_P_IPV6)
1294 tcph->check = ~csum_ipv6_magic(&iph6->saddr,
1295 &iph6->daddr, tcphdrlen, iph_proto, 0);
1296
1297 /* Setup SKB fields for checksum offload */
1298 skb_partial_csum_set(skb, iphlen,
1299 offsetof(struct tcphdr, check));
1300 skb_reset_network_header(skb);
1301 }
1302}
1303
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001304static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Santiago Leonf148f612010-09-03 18:29:30 +00001306 struct ibmveth_adapter *adapter =
1307 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001308 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 unsigned long lpar_rc;
Thomas Falcon7b596732016-12-08 16:40:03 -06001311 u16 mss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Santiago Leonf148f612010-09-03 18:29:30 +00001313restart_poll:
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001314 while (frames_processed < budget) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001315 if (!ibmveth_rxq_pending_buffer(adapter))
1316 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001318 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001319 if (!ibmveth_rxq_buffer_valid(adapter)) {
1320 wmb(); /* suggested by larson1 */
1321 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001322 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001323 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001325 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001326 int length = ibmveth_rxq_frame_length(adapter);
1327 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001328 int csum_good = ibmveth_rxq_csum_good(adapter);
Thomas Falcon7b596732016-12-08 16:40:03 -06001329 int lrg_pkt = ibmveth_rxq_large_packet(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001330
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001331 skb = ibmveth_rxq_get_buffer(adapter);
1332
Thomas Falcon7b596732016-12-08 16:40:03 -06001333 /* if the large packet bit is set in the rx queue
1334 * descriptor, the mss will be written by PHYP eight
1335 * bytes from the start of the rx buffer, which is
1336 * skb->data at this stage
1337 */
1338 if (lrg_pkt) {
1339 __be64 *rxmss = (__be64 *)(skb->data + 8);
1340
1341 mss = (u16)be64_to_cpu(*rxmss);
1342 }
1343
Santiago Leon8d86c612010-09-03 18:28:25 +00001344 new_skb = NULL;
1345 if (length < rx_copybreak)
1346 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001347
Santiago Leon8d86c612010-09-03 18:28:25 +00001348 if (new_skb) {
1349 skb_copy_to_linear_data(new_skb,
1350 skb->data + offset,
1351 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001352 if (rx_flush)
1353 ibmveth_flush_buffer(skb->data,
1354 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001355 if (!ibmveth_rxq_recycle_buffer(adapter))
1356 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001357 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001358 } else {
1359 ibmveth_rxq_harvest_buffer(adapter);
1360 skb_reserve(skb, offset);
1361 }
1362
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001363 skb_put(skb, length);
1364 skb->protocol = eth_type_trans(skb, netdev);
1365
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001366 if (csum_good) {
Santiago Leon8d86c612010-09-03 18:28:25 +00001367 skb->ip_summed = CHECKSUM_UNNECESSARY;
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001368 ibmveth_rx_csum_helper(skb, adapter);
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001369 }
Santiago Leon8d86c612010-09-03 18:28:25 +00001370
Thomas Falcon7b596732016-12-08 16:40:03 -06001371 if (length > netdev->mtu + ETH_HLEN) {
1372 ibmveth_rx_mss_helper(skb, mss, lrg_pkt);
1373 adapter->rx_large_packets++;
1374 }
1375
Thomas Falcon92ec8272015-04-29 16:25:46 -05001376 napi_gro_receive(napi, skb); /* send it up */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001377
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001378 netdev->stats.rx_packets++;
1379 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001380 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Santiago Leone2adbcb2005-10-26 10:47:08 -06001384 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001386 if (frames_processed < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001387 napi_complete_done(napi, frames_processed);
Yongbae Park4736edc2015-03-10 11:15:39 +09001388
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001389 /* We think we are done - reenable interrupts,
1390 * then check once more to make sure we are done.
1391 */
1392 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1393 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Santiago Leon64859112010-09-03 18:29:41 +00001395 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001396
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001397 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001398 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001399 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1400 VIO_IRQ_DISABLE);
1401 goto restart_poll;
1402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001405 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
David Howells7d12e782006-10-05 14:55:46 +01001408static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001409{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001411 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 unsigned long lpar_rc;
1413
Ben Hutchings288379f2009-01-19 16:43:59 -08001414 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001415 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1416 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001417 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001418 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420 return IRQ_HANDLED;
1421}
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423static void ibmveth_set_multicast_list(struct net_device *netdev)
1424{
Wang Chen4cf16532008-11-12 23:38:14 -08001425 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 unsigned long lpar_rc;
1427
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001428 if ((netdev->flags & IFF_PROMISC) ||
1429 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1431 IbmVethMcastEnableRecv |
1432 IbmVethMcastDisableFiltering,
1433 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001434 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001435 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1436 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001439 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /* clear the filter table & disable filtering */
1441 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1442 IbmVethMcastEnableRecv |
1443 IbmVethMcastDisableFiltering |
1444 IbmVethMcastClearFilterTable,
1445 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001446 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001447 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1448 "attempting to clear filter table\n",
1449 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001452 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001453 /* add the multicast address to the filter table */
Anton Blanchardd746ca92014-03-05 14:51:37 +11001454 u64 mcast_addr;
1455 mcast_addr = ibmveth_encode_mac_addr(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1457 IbmVethMcastAddFilter,
1458 mcast_addr);
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 "
1461 "when adding an entry to the filter "
1462 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /* re-enable filtering */
1467 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1468 IbmVethMcastEnableFiltering,
1469 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001470 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001471 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1472 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474 }
1475}
1476
1477static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1478{
Wang Chen4cf16532008-11-12 23:38:14 -08001479 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001480 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001481 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001482 int i, rc;
1483 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001484
Santiago Leon517e80e2010-09-03 18:29:25 +00001485 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
David Gibson4fce1482015-04-23 14:43:05 +10001486 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size)
Brian Kingce6eea52007-06-08 14:05:17 -05001487 break;
1488
Santiago Leon517e80e2010-09-03 18:29:25 +00001489 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001490 return -EINVAL;
1491
Santiago Leonea866e62008-07-24 04:34:23 +10001492 /* Deactivate all the buffer pools so that the next loop can activate
1493 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001494 if (netif_running(adapter->netdev)) {
1495 need_restart = 1;
1496 adapter->pool_config = 1;
1497 ibmveth_close(adapter->netdev);
1498 adapter->pool_config = 0;
1499 }
Brian Kingce6eea52007-06-08 14:05:17 -05001500
Santiago Leonea866e62008-07-24 04:34:23 +10001501 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001502 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001503 adapter->rx_buff_pool[i].active = 1;
1504
David Gibson4fce1482015-04-23 14:43:05 +10001505 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001506 dev->mtu = new_mtu;
1507 vio_cmo_set_dev_desired(viodev,
1508 ibmveth_get_desired_dma
1509 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001510 if (need_restart) {
1511 return ibmveth_open(adapter->netdev);
1512 }
Santiago Leon860f2422006-04-25 11:19:59 -05001513 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001514 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001515 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001516
1517 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1518 return rc;
1519
Santiago Leon860f2422006-04-25 11:19:59 -05001520 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
Santiago Leon6b422372006-10-03 12:24:28 -05001523#ifdef CONFIG_NET_POLL_CONTROLLER
1524static void ibmveth_poll_controller(struct net_device *dev)
1525{
Wang Chen4cf16532008-11-12 23:38:14 -08001526 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001527 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001528}
1529#endif
1530
Robert Jennings1096d632008-07-24 04:34:52 +10001531/**
1532 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1533 *
1534 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1535 *
1536 * Return value:
1537 * Number of bytes of IO data the driver will need to perform well.
1538 */
1539static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1540{
1541 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1542 struct ibmveth_adapter *adapter;
Alistair Poppled0847752013-12-09 18:17:03 +11001543 struct iommu_table *tbl;
Robert Jennings1096d632008-07-24 04:34:52 +10001544 unsigned long ret;
1545 int i;
1546 int rxqentries = 1;
1547
Alistair Poppled0847752013-12-09 18:17:03 +11001548 tbl = get_iommu_table_base(&vdev->dev);
1549
Robert Jennings1096d632008-07-24 04:34:52 +10001550 /* netdev inits at probe time along with the structures we need below*/
1551 if (netdev == NULL)
Alistair Poppled0847752013-12-09 18:17:03 +11001552 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001553
1554 adapter = netdev_priv(netdev);
1555
1556 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
Alistair Poppled0847752013-12-09 18:17:03 +11001557 ret += IOMMU_PAGE_ALIGN(netdev->mtu, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001558
Santiago Leon517e80e2010-09-03 18:29:25 +00001559 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001560 /* add the size of the active receive buffers */
1561 if (adapter->rx_buff_pool[i].active)
1562 ret +=
1563 adapter->rx_buff_pool[i].size *
1564 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
Alistair Poppled0847752013-12-09 18:17:03 +11001565 buff_size, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001566 rxqentries += adapter->rx_buff_pool[i].size;
1567 }
1568 /* add the size of the receive queue entries */
Alistair Poppled0847752013-12-09 18:17:03 +11001569 ret += IOMMU_PAGE_ALIGN(
1570 rxqentries * sizeof(struct ibmveth_rx_q_entry), tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001571
1572 return ret;
1573}
1574
Thomas Falconc77c7612015-03-02 11:56:12 -06001575static int ibmveth_set_mac_addr(struct net_device *dev, void *p)
1576{
1577 struct ibmveth_adapter *adapter = netdev_priv(dev);
1578 struct sockaddr *addr = p;
1579 u64 mac_address;
1580 int rc;
1581
1582 if (!is_valid_ether_addr(addr->sa_data))
1583 return -EADDRNOTAVAIL;
1584
1585 mac_address = ibmveth_encode_mac_addr(addr->sa_data);
1586 rc = h_change_logical_lan_mac(adapter->vdev->unit_address, mac_address);
1587 if (rc) {
1588 netdev_err(adapter->netdev, "h_change_logical_lan_mac failed with rc=%d\n", rc);
1589 return rc;
1590 }
1591
1592 ether_addr_copy(dev->dev_addr, addr->sa_data);
1593
1594 return 0;
1595}
1596
Alexander Beregalove186d172009-04-15 12:52:39 +00001597static const struct net_device_ops ibmveth_netdev_ops = {
1598 .ndo_open = ibmveth_open,
1599 .ndo_stop = ibmveth_close,
1600 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001601 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001602 .ndo_do_ioctl = ibmveth_ioctl,
1603 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001604 .ndo_fix_features = ibmveth_fix_features,
1605 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001606 .ndo_validate_addr = eth_validate_addr,
Thomas Falconc77c7612015-03-02 11:56:12 -06001607 .ndo_set_mac_address = ibmveth_set_mac_addr,
Alexander Beregalove186d172009-04-15 12:52:39 +00001608#ifdef CONFIG_NET_POLL_CONTROLLER
1609 .ndo_poll_controller = ibmveth_poll_controller,
1610#endif
1611};
1612
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001613static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001615 int rc, i, mac_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001617 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 unsigned char *mac_addr_p;
1619 unsigned int *mcastFilterSize_p;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001620 long ret;
1621 unsigned long ret_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Santiago Leonc43ced12010-09-03 18:29:14 +00001623 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1624 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Santiago Leonf148f612010-09-03 18:29:30 +00001626 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001627 &mac_len);
Santiago Leonf148f612010-09-03 18:29:30 +00001628 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001629 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001630 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001632 /* Workaround for old/broken pHyp */
1633 if (mac_len == 8)
1634 mac_addr_p += 2;
1635 else if (mac_len != 6) {
1636 dev_err(&dev->dev, "VETH_MAC_ADDR attribute wrong len %d\n",
1637 mac_len);
1638 return -EINVAL;
1639 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001640
Santiago Leonf148f612010-09-03 18:29:30 +00001641 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001642 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001643 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001644 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1645 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001646 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1650
Santiago Leonf148f612010-09-03 18:29:30 +00001651 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return -ENOMEM;
1653
Wang Chen4cf16532008-11-12 23:38:14 -08001654 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001655 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 adapter->vdev = dev;
1658 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001659 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001660 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001661
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001662 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001665 netdev->netdev_ops = &ibmveth_netdev_ops;
1666 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 SET_NETDEV_DEV(netdev, &dev->dev);
Thomas Huth23d28a82017-01-24 07:28:41 +01001668 netdev->hw_features = NETIF_F_SG;
1669 if (vio_get_attribute(dev, "ibm,illan-options", NULL) != NULL) {
1670 netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1671 NETIF_F_RXCSUM;
1672 }
Thomas Falcon07e6a972015-07-14 10:51:51 -05001673
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001674 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Thomas Falcon07e6a972015-07-14 10:51:51 -05001676 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
1677
1678 /* If running older firmware, TSO should not be enabled by default */
1679 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
1680 !old_large_send) {
1681 netdev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
1682 netdev->features |= netdev->hw_features;
1683 } else {
1684 netdev->hw_features |= NETIF_F_TSO;
1685 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001686
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001687 adapter->is_active_trunk = false;
1688 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK)) {
1689 adapter->is_active_trunk = true;
1690 netdev->hw_features |= NETIF_F_FRAGLIST;
1691 netdev->features |= NETIF_F_FRAGLIST;
1692 }
1693
Jarod Wilsond894be52016-10-20 13:55:16 -04001694 netdev->min_mtu = IBMVETH_MIN_MTU;
Stefan Richter110447f82016-10-24 14:42:26 +02001695 netdev->max_mtu = ETH_MAX_MTU;
Jarod Wilsond894be52016-10-20 13:55:16 -04001696
Anton Blanchardd746ca92014-03-05 14:51:37 +11001697 memcpy(netdev->dev_addr, mac_addr_p, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Thomas Falconcd7c7ec2015-04-29 16:25:44 -05001699 if (firmware_has_feature(FW_FEATURE_CMO))
1700 memcpy(pool_count, pool_count_cmo, sizeof(pool_count));
1701
Santiago Leonf148f612010-09-03 18:29:30 +00001702 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001703 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001704 int error;
1705
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001706 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1707 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001708 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001709 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1710 &dev->dev.kobj, "pool%d", i);
1711 if (!error)
1712 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Santiago Leonc43ced12010-09-03 18:29:14 +00001715 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Santiago Leonc43ced12010-09-03 18:29:14 +00001716 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001718 ibmveth_set_features(netdev, netdev->features);
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 rc = register_netdev(netdev);
1721
Santiago Leonf148f612010-09-03 18:29:30 +00001722 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001723 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 free_netdev(netdev);
1725 return rc;
1726 }
1727
Santiago Leonc43ced12010-09-03 18:29:14 +00001728 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 return 0;
1731}
1732
Bill Pembertone11787a2012-12-03 09:23:12 -05001733static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001735 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001736 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001737 int i;
1738
Santiago Leonf148f612010-09-03 18:29:30 +00001739 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001740 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 unregister_netdev(netdev);
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001745 dev_set_drvdata(&dev->dev, NULL);
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return 0;
1748}
1749
Santiago Leon860f2422006-04-25 11:19:59 -05001750static struct attribute veth_active_attr;
1751static struct attribute veth_num_attr;
1752static struct attribute veth_size_attr;
1753
Santiago Leonf148f612010-09-03 18:29:30 +00001754static ssize_t veth_pool_show(struct kobject *kobj,
1755 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001756{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001757 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001758 struct ibmveth_buff_pool,
1759 kobj);
1760
1761 if (attr == &veth_active_attr)
1762 return sprintf(buf, "%d\n", pool->active);
1763 else if (attr == &veth_num_attr)
1764 return sprintf(buf, "%d\n", pool->size);
1765 else if (attr == &veth_size_attr)
1766 return sprintf(buf, "%d\n", pool->buff_size);
1767 return 0;
1768}
1769
Santiago Leonf148f612010-09-03 18:29:30 +00001770static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1771 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001772{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001773 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001774 struct ibmveth_buff_pool,
1775 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001776 struct net_device *netdev = dev_get_drvdata(
1777 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001778 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001779 long value = simple_strtol(buf, NULL, 10);
1780 long rc;
1781
1782 if (attr == &veth_active_attr) {
1783 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001784 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001785 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001786 netdev_err(netdev,
1787 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001788 return -ENOMEM;
1789 }
1790 pool->active = 1;
1791 adapter->pool_config = 1;
1792 ibmveth_close(netdev);
1793 adapter->pool_config = 0;
1794 if ((rc = ibmveth_open(netdev)))
1795 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001796 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001797 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001798 }
Santiago Leon860f2422006-04-25 11:19:59 -05001799 } else if (!value && pool->active) {
1800 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1801 int i;
1802 /* Make sure there is a buffer pool with buffers that
1803 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001804 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001805 if (pool == &adapter->rx_buff_pool[i])
1806 continue;
1807 if (!adapter->rx_buff_pool[i].active)
1808 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001809 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1810 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001811 }
Brian King76b9cfc2007-08-03 13:55:19 +10001812
Santiago Leon517e80e2010-09-03 18:29:25 +00001813 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001814 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001815 return -EPERM;
1816 }
Brian King76b9cfc2007-08-03 13:55:19 +10001817
Brian King76b9cfc2007-08-03 13:55:19 +10001818 if (netif_running(netdev)) {
1819 adapter->pool_config = 1;
1820 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001821 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001822 adapter->pool_config = 0;
1823 if ((rc = ibmveth_open(netdev)))
1824 return rc;
1825 }
Santiago Leonea866e62008-07-24 04:34:23 +10001826 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001827 }
1828 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001829 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001830 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001831 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001832 if (netif_running(netdev)) {
1833 adapter->pool_config = 1;
1834 ibmveth_close(netdev);
1835 adapter->pool_config = 0;
1836 pool->size = value;
1837 if ((rc = ibmveth_open(netdev)))
1838 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001839 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001840 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001841 }
Santiago Leon860f2422006-04-25 11:19:59 -05001842 }
1843 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001844 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001845 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001846 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001847 if (netif_running(netdev)) {
1848 adapter->pool_config = 1;
1849 ibmveth_close(netdev);
1850 adapter->pool_config = 0;
1851 pool->buff_size = value;
1852 if ((rc = ibmveth_open(netdev)))
1853 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001854 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001855 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001856 }
Santiago Leon860f2422006-04-25 11:19:59 -05001857 }
1858 }
1859
1860 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001861 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001862 return count;
1863}
1864
1865
Santiago Leonf148f612010-09-03 18:29:30 +00001866#define ATTR(_name, _mode) \
1867 struct attribute veth_##_name##_attr = { \
1868 .name = __stringify(_name), .mode = _mode, \
1869 };
Santiago Leon860f2422006-04-25 11:19:59 -05001870
1871static ATTR(active, 0644);
1872static ATTR(num, 0644);
1873static ATTR(size, 0644);
1874
Santiago Leonf148f612010-09-03 18:29:30 +00001875static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001876 &veth_active_attr,
1877 &veth_num_attr,
1878 &veth_size_attr,
1879 NULL,
1880};
1881
Emese Revfy52cf25d2010-01-19 02:58:23 +01001882static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001883 .show = veth_pool_show,
1884 .store = veth_pool_store,
1885};
1886
1887static struct kobj_type ktype_veth_pool = {
1888 .release = NULL,
1889 .sysfs_ops = &veth_pool_ops,
1890 .default_attrs = veth_pool_attrs,
1891};
1892
Brian Kinge7a3af52010-05-07 08:56:08 +00001893static int ibmveth_resume(struct device *dev)
1894{
1895 struct net_device *netdev = dev_get_drvdata(dev);
1896 ibmveth_interrupt(netdev->irq, netdev);
1897 return 0;
1898}
Santiago Leon860f2422006-04-25 11:19:59 -05001899
Arvind Yadav71450802017-08-17 18:52:53 +05301900static const struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001902 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1905
Arvind Yadaveb60a732017-06-29 11:14:50 +05301906static const struct dev_pm_ops ibmveth_pm_ops = {
Brian Kinge7a3af52010-05-07 08:56:08 +00001907 .resume = ibmveth_resume
1908};
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001911 .id_table = ibmveth_device_table,
1912 .probe = ibmveth_probe,
1913 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001914 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001915 .name = ibmveth_driver_name,
1916 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917};
1918
1919static int __init ibmveth_module_init(void)
1920{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001921 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1922 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return vio_register_driver(&ibmveth_driver);
1925}
1926
1927static void __exit ibmveth_module_exit(void)
1928{
1929 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001930}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932module_init(ibmveth_module_init);
1933module_exit(ibmveth_module_exit);